From 5bc97487df1ead05d69849bdfbf4756171cb416b Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 5 Jan 2024 17:36:29 -0700 Subject: [PATCH 01/35] Squashed 'hpxml-measures/' changes from b0f18ace10..fbf067fdcb fbf067fdcb Fix assert_in_epsilon tests. c3c95819d2 Simplify code. 9dabadd9b4 Update Changelog.md [ci skip] 1115e941ee Fix typo in docs. b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. c102844ee2 Oops. d6d594c8e8 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022 513acded4f Latest results. ce3851566e Merge branch 'master' into ansi_301_2022 bdbf9cd0de Latest results. 67848fe81e Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022 a9d0011a12 Latest results. cb3775f586 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022 25cade3703 Latest results. 6a137735c6 Remove natural ventilation RH constraint to comply with ANSI 301-2022; HR constraint is still in place. fe3dc91a5c Update default CFIS fan power. Fix ANSI 301 links in docs. 85b40864fe Update Qinf=f(NL) equation. bddcef9920 Prep for ANSI 301-2022. git-subtree-dir: hpxml-measures git-subtree-split: fbf067fdcbca53ee5f5d118ed227dda0883228a7 --- Changelog.md | 3 + HPXMLtoOpenStudio/measure.xml | 14 +- HPXMLtoOpenStudio/resources/airflow.rb | 90 ++- HPXMLtoOpenStudio/resources/constants.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 13 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 +- HPXMLtoOpenStudio/tests/test_hvac.rb | 6 +- docs/source/workflow_inputs.rst | 68 ++- .../results_workflow_simulations1.csv | 562 +++++++++--------- .../results_workflow_simulations1_bills.csv | 556 ++++++++--------- .../results_workflow_simulations2.csv | 274 ++++----- .../results_workflow_simulations2_bills.csv | 266 ++++----- 12 files changed, 961 insertions(+), 913 deletions(-) diff --git a/Changelog.md b/Changelog.md index 06e00122e..6dedcae74 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,6 +12,9 @@ __New Features__ - **Breaking change**: Replaces `roof_radiant_barrier`/`roof_radiant_barrier_grade` arguments with `radiant_barrier_attic_location`/`radiant_barrier_grade`. - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - The "Geometry: Building Number of Units" input is now written to the HPXML `NumberofUnitsInBuilding` element. +- Updates per ANSI/RESNET/ICC 301-2022: + - Small change to default flow rate for imbalanced mechanical ventilation systems. + - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). __Bugfixes__ diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 5e60c54d2..57e5c9dad 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 63e6bf7b-325c-4241-baab-97825cbd9bcd - 2024-01-05T21:39:53Z + cae1b905-8be7-4d40-b876-bafce627be14 + 2024-01-06T00:34:12Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 58EDCD0B + A5E9FF8C battery.rb @@ -160,7 +160,7 @@ constants.rb rb resource - 0A8AFBD2 + 1223FDEB constructions.rb @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 916525C3 + 348C4650 hpxml_schema/HPXML.xsd @@ -592,7 +592,7 @@ test_defaults.rb rb test - EF0F0416 + ABC2B890 test_enclosure.rb @@ -616,7 +616,7 @@ test_hvac.rb rb test - 5567231B + B582B9C9 test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 7b350ba8b..a962377f1 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -139,9 +139,8 @@ def self.get_default_unvented_space_ach() return 0.1 # Assumption end - def self.get_default_mech_vent_fan_power(vent_fan) - # 301-2019: Table 4.2.2(1b) - # Returns fan power in W/cfm + def self.get_default_mech_vent_fan_power(vent_fan, eri_version) + # Returns fan power in W/cfm, based on ANSI 301 if vent_fan.is_shared_system return 1.00 # Table 4.2.2(1) Note (n) elsif [HPXML::MechVentTypeSupply, HPXML::MechVentTypeExhaust].include? vent_fan.fan_type @@ -151,7 +150,11 @@ def self.get_default_mech_vent_fan_power(vent_fan) elsif [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_fan.fan_type return 1.00 elsif [HPXML::MechVentTypeCFIS].include? vent_fan.fan_type - return 0.50 + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + return 0.58 + else + return 0.50 + end else fail "Unexpected fan_type: '#{fan_type}'." end @@ -214,28 +217,20 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) return sla, ach50, nach, volume, height, a_ext end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) - # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) + # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + bldg_type = hpxml_bldg.building_construction.residential_facility_type nl = get_infiltration_NL_from_SLA(sla, height) - q_inf = nl * weather.data.WSF * cfa / 7.3 # Effective annual average infiltration rate, cfm, eq. 4.5a - + q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) - if vent_fan.is_balanced? - phi = 1.0 + is_balanced, frac_imbal = true, 0.0 else - phi = q_inf / q_tot - end - q_fan = q_tot - phi * (q_inf * a_ext) - q_fan = [q_fan, 0].max - - if not vent_fan.hours_in_operation.nil? - # Convert from hourly average requirement to actual fan flow rate - q_fan *= 24.0 / vent_fan.hours_in_operation + is_balanced, frac_imbal = false, 1.0 end - + q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, vent_fan.hours_in_operation) return q_fan end @@ -406,8 +401,7 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh neutral_level = 0.5 hor_lk_frac = 0.0 c_w, c_s = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, @conditioned_space, infil_height) - max_oa_hr = 0.0115 # From BA HSP - max_oa_rh = 0.7 # From BA HSP + max_oa_hr = 0.0115 # From ANSI 301-2022 # Program vent_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) @@ -419,7 +413,6 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh vent_program.addLine("Set Pbar = #{@pbar_sensor.name}") vent_program.addLine('Set Phiout = (@RhFnTdbWPb Tout Wout Pbar)') vent_program.addLine("Set MaxHR = #{max_oa_hr}") - vent_program.addLine("Set MaxRH = #{max_oa_rh}") if not thermostat.nil? # Home has HVAC system (though setpoints may be defaulted); use the average of heating/cooling setpoints to minimize incurring additional heating energy. vent_program.addLine("Set Tnvsp = (#{htg_sp_sensor.name} + #{clg_sp_sensor.name}) / 2") @@ -435,7 +428,7 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh vent_program.addLine("Set #{whf_flow_actuator.name} = 0") # Init vent_program.addLine("Set #{cond_to_zone_flow_rate_actuator.name} = 0") unless whf_zone.nil? # Init vent_program.addLine("Set #{whf_elec_actuator.name} = 0") # Init - infil_constraints = 'If ((Wout < MaxHR) && (Phiout < MaxRH) && (Tin > Tout) && (Tin > Tnvsp) && (ClgSsnAvail > 0))' + infil_constraints = 'If ((Wout < MaxHR) && (Tin > Tout) && (Tin > Tnvsp) && (ClgSsnAvail > 0))' if not @hvac_availability_sensor.nil? # We are using the availability schedule, but we also constrain the window opening based on temperatures and humidity. # We're assuming that if the HVAC is not available, you'd ignore the humidity constraints we normally put on window opening per the old HSP guidance (RH < 70% and w < 0.015). @@ -1622,7 +1615,10 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') + infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') + infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2005,12 +2001,17 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, weather) def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) + end + + def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) + # Returns the effective annual average infiltration rate in cfm + return nl * weather.data.WSF * cfa * 8.202 / 60.0 end def self.calc_duct_leakage_at_diff_pressure(q_old, p_old, p_new) @@ -2085,6 +2086,43 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end + + def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) + q_inf_eff = q_inf * a_ext + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + if frac_imbal == 0 + q_fan = q_tot - q_inf_eff + else + q_inf_eff = q_inf * a_ext + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end + elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') + if is_balanced + phi = 1.0 + else + phi = q_inf / q_tot + end + q_fan = q_tot - phi * q_inf_eff + else + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type + # No infiltration credit for attached/multifamily + return q_tot + end + + if q_inf > 2.0 / 3.0 * q_tot + q_fan = q_tot - 2.0 / 3.0 * q_tot + else + q_fan = q_tot - q_inf + end + end + + # Convert from hourly average requirement to actual fan flow rate + if not hours_in_operation.nil? + q_fan *= 24.0 / hours_in_operation + end + + return [q_fan, 0.0].max + end end class Duct diff --git a/HPXMLtoOpenStudio/resources/constants.rb b/HPXMLtoOpenStudio/resources/constants.rb index 80bc06ec0..14995f5d5 100644 --- a/HPXMLtoOpenStudio/resources/constants.rb +++ b/HPXMLtoOpenStudio/resources/constants.rb @@ -41,7 +41,7 @@ def self.AirFilm def self.ERIVersions return ['2014', '2014A', '2014AE', '2014AEG', '2019', '2019A', - '2019AB', '2019ABC', '2019ABCD'] + '2019AB', '2019ABC', '2019ABCD', '2022', '2022C'] end def self.FacadeFront diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 2fa9b9682..33c80b5db 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -46,7 +46,7 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_hvac_control(hpxml_bldg, schedules_file) apply_hvac_distribution(hpxml_bldg, ncfl, ncfl_ag) apply_hvac_location(hpxml_bldg) - apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds) + apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) apply_water_heaters(hpxml_bldg, nbeds, eri_version, schedules_file) apply_flue_or_chimney(hpxml_bldg) apply_hot_water_distribution(hpxml_bldg, cfa, ncfl, has_uncond_bsmnt) @@ -1910,7 +1910,7 @@ def self.apply_hvac_location(hpxml_bldg) end end - def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds) + def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) # Default mech vent systems hpxml_bldg.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_whole_building_ventilation @@ -1919,20 +1919,23 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? + + if vent_fan.flow_rate.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) vent_fan.rated_flow_rate_isdefaulted = true end + if vent_fan.fan_power.nil? - vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan)).round(1) + vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true end next unless vent_fan.fan_type == HPXML::MechVentTypeCFIS diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index bcfeeedfb..d8df5d93e 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2287,7 +2287,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2297,13 +2297,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.2, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2313,13 +2313,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2328,7 +2328,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 21.6, 61.7) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.0, 74.2) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2337,7 +2337,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2355,7 +2355,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.1) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2385,7 +2385,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2396,7 +2396,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 149.4, 298.7, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 3d2cc838f..54d39f60f 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -1128,7 +1128,7 @@ def test_install_quality_furnace_central_air_conditioner_2_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [1.088, 1.088].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end @@ -1141,7 +1141,7 @@ def test_install_quality_furnace_central_air_conditioner_var_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end @@ -1211,7 +1211,7 @@ def test_install_quality_mini_split_air_conditioner cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index dfa82efd1..4359187c1 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -532,7 +532,7 @@ Building occupancy is entered in ``/HPXML/Building/BuildingDetails/BuildingSumma ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ======================================== ======== ===== =========== ======== ======== ======================== - .. [#] If NumberofResidents not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on NumberofBedrooms and ConditionedFloorArea per `ANSI/RESNET/ICC 301-2019 `_. + .. [#] If NumberofResidents not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on NumberofBedrooms and ConditionedFloorArea per `ANSI/RESNET/ICC 301-2019 `_. If NumberofResidents is provided, an *operational* calculation is instead performed in which the end use defaults are adjusted using the relationship between NumberofBedrooms and NumberofResidents from `RECS 2015 `_: \- **single-family detached or manufactured home**: NumberofBedrooms = -1.47 + 1.69 * NumberofResidents @@ -797,7 +797,7 @@ Building air leakage is entered in ``/HPXML/Building/BuildingDetails/Enclosure/A Use "unit exterior only" if the provided infiltration value represents the infiltration to the dwelling unit from outside only, as measured by a guarded test. .. [#] If InfiltrationHeight not provided, it is inferred from other inputs (e.g., conditioned floor area, number of conditioned floors above-grade, above-grade foundation wall height, etc.). .. [#] InfiltrationHeight is defined as the vertical distance between the lowest and highest above-grade points within the pressure boundary, per ASHRAE 62.2. - .. [#] If Aext not provided and TypeOfInfiltrationLeakage is "unit total", defaults for single-family attached and apartment units to the ratio of exterior (adjacent to outside) envelope surface area to total (adjacent to outside, other dwelling units, or other MF spaces) envelope surface area, as defined by `ANSI/RESNET/ICC 301-2019 `_ and `ASHRAE 62.2-2019 `_. + .. [#] If Aext not provided and TypeOfInfiltrationLeakage is "unit total", defaults for single-family attached and apartment units to the ratio of exterior (adjacent to outside) envelope surface area to total (adjacent to outside, other dwelling units, or other MF spaces) envelope surface area, as defined by `ANSI/RESNET/ICC 301-2019 `_ and `ASHRAE 62.2-2019 `_. Note that all attached surfaces, even adiabatic surfaces, must be defined in the HPXML file. If single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", Aext is 1. @@ -897,7 +897,7 @@ If the dwelling unit has a vented attic, attic ventilation information can be op ================= ====== ===== =========== ======== ========== ========================== .. [#] UnitofMeasure choices are "SLA" (specific leakage area) or "ACHnatural" (natural air changes per hour). - .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. HPXML Foundations ***************** @@ -912,7 +912,7 @@ If the dwelling unit has a vented crawlspace, crawlspace ventilation information ================= ====== ===== =========== ======== ========== ========================== .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). - .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. If the dwelling has a manufactured home belly-and-wing foundation, whether a skirt is present can be optionally entered in @@ -1240,8 +1240,8 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north". .. [#] GlassLayers choices are "single-pane", "double-pane", "triple-pane", or "glass block". .. [#] Summer vs winter shading seasons are determined per :ref:`shadingcontrol`. - .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the window will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL `_. \- **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window @@ -1865,7 +1865,7 @@ If a chiller is specified, additional information is entered in ``CoolingSystem` .. note:: - Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. + Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. .. _hvac_cooling_tower: @@ -1888,7 +1888,7 @@ If a cooling tower is specified, additional information is entered in ``CoolingS .. note:: - Cooling towers w/ water loop heat pumps are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. + Cooling towers w/ water loop heat pumps are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. .. _hvac_heatpump: @@ -2137,7 +2137,7 @@ If a ground-to-air heat pump is specified, additional information is entered in .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. .. [#] AttachedToGeothermalLoop must reference a ``GeothermalLoop``. .. [#] If AttachedToGeothermalLoop 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. + .. [#] 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. .. [#] SharedLoopWatts only required if IsSharedSystem is true. @@ -2649,36 +2649,40 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] For central fan integrated supply systems, IsSharedSystem must be false. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - Φ*(Qinf * Aext) + \- **balanced, energy recovery ventilator, or heat recovery ventilator**: Qfan = Qtot - Qinf_eff + \- **exhaust only, supply only, or central fan integrated supply**: Qfan = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 + where Qfan = required mechanical ventilation rate (cfm) Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` - Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. - .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: + .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2022: \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm \- **balanced**: 0.7 W/cfm - \- **central fan integrated supply**: 0.5 W/cfm + \- **central fan integrated supply**: 0.58 W/cfm - \- **exhaust only" or "supply only**: 0.35 W/cfm + \- **exhaust only or supply only**: 0.35 W/cfm **Exhaust/Supply Only** @@ -2918,7 +2922,7 @@ If an instantaneous tankless water heater is specified, additional information i =========================================== ======= ============ =========== ============ ======== ========================================================== .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". - .. [#] If PerformanceAdjustment not provided, defaults to 0.94 (UEF) or 0.92 (EF) based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] If PerformanceAdjustment not provided, defaults to 0.94 (UEF) or 0.92 (EF) based on `ANSI/RESNET/ICC 301-2019 `_. Heat Pump ~~~~~~~~~ @@ -3015,7 +3019,7 @@ If any water heating systems are provided, a single hot water distribution syste In attached/multifamily buildings, only the hot water distribution system serving the dwelling unit should be defined. The hot water distribution associated with, e.g., a shared laundry room should not be defined. -Hot water distribution systems are modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +Hot water distribution systems are modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. Standard ~~~~~~~~ @@ -3028,7 +3032,7 @@ If the in-unit distribution system is specified as standard, additional informat ``PipingLength`` double ft > 0 No See [#]_ Length of piping [#]_ ================ ======= ===== =========== ======== ======== ===================== - .. [#] If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: + .. [#] If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: PipeL = 2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt @@ -3068,7 +3072,7 @@ If the in-unit distribution system is specified as recirculation, additional inf \- **no control**: The pump runs continuously. - .. [#] If RecirculationPipingLoopLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: + .. [#] If RecirculationPipingLoopLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: RecircPipeL = 2.0 * (2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt) - 20.0 @@ -3082,7 +3086,7 @@ If the in-unit distribution system is specified as recirculation, additional inf .. [#] RecirculationPipingLoopLength is the recirculation loop length including both supply and return sides, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 20 feet of piping for each floor level greater than one plus 10 feet of piping for unconditioned basements. .. [#] BranchPipingLength is the length of the branch hot water piping from the recirculation loop to the farthest hot water fixture from the recirculation loop, measured longitudinally from plans, assuming the branch hot water piping does not run diagonally. - .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. Shared Recirculation ~~~~~~~~~~~~~~~~~~~~ @@ -3097,7 +3101,7 @@ If a shared recirculation system is specified, additional information is entered ``ControlType`` string See [#]_ Yes Shared recirculation control type ======================= ======= ===== =========== ======== ======== ================================= - .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] ControlType choices are "manual demand control", "presence sensor demand control", "temperature", "timer", or "no control". Drain Water Heat Recovery @@ -3118,7 +3122,7 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio Use "all" if there is one shower and it's connected to the DWHR or there are two or more showers connected to the DWHR. .. [#] EqualFlow should be true if the DWHR supplies pre-heated water to both the fixture cold water piping *and* the hot water heater potable supply piping. -Drain water heat recovery is modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +Drain water heat recovery is modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. HPXML Water Fixtures ******************** @@ -3154,7 +3158,7 @@ Additional information can be entered in ``/HPXML/Building/BuildingDetails/Syste .. [#] If WaterFixturesWeekdayScheduleFractions or WaterFixturesWeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 9-11 of the `2010 BAHSP `_ are used: "0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026". .. [#] If WaterFixturesMonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". -Water fixture hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +Water fixture hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. HPXML Solar Thermal ******************* @@ -3525,7 +3529,7 @@ If not entered, the simulation will not include a refrigerator. See :ref:`hpxmllocations` for descriptions. .. [#] If Location not provided and is the *primary* refrigerator, defaults to "conditioned space". If Location not provided and is a *secondary* refrigerator, defaults to the first present space type: "garage", "basement - unconditioned", "basement - conditioned", or "conditioned space". - .. [#] If RatedAnnualkWh not provided, it will be defaulted to represent a standard refrigerator from 2006 using the following equation based on `ANSI/RESNET/ICC 301-2019 `_: + .. [#] If RatedAnnualkWh not provided, it will be defaulted to represent a standard refrigerator from 2006 using the following equation based on `ANSI/RESNET/ICC 301-2019 `_: RatedAnnualkWh = 637.0 + 18.0 * NumberofBedrooms. .. [#] If multiple refrigerators are specified, there must be exactly one refrigerator described with PrimaryIndicator=true. .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". @@ -3626,7 +3630,7 @@ If a cooking range is specified, a single oven is also entered as a ``/HPXML/Bui ``IsConvection`` boolean No false Convection oven? ==================== ======= ====== =========== ======== ======= ================ -Cooking range/oven energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +Cooking range/oven energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. HPXML Lighting & Ceiling Fans ----------------------------- @@ -3657,7 +3661,7 @@ If specifying **lighting type fractions**, three ``/HPXML/Building/BuildingDetai .. [#] The sum of FractionofUnitsInLocation for a given Location (e.g., interior) must be less than or equal to 1. If the fractions sum to less than 1, the remainder is assumed to be incandescent lighting. - Interior, exterior, and garage lighting energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + Interior, exterior, and garage lighting energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. If specifying **annual energy consumption** instead, a single ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` element is entered for each lighting location: @@ -3729,12 +3733,12 @@ If not entered, the simulation will not include a ceiling fan. ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ========================================= ======= ======= =========== ======== ======== ============================== - .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] If Count not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] If Count not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults based on monthly average outdoor temperatures per `ANSI/RESNET/ICC 301-2019 `_ + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults based on monthly average outdoor temperatures per `ANSI/RESNET/ICC 301-2019 `_ -Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. .. note:: @@ -3924,9 +3928,9 @@ If not entered, the simulation will not include that type of plug load. .. [#] PlugLoadType choices are "other", "TV other", "well pump", or "electric vehicle charging". .. [#] If Value not provided, defaults as: - \- **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 `_) + \- **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 `_) - \- **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 `_) + \- **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 `_) \- **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 4726db578..820be3abb 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -1,283 +1,283 @@ 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.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-ceiling.xml,38.324,38.324,33.559,33.559,4.764,0.0,0.0,0.0,0.0,0.0,0.0,0.021,0.0,0.0,9.672,2.02,6.716,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,4.4,0.0,33.765,6.562,0.58,0.0,0.0,0.0,0.0,2084.5,3439.0,3439.0,14.269,20.47,0.0,7.066,1.548,0.0,0.0,0.336,4.349,-5.952,0.0,0.0,0.0,0.661,-0.417,0.994,0.0,0.4,0.0,0.117,-4.051,-0.857,0.0,3.679,0.137,0.0,0.0,0.211,2.951,16.245,0.0,0.0,0.0,1.975,-0.409,-0.262,-1.694,-0.044,0.0,0.392,9.113,1.79,1354.8,997.6,9789.2,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,25263.0,63.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,12699.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-radiant-barrier.xml,37.175,37.175,33.122,33.122,4.053,0.0,0.0,0.0,0.0,0.0,0.0,0.017,0.0,0.0,9.316,1.945,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.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,3.742,0.0,32.49,6.562,0.579,0.0,0.0,0.0,0.0,1884.8,3231.7,3231.7,13.389,18.802,0.0,5.961,1.573,0.0,0.0,0.336,4.356,-5.864,0.0,0.0,0.0,0.842,-0.36,0.991,0.0,0.396,0.0,0.1,-3.98,-0.839,0.0,2.287,0.128,0.0,0.0,0.203,2.872,16.307,0.0,0.0,0.0,2.055,-0.353,-0.284,-1.739,-0.054,0.0,0.377,9.183,1.808,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.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.47,28.47,28.47,28.47,0.0,0.0,0.0,0.0,0.0,0.0,0.169,0.317,0.0,0.0,2.491,2.884,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,1731.7,1991.1,1991.1,3.449,7.707,0.0,-0.016,2.484,0.0,0.0,0.426,3.955,-2.568,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.682,0.0,0.0,-4.596,-0.776,0.0,-0.011,-1.099,0.0,0.0,-0.042,-1.124,5.635,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.37,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 -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.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,38.107,38.107,38.107,38.107,0.0,0.0,0.0,0.0,0.0,0.0,5.547,0.565,0.0,0.0,3.161,1.026,6.532,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.04,0.0,14.077,9.074,0.613,2.96,0.0,0.0,0.0,3419.5,2349.0,3419.5,22.235,16.637,0.0,3.594,3.643,0.513,7.525,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.698,-8.59,-2.499,0.0,-0.012,-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.175,8.507,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 -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,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.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.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.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.489,9.117,0.021,0.0,0.0,0.0,0.0,4533.9,5519.4,5519.4,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-appliances-coal.xml,59.503,59.503,33.004,33.004,21.633,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-dehumidifier-ief-portable.xml,34.558,34.558,33.276,33.276,1.282,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.891,1.863,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.678,0.319,0.365,1.513,1.528,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.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,1.136,0.0,31.166,6.562,0.572,0.0,0.0,0.0,0.0,2082.6,2832.7,2832.7,9.452,15.098,0.0,1.735,1.623,0.0,0.0,0.396,4.94,-4.836,0.0,0.0,0.0,1.255,-0.412,1.053,0.285,0.394,0.0,0.032,-4.853,-0.768,0.0,0.504,-0.045,0.0,0.0,0.21,2.81,17.335,0.0,0.0,0.0,1.768,-0.407,-0.333,-2.267,-0.095,0.0,0.356,9.587,1.879,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.592,34.592,33.329,33.329,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.89,1.863,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.733,0.319,0.365,1.513,1.528,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.146,6.562,0.572,0.0,0.0,0.0,0.0,2101.2,2832.7,2832.7,9.474,15.098,0.0,1.751,1.637,0.0,0.0,0.401,4.981,-4.876,0.0,0.0,0.0,1.264,-0.414,1.063,0.301,0.398,0.0,0.031,-4.925,-0.775,0.0,0.52,-0.031,0.0,0.0,0.214,2.849,17.295,0.0,0.0,0.0,1.774,-0.409,-0.324,-2.254,-0.091,0.0,0.356,9.534,1.872,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.543,34.543,33.19,33.19,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.876,1.86,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.61,0.319,0.365,1.513,1.528,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.213,0.0,31.111,6.562,0.572,0.0,0.0,0.0,0.0,1980.3,2844.4,2844.4,9.538,15.098,0.0,1.743,1.628,0.0,0.0,0.396,4.927,-4.905,0.0,0.0,0.0,1.264,-0.406,1.052,0.282,0.395,0.0,0.034,-4.716,-0.773,0.0,0.519,-0.034,0.0,0.0,0.211,2.816,17.266,0.0,0.0,0.0,1.796,-0.401,-0.329,-2.254,-0.092,0.0,0.356,9.535,1.874,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-appliances-dehumidifier.xml,34.514,34.514,33.243,33.243,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.88,1.86,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.659,0.319,0.365,1.513,1.528,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.101,6.562,0.572,0.0,0.0,0.0,0.0,1974.6,2844.4,2844.4,9.517,15.098,0.0,1.765,1.647,0.0,0.0,0.401,4.987,-4.952,0.0,0.0,0.0,1.286,-0.408,1.066,0.305,0.4,0.0,0.032,-4.895,-0.782,0.0,0.538,-0.017,0.0,0.0,0.215,2.867,17.219,0.0,0.0,0.0,1.808,-0.403,-0.318,-2.243,-0.088,0.0,0.355,9.474,1.865,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-appliances-gas.xml,59.503,59.503,33.004,33.004,26.499,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.633,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-modified.xml,58.121,58.121,36.688,36.688,21.434,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,4.363,0.828,9.542,0.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.434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.072,0.0,14.371,9.641,0.614,0.0,0.0,0.0,0.0,2140.5,3491.9,3491.9,22.968,19.12,0.0,3.567,3.65,0.514,7.553,0.632,10.118,-12.663,0.0,0.0,0.0,8.349,-0.066,5.408,0.0,0.0,0.0,4.675,-9.525,-2.496,0.0,-0.055,-0.462,-0.052,2.69,-0.026,-1.398,11.75,0.0,0.0,0.0,-6.332,-0.062,-1.296,-3.913,0.0,0.0,3.17,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.37,52.37,28.164,28.164,24.206,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,3.924,0.724,7.785,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.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.669,0.0,12.543,7.75,0.616,0.0,0.0,0.0,0.0,1855.8,2937.4,2937.4,23.37,17.9,0.0,3.527,3.626,0.51,7.475,0.627,10.055,-12.698,0.0,0.0,0.0,8.262,-0.061,5.397,0.0,0.0,0.0,5.206,-7.087,-2.503,0.0,0.014,-0.408,-0.044,2.838,-0.012,-1.231,11.715,0.0,0.0,0.0,-6.088,-0.057,-1.245,-3.591,0.0,0.0,2.836,5.975,2.006,0.0,0.0,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-oil.xml,59.503,59.503,33.004,33.004,21.633,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-propane.xml,59.503,59.503,33.004,33.004,21.633,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-wood.xml,59.503,59.503,33.004,33.004,21.633,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-atticroof-cathedral.xml,61.238,61.238,35.599,35.599,25.639,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.111,0.771,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.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,0.0,0.0,23.991,0.0,13.195,9.075,0.616,0.0,0.0,0.0,0.0,2123.4,3227.4,3227.4,22.717,16.531,6.779,0.0,4.237,0.513,7.504,0.634,12.709,-15.639,0.0,0.0,0.0,8.361,-0.09,9.326,0.0,0.73,0.0,0.0,-8.941,-2.505,0.162,0.0,-0.491,-0.046,2.78,-0.014,-1.137,15.661,0.0,0.0,0.0,-6.3,-0.065,-2.048,-4.743,-0.156,0.0,0.0,7.839,2.004,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,62.949,62.949,40.328,40.328,22.621,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.739,0.92,8.923,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.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,21.169,0.0,15.797,9.023,0.614,0.0,0.0,0.0,0.0,2397.3,3596.6,3596.6,22.528,19.772,4.574,1.169,5.574,0.521,7.699,0.639,14.508,-17.155,0.0,0.0,0.0,8.591,-0.088,7.116,0.0,0.733,0.0,0.274,-10.231,-3.183,0.013,0.023,-0.555,-0.052,2.707,-0.027,-1.833,17.683,0.0,0.0,0.0,-6.319,-0.082,-1.664,-5.237,-0.165,0.0,0.092,8.933,2.568,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.356,54.356,34.89,34.89,19.466,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.616,0.659,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,19.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,0.0,0.0,18.216,0.0,11.263,9.075,0.615,0.0,0.0,0.0,0.0,2121.3,2762.8,2762.8,17.648,12.809,6.045,0.0,3.619,0.509,7.465,0.625,10.03,-12.687,0.0,0.0,0.0,8.23,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.317,0.0,-0.439,-0.048,2.755,-0.02,-1.334,11.721,0.0,0.0,0.0,-6.221,-0.05,-1.135,-3.78,-0.161,0.0,0.0,7.871,2.01,1354.8,997.6,11171.5,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-ceiling.xml,38.278,38.278,33.512,33.512,4.766,0.0,0.0,0.0,0.0,0.0,0.0,0.021,0.0,0.0,9.634,2.01,6.716,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.402,0.0,33.547,6.562,0.581,0.0,0.0,0.0,0.0,2084.5,3439.1,3439.1,14.269,20.469,0.0,7.073,1.549,0.0,0.0,0.337,4.353,-5.956,0.0,0.0,0.0,0.658,-0.419,0.994,0.0,0.4,0.0,0.117,-4.054,-0.857,0.0,3.731,0.15,0.0,0.0,0.215,2.993,16.24,0.0,0.0,0.0,2.005,-0.41,-0.254,-2.059,-0.042,0.0,0.39,9.111,1.79,1354.8,997.6,9789.2,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,25263.0,63.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,12699.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-radiant-barrier.xml,37.12,37.12,33.067,33.067,4.054,0.0,0.0,0.0,0.0,0.0,0.0,0.017,0.0,0.0,9.27,1.934,6.715,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.743,0.0,32.244,6.562,0.58,0.0,0.0,0.0,0.0,1884.8,3234.7,3234.7,13.389,18.803,0.0,5.961,1.573,0.0,0.0,0.336,4.356,-5.864,0.0,0.0,0.0,0.844,-0.36,0.991,0.0,0.396,0.0,0.1,-3.98,-0.839,0.0,2.328,0.141,0.0,0.0,0.206,2.913,16.307,0.0,0.0,0.0,2.092,-0.353,-0.276,-2.136,-0.052,0.0,0.375,9.183,1.808,1354.8,997.6,9789.2,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.882,56.882,35.057,35.057,21.825,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.724,0.679,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,21.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,20.425,0.0,11.582,9.075,0.616,0.0,0.0,0.0,0.0,2115.1,2855.4,2855.4,19.246,14.086,0.0,5.473,3.627,0.51,7.486,0.627,10.052,-12.69,0.0,0.0,0.0,8.297,-0.061,4.803,0.0,0.729,0.0,2.655,-8.912,-2.5,0.0,-1.406,-0.407,-0.044,2.853,-0.012,-1.237,11.723,0.0,0.0,0.0,-6.053,-0.053,-1.113,-3.567,-0.159,0.0,1.398,7.868,2.009,1354.8,997.6,11171.6,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.482,57.482,35.385,35.385,22.097,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,3.843,0.708,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.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.691,0.0,12.183,9.075,0.803,0.0,0.0,0.0,0.0,2132.9,2979.5,2979.5,21.537,15.322,0.0,3.899,3.639,0.512,7.516,0.63,10.087,-12.691,0.0,0.0,0.0,8.312,-0.061,4.804,0.0,0.729,0.0,4.07,-8.579,-2.5,0.0,-0.51,-0.431,-0.047,2.775,-0.018,-1.303,11.723,0.0,0.0,0.0,-6.195,-0.057,-1.134,-3.721,-0.161,0.0,1.888,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.728,59.728,37.442,37.442,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,1.735,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.309,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.281,36.281,24.654,24.654,11.628,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.608,0.203,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.779,0.0,3.104,9.374,0.73,0.0,0.0,0.0,0.0,1566.1,2029.3,2029.3,7.666,6.064,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.663,-4.243,-1.184,0.0,-0.926,-0.232,0.0,0.0,-0.054,-0.108,1.309,0.0,0.0,-0.939,0.0,-0.032,-0.284,-0.431,0.0,0.0,0.571,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.49,31.49,25.137,25.137,6.353,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.132,0.317,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.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,5.893,0.0,5.185,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2173.7,2173.7,9.392,10.995,0.0,-0.004,3.306,0.0,0.0,1.395,3.739,-4.206,0.0,0.0,4.619,0.0,-0.073,1.254,0.0,0.793,0.0,2.37,-6.27,-1.137,0.0,-0.0,-0.456,0.0,0.0,-0.421,-0.19,3.999,0.0,0.0,-3.038,0.0,-0.068,-0.245,-1.295,-0.13,0.0,0.5,5.73,0.889,1354.8,997.6,11171.5,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.408,49.408,24.666,24.666,24.742,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.472,0.171,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.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,22.943,0.0,2.566,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2202.7,2202.7,11.077,8.634,0.0,5.361,4.204,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.061,1.7,0.0,0.0,0.0,11.647,-4.474,-1.246,0.0,-1.198,-0.061,0.0,0.0,-0.055,-0.006,1.194,0.0,0.0,-1.205,0.0,-0.057,-0.192,-0.319,0.0,0.0,0.541,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.836,25.836,24.518,24.518,1.318,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.209,9.586,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,1.221,0.0,3.207,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1858.0,1858.0,3.415,6.065,0.0,0.378,3.173,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.707,0.0,0.0,0.0,0.375,-4.016,-1.12,0.0,-0.827,-0.461,0.0,0.0,-0.075,-0.216,1.396,0.0,0.0,-0.843,0.0,-0.002,-0.391,-0.487,0.0,0.0,0.589,3.657,0.906,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.12,26.12,25.048,25.048,1.072,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.097,0.323,9.538,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.993,0.0,5.15,9.374,0.587,0.0,0.0,0.0,0.0,1571.2,1735.1,1735.1,3.705,4.57,0.0,-0.004,3.203,0.0,0.0,0.373,1.435,-1.384,0.0,0.0,-0.003,0.0,-0.072,1.766,0.0,0.0,0.0,0.309,-3.661,-1.01,0.0,-0.001,-0.567,0.0,0.0,-0.042,-0.366,1.518,0.0,0.0,-0.001,0.0,-0.068,-0.534,-0.686,0.0,0.0,0.916,4.011,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.693,26.693,26.167,26.167,0.526,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.008,0.547,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.485,0.0,9.161,9.374,0.575,0.0,0.0,0.0,0.0,1666.2,2124.8,2124.8,3.251,7.677,0.0,-0.015,2.454,0.0,0.0,0.424,3.908,-2.465,0.0,0.0,-0.01,0.0,-0.394,0.992,0.0,0.666,0.0,0.0,-4.454,-0.746,0.0,-0.01,-1.135,0.0,0.0,-0.045,-1.18,5.738,0.0,0.0,-0.005,0.0,-0.383,-0.406,-1.699,-0.406,0.0,0.0,7.512,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.816,19.816,18.588,18.588,1.228,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.417,0.4,4.528,0.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.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,1.135,0.0,7.034,4.144,0.585,0.0,0.0,0.0,0.0,1141.0,1670.8,1670.8,3.916,7.194,0.0,-0.018,2.58,0.0,0.0,0.426,4.09,-3.005,0.0,0.0,-0.016,0.0,-0.363,1.303,0.0,0.742,0.0,0.0,-3.754,-0.915,0.0,-0.013,-0.822,0.0,0.0,-0.009,-0.71,5.197,0.0,0.0,-0.012,0.0,-0.355,-0.398,-1.471,-0.283,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.348,27.348,26.69,26.69,0.658,0.0,0.0,0.0,0.0,0.0,0.0,0.032,0.0,0.0,3.237,0.81,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,4.0,1681.2,2163.6,2163.6,3.451,7.021,0.0,-0.016,2.479,0.0,0.0,0.425,3.942,-2.554,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.573,-0.772,0.0,-0.011,-1.086,0.0,0.0,-0.04,-1.109,5.648,0.0,0.0,-0.007,0.0,-0.383,-0.507,-1.681,-0.386,0.0,0.0,7.394,1.254,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.132,28.132,27.429,27.429,0.703,0.0,0.0,0.0,0.0,0.0,0.0,0.056,0.0,0.0,3.846,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.624,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,1710.3,2342.2,2342.2,3.597,8.161,0.0,-0.015,2.477,0.0,0.0,0.424,3.925,-2.557,0.0,0.0,-0.01,0.0,-0.39,1.277,0.0,0.676,0.0,0.036,-4.554,-0.768,0.0,-0.01,-1.088,0.0,0.0,-0.041,-1.126,5.645,0.0,0.0,-0.005,0.0,-0.38,-0.51,-1.69,-0.389,0.0,1.23,7.413,1.258,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.972,26.972,0.624,0.0,0.0,0.0,0.0,0.0,0.0,0.075,0.0,0.0,3.477,0.81,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,4.0,1690.5,2229.8,2229.8,3.449,7.021,0.0,-0.016,2.479,0.0,0.0,0.425,3.942,-2.554,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.573,-0.772,0.0,-0.011,-1.086,0.0,0.0,-0.04,-1.109,5.648,0.0,0.0,-0.007,0.0,-0.383,-0.507,-1.681,-0.386,0.0,0.0,7.394,1.254,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.742,31.742,31.229,31.229,0.512,0.0,0.0,0.0,0.0,0.0,0.033,0.032,0.0,0.0,7.637,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.602,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,2071.4,3379.2,3379.2,3.53,8.161,0.0,-0.015,2.475,0.0,0.0,0.424,3.924,-2.553,0.0,0.0,-0.011,0.0,-0.391,1.276,0.0,0.675,0.0,0.014,-4.552,-0.768,0.0,-0.01,-1.091,0.0,0.0,-0.041,-1.127,5.65,0.0,0.0,-0.005,0.0,-0.381,-0.511,-1.69,-0.389,0.0,1.23,7.415,1.258,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.784,27.784,27.271,27.271,0.512,0.0,0.0,0.0,0.0,0.0,0.033,0.032,0.0,0.0,3.679,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.602,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,1703.8,2296.5,2296.5,3.53,8.161,0.0,-0.015,2.475,0.0,0.0,0.424,3.924,-2.553,0.0,0.0,-0.011,0.0,-0.391,1.276,0.0,0.675,0.0,0.014,-4.552,-0.768,0.0,-0.01,-1.091,0.0,0.0,-0.041,-1.127,5.65,0.0,0.0,-0.005,0.0,-0.381,-0.511,-1.69,-0.389,0.0,1.23,7.415,1.258,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.1,23.1,22.555,22.555,0.545,0.0,0.0,0.0,0.0,0.0,0.0,0.026,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1520.9,1332.5,1520.9,3.443,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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.156,23.156,22.575,22.575,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.516,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1528.7,1332.5,1528.7,3.595,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.03,-6.086,-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.107,23.107,22.588,22.588,0.519,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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.085,23.085,22.709,22.709,0.377,0.0,0.0,0.0,0.0,0.0,0.121,0.059,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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.107,23.107,22.59,22.59,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.061,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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,23.006,23.006,22.582,22.582,0.424,0.0,0.0,0.0,0.0,0.0,0.027,0.026,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.497,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1533.0,1332.5,1533.0,3.527,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.012,-6.086,-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.639,26.639,26.639,26.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.218,0.803,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.897,9.374,0.585,0.0,0.0,0.0,4.0,1683.2,2004.9,2004.9,0.0,7.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.009,-1.044,0.0,0.0,-0.044,-1.101,5.524,0.0,0.0,-0.005,0.0,-0.342,-0.5,-1.677,-0.374,0.0,0.0,7.329,1.236,1354.8,997.6,11171.5,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.35,27.35,27.35,27.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.824,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1735.4,2263.5,2263.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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.877,26.877,26.877,26.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456,0.803,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.897,9.374,0.585,0.0,0.0,0.0,4.0,1699.2,2068.0,2068.0,0.0,7.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.009,-1.044,0.0,0.0,-0.044,-1.101,5.524,0.0,0.0,-0.005,0.0,-0.342,-0.5,-1.677,-0.374,0.0,0.0,7.329,1.236,1354.8,997.6,11171.5,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.113,31.113,31.113,31.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.587,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1991.4,3251.6,3251.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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.184,27.184,27.184,27.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.658,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1724.1,2220.0,2220.0,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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.91,34.086,26.107,19.282,0.637,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,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.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,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.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.392,28.392,28.392,28.392,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.328,0.0,0.0,2.415,2.868,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.588,0.0,8.984,9.374,0.577,0.0,0.0,0.0,0.0,1731.7,2025.8,2025.8,3.449,7.707,0.0,-0.016,2.488,0.0,0.0,0.427,3.957,-2.568,0.0,0.0,-0.012,0.0,-0.388,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.01,-1.077,0.0,0.0,-0.038,-1.093,5.634,0.0,0.0,-0.006,0.0,-0.378,-0.502,-1.681,-0.383,0.0,0.0,7.368,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.637,31.637,16.644,16.644,14.993,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.01,0.548,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.58,0.0,14.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.535,0.0,9.264,9.374,2.266,0.0,0.0,0.0,0.0,1020.3,1539.9,1539.9,3.498,7.734,0.0,-0.017,2.441,0.0,0.0,0.425,3.917,-2.473,0.0,0.0,-0.012,0.0,-0.414,2.026,0.0,0.0,0.0,0.0,-4.709,-0.753,0.0,-0.012,-1.134,0.0,0.0,-0.041,-1.149,5.73,0.0,0.0,-0.007,0.0,-0.404,-0.925,-1.711,0.0,0.0,0.0,7.747,1.273,1354.8,997.6,11172.0,3093.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-laundry-room.xml,29.523,29.523,16.46,16.46,13.063,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.863,0.51,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.749,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.692,0.0,8.568,9.374,0.569,0.0,0.0,0.0,0.0,1011.4,1528.6,1528.6,3.655,7.615,0.0,-0.017,2.502,0.0,0.0,0.426,3.98,-2.665,0.0,0.0,-0.013,0.0,-0.393,2.064,0.0,0.0,0.0,0.0,-4.482,-0.801,0.0,-0.012,-1.03,0.0,0.0,-0.033,-1.02,5.538,0.0,0.0,-0.008,0.0,-0.383,-0.847,-1.646,0.0,0.0,0.0,6.88,1.226,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-mechvent-multiple.xml,50.688,50.688,30.635,30.635,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.786,0.301,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.892,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.311,0.0,5.073,9.374,0.616,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.585,8.979,0.0,-0.017,2.792,0.0,0.0,0.407,4.197,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.344,0.0,0.0,-6.695,-1.194,0.0,-0.013,-0.139,0.0,0.0,0.06,0.131,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.754,-4.199,0.0,0.0,5.311,0.832,1354.8,997.6,11171.6,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.544,32.544,27.245,27.245,5.299,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.63,0.445,9.538,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.341,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.24,0.0,7.41,9.374,0.587,0.0,0.0,0.0,0.0,1656.4,2023.4,2023.4,4.163,7.879,0.0,-0.018,2.64,0.0,0.0,0.432,4.152,-3.079,0.0,0.0,-0.017,0.0,-0.359,1.776,0.0,1.929,0.0,0.0,-5.323,-0.931,0.0,-0.013,-0.758,0.0,0.0,-0.001,-0.635,5.123,0.0,0.0,-0.012,0.0,-0.351,-0.521,-1.382,-1.753,0.0,0.0,6.655,1.096,1354.8,997.6,11171.6,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.767,30.767,27.1,27.1,3.667,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.53,0.418,9.548,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.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,3.395,0.0,7.118,9.374,0.597,0.0,0.0,0.0,0.0,1646.4,2003.5,2003.5,5.987,8.5,0.0,-0.016,2.685,0.0,0.0,0.398,4.043,-3.61,0.0,0.0,-0.018,0.0,-0.252,1.74,0.0,5.31,0.0,0.0,-5.808,-1.041,0.0,-0.012,-0.554,0.0,0.0,-0.005,-0.492,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.431,-1.381,-1.484,0.0,0.0,6.179,0.985,1354.8,997.6,11171.6,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.743,2.296,26.107,1.659,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.683,30.683,17.571,17.571,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1056.9,1589.2,1589.2,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,29.587,29.587,16.475,16.475,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1004.2,1536.5,1536.5,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,26.743,26.743,26.107,26.107,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.831,50.831,34.428,34.428,16.404,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.283,0.575,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.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.298,0.0,9.848,9.11,0.614,0.0,0.0,0.0,0.0,2111.0,3027.6,3027.6,17.841,15.535,0.0,2.437,5.073,0.298,4.383,0.64,7.129,-8.585,0.0,0.0,0.0,5.037,-0.068,7.099,0.0,0.73,0.0,2.273,-8.897,-2.5,0.0,0.011,-0.639,-0.025,1.625,-0.016,-1.021,7.911,0.0,0.0,0.0,-3.958,-0.064,-1.668,-3.256,-0.161,0.0,1.326,7.882,2.01,1354.8,997.6,11171.6,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.443,97.443,37.092,37.092,60.351,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.002,0.939,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.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.276,0.0,15.912,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4261.1,4261.1,36.45,28.471,49.534,0.0,2.942,0.289,3.703,0.668,4.716,-5.325,0.0,0.0,0.0,3.449,-0.843,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.503,0.0,-0.157,0.004,1.54,0.119,0.033,5.085,0.0,0.0,0.0,-4.268,-0.805,-0.851,-1.334,-0.093,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.183,42.183,29.757,29.757,12.427,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.738,0.459,9.29,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.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.523,0.0,7.818,9.225,0.614,0.0,0.0,0.0,0.0,1828.5,2548.4,2548.4,13.175,10.697,0.0,2.351,2.371,0.292,4.25,0.625,3.569,-4.311,0.0,0.0,0.0,4.698,-0.043,3.042,0.0,0.728,0.0,3.166,-7.556,-1.812,0.0,0.025,-0.283,-0.027,1.563,-0.022,-0.602,3.963,0.0,0.0,0.0,-4.073,-0.041,-0.764,-1.603,-0.165,0.0,1.612,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.183,42.183,29.757,29.757,12.427,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.738,0.459,9.29,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.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.523,0.0,7.818,9.225,0.614,0.0,0.0,0.0,0.0,1828.5,2548.4,2548.4,13.175,10.697,0.0,2.351,2.371,0.292,4.25,0.625,3.569,-4.311,0.0,0.0,0.0,4.698,-0.043,3.042,0.0,0.728,0.0,3.166,-7.556,-1.812,0.0,0.025,-0.283,-0.027,1.563,-0.022,-0.602,3.963,0.0,0.0,0.0,-4.073,-0.041,-0.764,-1.603,-0.165,0.0,1.612,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.121,51.121,21.423,21.423,29.697,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.404,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.357,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.6,1017.3,1375.6,16.511,0.0,0.0,3.746,3.645,0.513,7.509,0.631,10.102,-12.69,0.0,0.0,0.0,8.175,-0.066,4.807,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.316,52.316,21.433,21.433,30.883,0.0,0.0,0.0,0.0,0.0,0.0,0.157,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.589,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.403,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.503,0.631,10.097,-12.691,0.0,0.0,0.0,8.176,-0.066,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,31.989,31.989,31.989,31.989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.177,0.714,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.682,9.074,0.662,2.814,0.0,0.0,0.0,2069.0,2818.5,2818.5,0.0,19.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.074,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.745,-0.164,0.0,3.615,8.606,2.036,1354.8,997.6,11184.5,2566.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-gshp.xml,38.021,38.021,38.021,38.021,0.0,0.0,0.0,0.0,0.0,0.0,5.552,0.566,0.0,0.0,3.04,0.988,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,13.555,9.073,0.614,2.863,0.0,0.0,0.0,3419.5,2343.1,3419.5,22.235,16.609,0.0,3.593,3.642,0.513,7.526,0.63,10.095,-12.683,0.0,0.0,0.0,8.321,-0.063,4.805,0.0,0.729,0.0,3.701,-8.59,-2.499,0.0,0.005,-0.446,-0.049,2.735,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.26,-0.059,-1.145,-3.86,-0.163,0.0,2.129,8.481,2.01,1354.8,997.6,11186.3,2566.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,18787.0,5329.0,7037.0,0.0,207.0,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.254,56.254,29.571,29.571,26.682,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.353,0.827,2.675,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,24.987,0.0,14.378,9.086,1.809,2.921,0.0,0.0,0.0,1884.0,3127.9,3127.9,25.892,19.484,0.0,3.523,3.635,0.511,7.505,0.628,10.069,-12.724,0.0,0.0,0.0,8.338,-0.052,4.795,0.0,0.727,0.0,5.643,-5.455,-2.509,0.0,-0.001,-0.405,-0.044,2.871,-0.011,-1.224,11.689,0.0,0.0,0.0,-6.044,-0.049,-1.099,-3.608,-0.154,0.0,3.142,7.597,2.0,1354.7,997.5,11146.8,2557.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.582,33.582,33.582,33.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349,1.145,6.811,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.077,9.08,0.0,2.843,0.0,0.0,0.0,1932.8,3239.8,3239.8,0.0,19.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.447,-0.049,2.73,-0.026,-1.379,11.85,0.0,0.0,0.0,-6.828,-0.064,-1.163,-3.706,-0.163,0.0,3.168,8.336,2.036,1354.8,997.6,11133.3,2554.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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,0.0,19.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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.437,8.613,2.036,1354.8,997.6,11182.7,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.xml,33.61,33.61,33.61,33.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.401,1.162,6.771,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.296,9.074,0.662,2.892,0.0,0.0,0.0,2069.0,3252.8,3252.8,0.0,19.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.057,-0.453,-0.05,2.715,-0.028,-1.397,11.85,0.0,0.0,0.0,-6.838,-0.063,-1.17,-3.747,-0.164,0.0,3.204,8.628,2.036,1354.8,997.6,11182.2,2566.0,0.0,0.0,24000.0,0.0,6.8,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.722,55.722,33.436,33.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,6.745,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,6.634,0.614,0.0,0.0,0.0,0.0,2094.2,3386.2,3386.2,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.9,53.9,21.421,21.421,32.479,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.157,0.0,13.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.16,0.0,0.0,9.099,2.376,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.745,3.645,0.513,7.514,0.631,10.106,-12.669,0.0,0.0,0.0,8.166,-0.067,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.0,852.3,9358.0,2147.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-dse.xml,58.872,58.872,21.458,21.458,37.414,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,24.005,0.0,13.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,16.203,0.0,0.0,9.103,2.279,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.745,3.646,0.513,7.514,0.631,10.108,-12.669,0.0,0.0,0.0,8.168,-0.068,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,1069.3,770.5,8867.6,2034.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-outside.xml,55.441,55.441,21.423,21.423,34.018,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.404,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.357,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.6,1017.3,1375.6,16.511,0.0,0.0,3.746,3.645,0.513,7.509,0.631,10.102,-12.69,0.0,0.0,0.0,8.175,-0.066,4.807,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.277,54.277,21.42,21.42,32.857,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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.948,0.0,13.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,15.982,0.0,0.0,9.105,2.704,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.745,3.646,0.513,7.516,0.631,10.112,-12.663,0.0,0.0,0.0,8.166,-0.07,5.894,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,8810.3,2021.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.218,46.218,21.429,21.429,24.789,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.109,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.987,0.0,0.0,9.08,0.787,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.644,0.513,7.507,0.631,10.101,-12.69,0.0,0.0,0.0,8.177,-0.066,5.889,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.4,721.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.035,54.035,21.422,21.422,32.613,0.0,0.0,0.0,0.0,0.0,0.0,0.146,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.204,0.0,13.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,16.203,0.0,0.0,9.103,2.279,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.745,3.646,0.513,7.514,0.631,10.108,-12.669,0.0,0.0,0.0,8.168,-0.068,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,1069.3,770.5,8867.6,2034.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-jacket-electric.xml,57.883,57.883,35.383,35.383,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.221,0.794,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.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.071,0.0,13.787,9.075,0.295,0.0,0.0,0.0,0.0,2129.6,3363.0,3363.0,23.085,18.844,0.0,3.553,3.643,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.326,-0.064,4.806,0.0,0.729,0.0,4.878,-8.733,-2.499,0.0,-0.032,-0.445,-0.049,2.738,-0.021,-1.345,11.73,0.0,0.0,0.0,-6.252,-0.06,-1.144,-3.806,-0.163,0.0,3.064,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,63.897,63.897,26.792,26.792,37.104,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.321,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,22.902,0.0,14.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.447,0.0,14.2,9.075,2.727,0.0,0.0,0.0,0.0,1464.4,3100.9,3100.9,23.58,19.312,0.0,3.551,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.328,-0.062,5.889,0.0,0.729,0.0,4.965,-9.538,-2.499,0.0,-0.039,-0.447,-0.05,2.732,-0.022,-1.357,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.422,-3.837,-0.163,0.0,3.145,8.405,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.157,56.157,29.456,29.456,26.701,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.806,0.696,3.237,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.005,0.0,12.119,9.128,1.31,0.0,0.0,0.0,0.0,1880.5,3031.4,3031.4,25.325,18.732,0.0,3.522,3.636,0.512,7.509,0.627,10.062,-12.738,0.0,0.0,0.0,8.35,-0.049,4.794,0.0,0.727,0.0,5.643,-5.436,-2.509,0.0,0.024,-0.396,-0.042,2.892,-0.011,-1.211,11.675,0.0,0.0,0.0,-6.001,-0.046,-1.093,-3.45,-0.153,0.0,2.758,5.465,2.001,1354.8,997.6,10779.2,2473.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.83,53.83,21.424,21.424,32.407,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.421,0.0,12.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,16.391,0.0,0.0,9.102,1.921,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.825,0.0,0.0,3.745,3.645,0.513,7.513,0.631,10.105,-12.676,0.0,0.0,0.0,8.17,-0.066,5.891,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,1074.9,775.0,8916.1,2046.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,57.773,57.773,35.488,35.488,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.797,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,8.838,0.615,0.0,0.0,0.0,0.0,2129.1,3368.6,3368.6,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,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,18787.0,5329.0,7037.0,0.0,207.0,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.904,46.904,23.35,23.35,23.555,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,1.925,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.629,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.573,0.0,0.0,9.066,2.829,0.0,5.893,0.0,0.0,2115.1,1482.3,2115.1,16.778,0.0,0.0,3.745,3.645,0.513,7.511,0.631,10.103,-12.678,0.0,0.0,0.0,8.172,-0.066,5.89,0.0,0.729,0.0,0.0,-9.474,-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.5,3919.2,899.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-none.xml,46.71,46.71,24.456,24.456,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.215,0.794,0.0,0.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.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,13.852,0.0,0.0,0.0,0.0,0.0,0.0,1360.8,2958.6,2958.6,23.072,18.86,0.0,3.557,3.646,0.513,7.537,0.631,10.105,-12.683,0.0,0.0,0.0,8.335,-0.063,5.405,0.0,0.0,0.0,4.832,-8.819,-2.499,0.0,-0.037,-0.449,-0.05,2.726,-0.022,-1.358,11.73,0.0,0.0,0.0,-6.271,-0.06,-1.281,-3.829,0.0,0.0,3.063,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,57.945,57.945,35.66,35.66,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.943,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.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,20.87,0.0,13.895,9.017,0.615,0.0,0.0,0.0,0.0,2130.9,3369.5,3369.5,23.033,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.525,57.525,35.24,35.24,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.532,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.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,20.87,0.0,13.895,9.017,0.615,0.0,0.0,0.0,0.0,2116.0,3354.9,3354.9,23.033,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.678,72.678,50.392,50.392,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,3891.3,3891.3,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.826,67.826,45.541,45.541,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,18.601,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,3708.1,3708.1,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.678,72.678,50.392,50.392,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,3891.3,3891.3,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.192,52.192,29.906,29.906,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.25,0.801,2.888,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.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,20.87,0.0,13.909,9.098,0.628,0.0,6.624,0.0,0.0,2096.5,3089.8,3089.8,23.033,18.91,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.73,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.829,-0.163,0.0,3.084,7.888,2.011,1354.7,997.5,10979.3,2519.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-solar-direct-flat-plate.xml,50.752,50.752,28.476,28.476,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.262,0.804,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.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.861,0.0,13.96,9.207,0.695,0.0,8.339,0.0,0.0,2067.2,3093.3,3093.3,23.033,18.939,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.835,-8.913,-2.499,0.0,-0.036,-0.447,-0.05,2.728,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.836,-0.163,0.0,3.092,7.946,2.011,1354.4,997.2,10199.1,2340.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-solar-direct-ics.xml,52.269,52.269,29.983,29.983,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.255,0.803,2.954,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.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,20.87,0.0,13.932,9.133,0.65,0.0,6.611,0.0,0.0,2119.2,3092.1,3092.1,23.034,18.929,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.83,-0.163,0.0,3.088,7.91,2.011,1354.8,997.6,10721.6,2460.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-fraction.xml,52.366,52.366,29.812,29.812,22.554,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.215,0.793,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.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,21.122,0.0,13.76,9.075,0.215,0.0,5.899,0.0,0.0,1765.6,3369.2,3369.2,23.1,18.831,0.0,3.554,3.644,0.513,7.531,0.631,10.097,-12.69,0.0,0.0,0.0,8.329,-0.062,4.806,0.0,0.729,0.0,4.889,-8.691,-2.5,0.0,-0.031,-0.443,-0.049,2.741,-0.021,-1.344,11.724,0.0,0.0,0.0,-6.247,-0.058,-1.143,-3.801,-0.163,0.0,3.059,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.482,50.482,28.56,28.56,21.923,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.362,0.828,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.923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.53,0.0,14.392,9.186,0.683,0.0,8.337,0.0,0.0,2107.1,3126.8,3126.8,23.067,19.217,0.0,3.559,3.645,0.513,7.538,0.63,10.097,-12.669,0.0,0.0,0.0,8.323,-0.061,4.806,0.0,0.729,0.0,4.767,-9.207,-2.496,0.0,-0.047,-0.455,-0.051,2.709,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.301,-0.057,-1.159,-3.9,-0.165,0.0,3.167,8.472,2.013,1354.2,997.1,10324.1,2369.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-solar-thermosyphon-flat-plate.xml,50.468,50.468,28.191,28.191,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.261,0.804,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.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,13.957,9.2,0.691,0.0,8.3,0.0,0.0,2067.6,3061.2,3061.2,23.033,18.939,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.835,-8.912,-2.499,0.0,-0.036,-0.447,-0.05,2.728,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.836,-0.163,0.0,3.092,7.942,2.011,1354.4,997.2,10241.0,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.631,64.631,26.844,26.844,22.506,0.0,0.0,0.0,0.0,15.282,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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,57.977,57.977,35.698,35.698,22.279,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.801,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.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.864,0.0,13.898,9.049,0.624,0.0,0.0,0.0,0.0,2529.3,3391.5,3391.5,23.009,18.891,0.0,3.555,3.644,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.807,0.0,0.729,0.0,4.835,-8.908,-2.499,0.0,-0.036,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.06,-1.147,-3.829,-0.163,0.0,3.082,7.879,2.011,1354.8,997.6,11206.3,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.02,58.02,35.786,35.786,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.253,0.802,9.089,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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,13.921,9.075,0.692,0.0,0.0,0.0,0.0,2172.7,3547.3,3547.3,23.02,18.908,0.0,3.557,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.827,-8.947,-2.499,0.0,-0.035,-0.447,-0.049,2.729,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.833,-0.163,0.0,3.086,7.909,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.356,66.356,26.638,26.638,39.718,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.303,64.303,26.808,26.808,37.495,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.335,0.821,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.781,0.0,14.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.334,0.0,14.26,9.075,2.98,0.0,0.0,0.0,0.0,1464.3,3104.0,3104.0,23.55,19.341,0.0,3.553,3.645,0.513,7.533,0.631,10.1,-12.683,0.0,0.0,0.0,8.329,-0.062,5.89,0.0,0.729,0.0,4.941,-9.636,-2.499,0.0,-0.04,-0.449,-0.05,2.728,-0.022,-1.36,11.73,0.0,0.0,0.0,-6.268,-0.058,-1.424,-3.849,-0.164,0.0,3.155,8.486,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.303,64.303,26.808,26.808,37.495,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.335,0.821,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.781,0.0,14.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.334,0.0,14.26,9.075,2.98,0.0,0.0,0.0,0.0,1464.3,3104.0,3104.0,23.55,19.341,0.0,3.553,3.645,0.513,7.533,0.631,10.1,-12.683,0.0,0.0,0.0,8.329,-0.062,5.89,0.0,0.729,0.0,4.941,-9.636,-2.499,0.0,-0.04,-0.449,-0.05,2.728,-0.022,-1.36,11.73,0.0,0.0,0.0,-6.268,-0.058,-1.424,-3.849,-0.164,0.0,3.155,8.486,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.631,64.631,26.844,26.844,37.788,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.506,0.0,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.116,56.116,28.616,28.616,27.499,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.741,0.682,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.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,11.846,9.216,1.417,0.0,0.0,0.0,0.0,1856.0,3030.5,3030.5,26.694,18.667,0.0,3.507,3.634,0.511,7.505,0.629,10.083,-12.706,0.0,0.0,0.0,8.342,-0.062,4.799,0.0,0.727,0.0,5.801,-4.87,-2.509,0.0,0.036,-0.382,-0.04,2.928,-0.005,-1.136,11.708,0.0,0.0,0.0,-5.941,-0.058,-1.066,-3.317,-0.152,0.0,2.679,5.085,2.0,1354.8,997.6,9995.2,2293.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-operating-mode-heat-pump-only.xml,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.72,0.676,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.771,0.0,11.759,9.132,1.309,0.0,0.0,0.0,0.0,1854.5,3384.8,3384.8,25.444,18.84,0.0,3.517,3.635,0.511,7.509,0.628,10.067,-12.724,0.0,0.0,0.0,8.355,-0.047,4.795,0.0,0.727,0.0,5.793,-4.847,-2.51,0.0,0.04,-0.384,-0.041,2.935,-0.006,-1.165,11.689,0.0,0.0,0.0,-5.944,-0.043,-1.077,-3.398,-0.15,0.0,2.681,5.084,1.999,1354.8,997.6,10745.7,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.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.075,56.075,33.374,33.374,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3278.6,3278.6,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.72,0.676,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.771,0.0,11.759,9.132,1.309,0.0,0.0,0.0,0.0,1854.5,3384.8,3384.8,25.444,18.84,0.0,3.517,3.635,0.511,7.509,0.628,10.067,-12.724,0.0,0.0,0.0,8.355,-0.047,4.795,0.0,0.727,0.0,5.793,-4.847,-2.51,0.0,0.04,-0.384,-0.041,2.935,-0.006,-1.165,11.689,0.0,0.0,0.0,-5.944,-0.043,-1.077,-3.398,-0.15,0.0,2.681,5.084,1.999,1354.8,997.6,10745.7,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.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.774,51.774,27.728,27.728,24.047,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.062,0.757,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.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.519,0.0,13.145,9.108,0.603,0.0,5.92,0.0,0.0,1856.4,3135.7,3135.7,25.408,18.877,0.0,3.543,3.64,0.512,7.52,0.629,10.078,-12.705,0.0,0.0,0.0,8.33,-0.054,4.8,0.0,0.728,0.0,5.165,-7.514,-2.501,0.0,-0.009,-0.426,-0.047,2.793,-0.017,-1.3,11.708,0.0,0.0,0.0,-6.161,-0.051,-1.126,-3.666,-0.159,0.0,2.942,6.881,2.009,474.2,349.2,3821.8,877.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-with-solar.xml,51.285,51.285,28.322,28.322,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.394,0.836,1.109,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.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,14.538,9.022,1.967,0.0,8.046,0.0,0.0,1896.1,3141.1,3141.1,25.085,19.317,0.0,3.556,3.646,0.513,7.539,0.63,10.092,-12.686,0.0,0.0,0.0,8.338,-0.056,4.806,0.0,0.729,0.0,4.959,-8.421,-2.498,0.0,-0.042,-0.449,-0.05,2.725,-0.024,-1.374,11.727,0.0,0.0,0.0,-6.263,-0.052,-1.153,-3.893,-0.164,0.0,3.186,8.558,2.011,1354.4,997.3,11681.5,2680.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.xml,56.198,56.198,29.584,29.584,26.613,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.798,0.695,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.919,0.0,12.099,9.12,1.72,0.0,0.0,0.0,0.0,1874.8,3266.4,3266.4,23.533,19.025,0.0,3.526,3.638,0.512,7.512,0.627,10.061,-12.745,0.0,0.0,0.0,8.354,-0.048,4.795,0.0,0.727,0.0,5.628,-5.522,-2.509,0.0,0.026,-0.397,-0.042,2.889,-0.011,-1.216,11.668,0.0,0.0,0.0,-6.004,-0.044,-1.095,-3.485,-0.152,0.0,2.731,5.541,2.001,1354.8,997.6,10838.9,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.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5540.9,5540.9,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.148,35.148,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,2003.7,3403.2,3403.2,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,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.631,64.631,26.844,26.844,22.506,15.282,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.631,64.631,26.844,26.844,22.506,0.0,0.0,15.282,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.51,60.51,26.638,26.638,33.872,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.611,58.611,35.911,35.911,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3435.7,3435.7,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.506,58.506,35.806,35.806,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3431.3,3431.3,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.611,58.611,35.911,35.911,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3435.7,3435.7,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,58.999,58.999,26.638,26.638,32.362,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.257,53.257,26.638,26.638,26.619,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,50.967,50.967,27.065,27.065,23.902,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.302,0.814,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.337,0.0,1.565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.918,0.0,14.132,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3110.2,3110.2,23.167,19.076,0.0,3.556,3.645,0.513,7.534,0.631,10.098,-12.683,0.0,0.0,0.0,8.329,-0.061,4.807,0.0,0.729,0.0,4.847,-8.879,-2.498,0.0,-0.039,-0.449,-0.05,2.725,-0.023,-1.365,11.73,0.0,0.0,0.0,-6.273,-0.057,-1.151,-3.856,-0.164,0.0,3.124,8.132,2.011,1344.8,989.3,9808.7,2250.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.534,60.534,26.638,26.638,33.896,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.534,60.534,26.638,26.638,22.701,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.425,65.425,40.674,40.674,24.751,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,6.215,1.242,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.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,23.081,0.0,21.529,9.053,0.61,0.0,0.0,0.0,0.0,2295.2,4526.0,4526.0,30.686,27.988,0.0,3.866,7.603,1.094,5.878,0.689,20.501,-24.885,0.0,0.0,0.867,6.708,-0.182,8.998,0.0,0.763,0.0,3.301,-9.755,-2.933,0.0,-0.078,-1.01,-0.101,1.883,-0.02,-1.465,23.449,0.0,0.0,-0.135,-4.742,-0.173,-1.895,-7.243,-0.158,0.0,2.801,8.478,2.336,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.394,73.394,43.956,43.956,29.438,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,6.08,1.21,8.861,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.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.454,0.0,20.959,8.989,0.613,0.0,0.0,0.0,0.0,2519.0,4649.4,4649.4,33.941,28.117,0.0,3.777,7.887,1.072,7.923,0.668,20.532,-25.194,0.0,0.0,0.0,9.057,-0.137,11.175,0.0,0.748,0.0,3.876,-10.96,-3.543,0.0,-0.046,-0.992,-0.094,2.72,-0.016,-1.955,23.371,0.0,0.0,0.0,-6.359,-0.127,-2.414,-7.538,-0.159,0.0,2.718,9.397,2.83,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.678,54.678,30.405,30.405,24.273,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,3.951,0.73,5.474,0.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.273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.732,0.0,12.806,5.267,0.616,0.0,0.0,0.0,0.0,1702.0,3224.0,3224.0,23.625,18.244,0.0,3.533,3.635,0.511,7.499,0.63,10.082,-12.698,0.0,0.0,0.0,8.305,-0.064,4.804,0.0,0.727,0.0,5.232,-7.29,-2.504,0.0,0.001,-0.416,-0.045,2.822,-0.013,-1.251,11.715,0.0,0.0,0.0,-6.117,-0.06,-1.115,-3.598,-0.159,0.0,2.905,6.288,2.006,939.7,637.0,6162.0,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.369,56.369,33.093,33.093,23.276,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.097,0.765,7.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.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.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.798,0.0,13.346,7.212,0.615,0.0,0.0,0.0,0.0,2063.0,3318.0,3318.0,23.329,18.569,0.0,3.544,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.315,-0.062,4.804,0.0,0.728,0.0,5.035,-8.097,-2.5,0.0,-0.017,-0.432,-0.047,2.777,-0.018,-1.305,11.723,0.0,0.0,0.0,-6.193,-0.058,-1.132,-3.712,-0.161,0.0,2.994,7.081,2.009,1147.2,817.3,8666.8,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.598,59.598,38.291,38.291,21.308,0.0,0.0,0.0,0.0,0.0,0.0,0.352,0.0,0.0,4.4,0.837,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.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.954,0.0,14.455,10.898,0.614,0.0,0.0,0.0,0.0,2184.1,3671.9,3671.9,22.735,19.222,0.0,3.568,3.65,0.514,7.55,0.631,10.108,-12.676,0.0,0.0,0.0,8.341,-0.061,4.808,0.0,0.731,0.0,4.641,-9.709,-2.497,0.0,-0.053,-0.461,-0.051,2.687,-0.026,-1.404,11.737,0.0,0.0,0.0,-6.332,-0.057,-1.163,-3.942,-0.166,0.0,3.17,8.67,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.195,61.195,40.856,40.856,20.34,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.558,0.875,12.384,0.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.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,19.047,0.0,15.027,12.694,0.613,0.0,0.0,0.0,0.0,2527.7,3848.9,3848.9,22.438,19.545,0.0,3.581,3.656,0.515,7.57,0.633,10.127,-12.669,0.0,0.0,0.0,8.363,-0.063,4.813,0.0,0.733,0.0,4.445,-10.517,-2.496,0.0,-0.071,-0.475,-0.053,2.644,-0.03,-1.447,11.744,0.0,0.0,0.0,-6.394,-0.059,-1.177,-4.059,-0.168,0.0,3.259,9.462,2.013,1770.0,1358.2,16181.1,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.121,74.121,36.244,36.244,37.877,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.467,0.855,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.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,14.804,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3550.3,3550.3,29.35,19.593,0.0,17.295,3.593,0.505,7.261,0.621,9.962,-12.802,0.0,0.0,0.0,7.769,-0.077,4.847,0.0,0.734,0.0,6.981,-9.069,-2.542,0.0,0.171,-0.316,-0.031,2.926,0.011,-0.954,11.611,0.0,0.0,0.0,-6.041,-0.067,-0.997,-3.569,-0.139,0.0,2.714,7.714,1.967,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.006,67.006,29.235,29.235,37.771,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.621,0.644,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.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,35.377,0.0,11.026,9.182,0.621,0.0,0.0,0.0,0.0,1765.2,3434.2,3434.2,29.151,21.511,0.0,3.488,3.657,0.0,0.0,0.673,9.524,-13.013,0.0,0.0,29.112,0.0,-0.21,2.054,0.0,0.788,0.0,7.866,-7.475,-1.576,0.0,0.417,-0.07,0.0,0.0,0.095,0.915,10.955,0.0,0.0,-7.98,0.0,-0.205,-0.258,-2.064,-0.085,0.0,2.681,5.729,1.071,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.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.8,2717.8,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.404,59.404,35.71,35.71,23.694,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.23,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,23.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,22.189,0.0,13.807,9.075,0.615,0.0,0.0,0.0,0.0,2134.2,3394.0,3394.0,23.768,19.124,0.0,3.544,3.642,0.513,7.527,0.63,10.093,-12.69,0.0,0.0,0.0,8.332,-0.061,5.886,0.0,0.728,0.0,5.117,-8.911,-2.5,0.0,-0.028,-0.439,-0.048,2.759,-0.02,-1.329,11.724,0.0,0.0,0.0,-6.22,-0.057,-1.409,-3.762,-0.162,0.0,3.08,7.868,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,18787.0,5329.0,7037.0,0.0,207.0,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.216,58.216,35.684,35.684,22.533,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.224,0.795,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.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,21.101,0.0,13.801,9.075,0.615,0.0,0.0,0.0,0.0,2110.9,3365.3,3365.3,23.045,18.86,0.0,3.551,3.64,0.512,7.523,0.864,10.09,-12.683,0.0,0.0,0.0,8.316,-0.063,4.805,0.0,0.729,0.0,4.883,-8.907,-2.499,0.0,-0.032,-0.444,-0.049,2.738,-0.151,-1.343,11.73,0.0,0.0,0.0,-6.25,-0.06,-1.144,-3.81,-0.163,0.0,3.06,7.872,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.124,58.124,35.544,35.544,22.58,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.109,0.768,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.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,21.146,0.0,13.33,9.075,0.615,0.0,0.0,0.0,0.0,2116.9,3320.7,3320.7,22.984,18.347,0.0,3.548,3.639,0.512,7.512,0.629,10.003,-12.276,0.0,0.0,0.0,8.29,-0.062,4.804,0.0,0.729,0.0,4.886,-8.91,-2.5,0.0,-0.016,-0.433,-0.047,2.763,-0.018,-1.365,11.099,0.0,0.0,0.0,-6.203,-0.058,-1.139,-3.765,-0.162,0.0,2.961,7.869,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,57.922,57.922,35.55,35.55,22.372,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.116,0.771,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.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,20.95,0.0,13.359,9.075,0.615,0.0,0.0,0.0,0.0,2115.6,3252.1,3252.1,22.859,17.865,0.0,3.669,3.643,0.513,7.526,0.63,10.093,-12.69,0.0,0.0,0.0,8.321,-0.061,4.806,0.0,0.729,0.0,4.84,-8.908,-2.5,0.0,-0.284,-0.441,-0.049,2.744,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.241,-0.057,-1.144,-3.805,-0.163,0.0,2.741,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.485,60.485,36.788,36.788,23.697,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.106,1.0,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.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,22.191,0.0,17.42,9.075,0.613,0.0,0.0,0.0,0.0,2132.5,3704.2,3704.2,24.757,21.883,0.0,3.552,3.66,0.515,7.585,0.634,10.134,-12.625,2.717,-2.174,0.0,8.483,-0.067,4.816,0.0,0.732,0.0,5.148,-8.887,-2.495,0.0,-0.125,-0.499,-0.057,2.626,-0.035,-1.481,11.705,-0.056,3.749,0.0,-6.54,-0.063,-1.164,-4.01,-0.168,0.0,3.873,7.89,2.014,1354.8,997.6,11171.6,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.133,59.133,35.756,35.756,23.377,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.271,0.805,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.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.892,0.0,13.975,9.075,0.615,0.0,0.0,0.0,0.0,2133.6,3403.2,3403.2,23.651,19.16,0.0,3.537,3.64,0.512,7.526,0.63,10.088,-12.677,1.147,-0.32,0.0,8.331,-0.063,4.806,0.0,0.729,0.0,5.052,-8.906,-2.499,0.0,-0.034,-0.441,-0.049,2.749,-0.02,-1.334,11.724,-0.494,0.432,0.0,-6.241,-0.059,-1.14,-3.78,-0.162,0.0,3.113,7.872,2.01,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,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.492,58.492,36.447,36.447,22.046,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,4.85,0.941,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.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,0.0,0.0,20.644,0.0,16.387,9.075,0.613,0.0,0.0,0.0,0.0,2127.3,3634.7,3634.7,23.618,21.267,0.0,3.568,3.662,0.515,7.585,0.634,10.137,-12.642,0.857,-1.409,0.0,8.449,-0.062,4.814,0.0,0.732,0.0,4.805,-8.885,-2.496,0.0,-0.106,-0.493,-0.056,2.63,-0.034,-1.48,11.715,0.259,2.537,0.0,-6.498,-0.058,-1.172,-4.028,-0.168,0.0,3.618,7.892,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.242,58.242,36.543,36.543,21.699,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,4.933,0.961,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.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.32,0.0,16.739,9.075,0.613,0.0,0.0,0.0,0.0,2126.9,3634.8,3634.8,23.534,21.34,0.0,3.574,3.667,0.516,7.597,0.636,10.153,-12.632,0.765,-1.651,0.0,8.477,-0.066,4.817,0.0,0.732,0.0,4.738,-8.884,-2.495,0.0,-0.118,-0.502,-0.057,2.608,-0.036,-1.499,11.716,0.262,2.975,0.0,-6.544,-0.062,-1.176,-4.071,-0.169,0.0,3.686,7.893,2.015,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,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.271,40.271,29.28,29.28,10.991,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.847,0.712,9.41,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.286,0.0,12.105,9.295,0.607,0.0,0.0,0.0,0.0,1718.3,2518.2,2518.2,13.175,13.013,0.0,3.948,3.841,0.0,0.0,0.692,10.086,-12.096,0.0,0.0,0.0,7.997,-0.151,2.659,0.0,0.776,0.0,0.295,-6.812,-1.453,0.0,-0.079,-0.592,0.0,0.0,-0.018,-0.665,12.16,0.0,0.0,0.0,-1.595,-0.149,-0.58,-3.572,-0.166,0.0,0.081,6.378,1.194,1354.8,997.6,11171.5,2952.7,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.782,57.782,35.653,35.653,22.129,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.203,0.792,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.129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.723,0.0,13.743,9.075,0.615,0.0,0.0,0.0,0.0,2110.8,3331.8,3331.8,22.901,18.548,0.0,3.556,3.642,0.513,7.509,0.63,10.115,-12.697,0.0,0.0,0.0,8.294,-0.097,4.801,0.0,0.728,0.0,4.79,-8.907,-2.499,0.0,-0.028,-0.442,-0.049,2.746,-0.021,-1.371,11.731,0.0,0.0,0.0,-6.248,-0.093,-1.15,-3.899,-0.163,0.0,3.014,7.872,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-walltypes.xml,74.812,74.812,34.503,34.503,40.308,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.014,0.525,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.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.736,0.0,8.915,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2683.2,2683.2,25.831,12.575,0.0,3.348,16.961,0.473,7.156,0.836,1.284,-1.612,0.0,0.0,0.0,7.375,-0.047,4.828,0.0,0.732,0.0,7.807,-9.158,-2.566,0.0,0.296,-0.602,-0.008,3.41,-0.083,-0.163,1.409,0.0,0.0,0.0,-4.917,-0.042,-0.96,-0.491,-0.123,0.0,1.743,7.628,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,56.99,56.99,34.63,34.63,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,3.38,0.585,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,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.94,0.0,10.035,9.075,0.617,0.0,0.0,0.0,0.0,2130.9,3650.2,3650.2,23.032,18.373,0.0,3.555,3.644,0.513,7.539,0.631,10.097,-12.683,0.0,0.0,0.0,8.375,-0.06,4.806,0.0,0.729,0.0,4.853,-8.905,-2.499,0.0,0.048,-0.382,-0.04,2.94,-0.006,-1.156,11.73,0.0,0.0,0.0,-5.964,-0.056,-1.073,-8.204,-0.153,0.0,2.584,7.877,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-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 -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.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.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.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.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.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.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 -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.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.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.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 -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.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.214,34.214,34.214,34.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.052,0.825,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.156,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2807.6,2807.6,0.0,16.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.034,-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.02,-0.167,0.0,2.23,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.886,40.886,40.886,40.886,0.0,0.0,0.0,0.0,0.0,0.0,6.195,0.621,0.0,0.0,2.787,0.99,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.535,0.0,13.846,9.075,0.615,0.0,0.0,0.0,0.0,3397.9,2723.1,3397.9,23.097,16.191,0.0,3.543,3.603,0.507,7.843,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,4.107,-8.928,-2.504,0.0,0.0,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.398,-0.062,-1.155,-3.088,-0.163,0.0,2.124,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,36.688,36.688,36.688,36.688,0.0,0.0,0.0,0.0,0.0,0.0,5.553,0.867,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,20.155,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3552.4,1622.1,3552.4,22.926,0.0,0.0,3.579,3.648,0.513,7.512,0.632,10.113,-12.683,0.0,0.0,0.0,8.147,-0.069,4.809,0.0,0.73,0.0,4.278,-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,40.308,40.308,40.308,40.308,0.0,0.0,0.0,0.0,0.0,0.0,5.447,0.555,0.0,0.0,3.038,0.976,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.693,0.0,13.374,9.075,0.614,0.0,0.0,0.0,0.0,3447.2,2718.2,3447.2,22.118,16.251,0.0,3.597,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.639,-8.906,-2.499,0.0,-0.01,-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.102,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.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,42.513,42.513,42.513,42.513,0.0,0.0,0.0,0.0,0.0,0.0,7.047,0.568,0.0,0.0,3.673,0.933,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.752,0.0,13.952,9.075,0.614,0.0,0.0,0.0,0.0,3720.9,2939.3,3720.9,23.178,17.502,0.0,3.56,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.729,0.0,4.727,-8.906,-2.499,0.0,-0.036,-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.105,-0.166,0.0,2.695,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.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.365,66.365,52.127,52.127,7.057,3.551,3.63,0.0,0.0,0.0,13.629,0.871,0.22,0.009,6.552,0.553,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.397,0.229,19.54,9.075,0.614,0.0,0.0,0.0,15.0,6589.4,4003.9,6589.4,37.978,22.419,0.0,3.422,3.644,0.513,7.527,0.631,10.099,-12.696,0.0,0.0,0.0,8.326,-0.062,5.887,0.0,0.728,0.0,15.428,-8.916,-2.502,0.0,-0.136,-0.455,-0.051,2.713,-0.024,-1.38,11.716,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.09,-0.164,0.0,8.461,7.862,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.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.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 +base-enclosure-windows-physical-properties.xml,65.81,65.81,35.847,35.847,29.963,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.259,0.798,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,29.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,13.818,9.075,0.617,0.0,0.0,0.0,0.0,2149.7,3634.7,3634.7,27.766,21.326,0.0,3.494,3.635,0.511,7.503,0.631,19.611,-16.819,0.0,0.0,0.0,8.424,-0.077,4.828,0.0,0.732,0.0,6.38,-8.97,-2.513,0.0,0.033,-0.375,-0.039,2.86,-0.002,-4.867,14.292,0.0,0.0,0.0,-6.116,-0.071,-1.06,-3.446,-0.152,0.0,3.182,7.811,1.997,1354.8,997.6,11171.6,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,57.919,57.919,35.734,35.734,22.184,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.269,0.806,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.775,0.0,14.006,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.558,3.645,0.513,7.518,0.631,10.104,-12.683,0.0,0.0,0.0,8.268,-0.07,4.808,0.0,0.729,0.0,4.815,-8.905,-2.499,0.0,-0.053,-0.464,-0.052,2.669,-0.026,-1.259,12.141,0.0,0.0,0.0,-6.406,-0.066,-1.163,-3.964,-0.166,0.0,3.101,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-windows-shading.xml,57.704,57.704,33.319,33.319,24.385,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.27,0.345,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.837,0.0,5.871,9.075,0.623,0.0,0.0,0.0,0.0,2131.5,2548.6,2548.6,23.076,11.261,0.0,3.584,3.691,0.519,7.567,0.639,10.659,-11.792,0.0,0.0,0.0,8.543,-0.047,4.876,0.0,0.741,0.0,5.223,-9.159,-2.563,0.0,0.38,-0.087,0.001,3.589,0.062,-3.516,2.907,0.0,0.0,0.0,-4.558,-0.043,-0.887,-2.623,-0.115,0.0,1.351,7.628,1.946,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,58.966,58.966,35.142,35.142,23.825,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.765,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.312,0.0,11.915,9.075,0.616,0.0,0.0,0.0,0.0,2111.0,3297.5,3297.5,22.493,16.922,0.0,3.514,3.609,0.508,7.425,0.622,8.598,-9.444,0.0,0.0,0.0,8.054,-0.058,4.791,0.0,0.726,0.0,5.097,-8.925,-2.504,0.0,0.036,-0.393,-0.042,2.866,-0.009,-0.691,8.684,0.0,0.0,0.0,-5.977,-0.054,-1.118,-3.587,-0.157,0.0,2.66,7.855,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.5,47.5,30.162,30.162,17.338,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.651,0.892,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,17.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.243,0.0,15.442,9.182,0.607,0.0,0.0,0.0,2.0,1739.2,3434.2,3434.2,20.513,21.806,0.0,3.812,3.818,0.0,0.0,0.769,10.528,-11.315,0.0,0.0,10.184,0.0,-0.479,2.065,0.0,0.786,0.0,3.901,-6.748,-1.425,0.0,-0.088,-0.571,0.0,0.0,0.034,-0.124,12.654,0.0,0.0,-3.75,0.0,-0.472,-0.403,-2.739,-0.159,0.0,3.593,6.442,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.209,52.209,32.438,32.438,19.771,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.278,0.807,9.251,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.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,18.515,0.0,13.997,9.204,0.614,0.0,0.0,0.0,0.0,1905.4,3536.0,3536.0,21.426,19.426,0.0,3.662,4.741,0.514,5.516,0.701,9.842,-12.609,0.0,0.0,0.835,6.148,-0.04,3.261,0.0,0.735,0.0,4.446,-7.703,-1.886,0.0,-0.017,-0.627,-0.054,1.951,-0.039,-1.133,11.679,0.0,0.0,-0.124,-4.56,-0.037,-0.772,-3.673,-0.165,0.0,3.254,6.953,1.519,1354.8,997.6,11171.5,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.269,49.269,29.252,29.252,20.017,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.875,0.713,9.204,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.747,0.0,12.07,9.182,0.608,0.0,0.0,0.0,0.0,1746.6,3036.4,3036.4,24.177,17.847,0.0,3.99,5.377,0.0,0.0,0.756,8.722,-11.142,0.0,0.0,10.28,0.0,-0.361,2.07,0.0,0.794,0.0,6.174,-6.867,-1.454,0.0,0.311,-0.594,0.0,0.0,0.042,0.089,9.552,0.0,0.0,-3.432,0.0,-0.355,-0.39,-2.509,-0.144,0.0,2.224,6.325,1.193,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.897,48.897,29.259,29.259,19.638,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.885,0.715,9.204,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,18.392,0.0,12.122,9.182,0.607,0.0,0.0,0.0,0.0,1745.5,3032.0,3032.0,24.024,17.806,0.0,3.994,5.384,0.0,0.0,0.757,8.737,-11.129,0.0,0.0,9.983,0.0,-0.359,2.071,0.0,0.794,0.0,6.061,-6.861,-1.453,0.0,0.302,-0.604,0.0,0.0,0.041,0.073,9.566,0.0,0.0,-3.353,0.0,-0.353,-0.393,-2.529,-0.145,0.0,2.23,6.331,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.282,77.282,37.014,37.014,40.269,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.06,0.993,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,40.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,37.713,0.0,17.285,9.075,0.618,0.0,0.0,0.0,3.0,2139.6,3634.7,3634.7,33.388,22.025,0.0,3.435,3.66,0.521,19.574,0.65,10.142,-12.837,0.0,0.0,0.0,8.759,-0.109,6.087,0.0,0.74,0.0,8.283,-9.116,-2.556,0.0,0.05,-0.357,-0.044,3.821,-0.003,-0.965,11.574,0.0,0.0,0.0,-4.469,-0.101,-1.212,-4.011,-0.137,0.0,3.677,7.666,1.954,1354.8,997.6,11171.6,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.285,55.285,36.22,36.22,19.066,0.0,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,4.704,0.91,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,19.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.852,0.0,15.851,9.075,0.612,0.0,0.0,0.0,0.0,2120.4,3560.1,3560.1,22.288,20.664,0.0,3.64,3.708,0.522,8.235,0.645,10.28,-12.652,0.0,0.0,0.0,4.792,-0.067,4.848,0.0,0.735,0.0,4.214,-8.892,-2.497,0.0,-0.086,-0.485,-0.055,2.215,-0.032,-1.47,11.761,0.0,0.0,0.0,-3.672,-0.062,-1.162,-4.121,-0.167,0.0,3.426,7.884,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.858,56.858,35.907,35.907,20.951,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,4.426,0.843,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.619,0.0,14.654,9.075,0.614,0.0,0.0,0.0,0.0,2123.3,3461.8,3461.8,22.76,19.752,0.0,3.583,3.664,0.516,7.834,0.635,10.15,-12.669,0.0,0.0,0.0,6.885,-0.061,4.814,0.0,0.731,0.0,4.582,-8.892,-2.496,0.0,-0.06,-0.466,-0.052,2.545,-0.027,-1.414,11.744,0.0,0.0,0.0,-5.268,-0.056,-1.158,-3.931,-0.165,0.0,3.217,7.885,2.013,1354.8,997.6,11171.5,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.81,56.81,35.28,35.28,21.529,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.913,0.719,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.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.161,0.0,12.44,9.075,0.615,0.0,0.0,0.0,0.0,2128.4,3541.7,3541.7,23.225,18.708,0.0,3.587,3.672,0.517,6.119,0.637,10.174,-12.694,0.0,0.0,0.0,8.986,-0.065,4.83,0.0,0.734,0.0,4.712,-8.91,-2.501,0.0,0.021,-0.403,-0.043,1.124,-0.012,-1.234,11.72,0.0,0.0,0.0,-6.447,-0.06,-1.117,-3.536,-0.159,0.0,2.872,7.868,2.009,1354.8,997.6,11171.5,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.743,46.743,28.73,28.73,18.013,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.467,0.625,9.211,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.856,0.0,10.662,9.182,0.615,0.0,0.0,0.0,0.0,1720.5,2369.3,2369.3,15.899,11.707,0.0,3.711,3.607,0.507,5.114,0.622,9.795,-12.66,0.0,0.0,0.0,10.013,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.042,-0.455,-0.051,1.813,-0.024,-1.171,11.693,0.0,0.0,0.0,-3.767,-0.048,-0.825,-3.657,-0.162,0.0,0.0,6.309,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.293,42.293,29.585,29.585,12.708,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.257,0.806,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.708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.897,0.0,13.759,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3028.7,3028.7,15.204,15.253,0.0,3.987,3.873,0.0,0.0,0.781,10.597,-11.184,0.0,0.0,5.313,0.0,-0.387,2.587,0.0,0.0,0.0,1.989,-4.616,-1.421,0.0,-0.127,-0.701,0.0,0.0,-0.009,-0.408,12.785,0.0,0.0,-0.674,0.0,-0.383,-0.558,-3.053,0.0,0.0,1.668,4.25,1.226,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.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,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.468,43.468,29.72,29.72,13.747,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.338,0.825,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.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.871,0.0,14.125,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.992,3.873,0.0,0.0,0.78,10.643,-11.238,0.0,0.0,5.935,0.0,-0.399,2.591,0.0,0.0,0.0,2.406,-4.632,-1.425,0.0,-0.103,-0.682,0.0,0.0,-0.006,-0.407,12.731,0.0,0.0,-0.574,0.0,-0.394,-0.546,-3.037,0.0,0.0,1.944,4.233,1.222,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.792,40.792,29.146,29.146,11.646,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.904,0.723,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.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.903,0.0,12.248,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2618.9,2618.9,14.652,13.98,0.0,3.98,3.841,0.0,0.0,0.77,10.6,-11.048,0.0,0.0,4.439,0.0,-0.412,2.588,0.0,0.0,0.0,1.777,-4.589,-1.411,0.0,-0.105,-0.658,0.0,0.0,0.018,-0.387,12.921,0.0,0.0,-2.075,0.0,-0.408,-0.564,-2.892,0.0,0.0,1.149,4.277,1.237,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.429,48.429,28.801,28.801,19.628,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.572,0.643,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.371,0.0,10.91,9.126,0.639,0.0,0.0,0.0,0.0,1722.9,2460.7,2460.7,16.593,12.553,0.0,3.739,3.636,0.0,0.0,0.637,9.325,-12.477,0.0,0.0,14.533,0.0,-0.047,2.468,0.0,0.0,0.0,2.551,-4.777,-1.481,0.0,0.067,-0.435,0.0,0.0,-0.014,-0.416,11.491,0.0,0.0,-2.75,0.0,-0.046,-0.513,-2.855,0.0,0.0,1.316,4.089,1.166,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.369,42.369,29.619,29.619,12.75,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.277,0.811,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.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,11.937,0.0,13.852,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.978,3.837,0.0,0.0,0.761,10.536,-11.163,0.0,0.0,5.365,0.0,-0.389,2.585,0.0,0.0,0.0,2.09,-4.609,-1.419,0.0,-0.107,-0.66,0.0,0.0,0.008,-0.445,12.805,0.0,0.0,-0.728,0.0,-0.385,-0.56,-3.054,0.0,0.0,1.746,4.257,1.229,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.23,40.23,29.718,29.718,10.513,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.296,0.819,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.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,9.843,0.0,13.953,9.182,0.709,0.0,0.0,0.0,0.0,1705.8,2829.2,2829.2,14.329,14.748,0.0,3.962,3.818,0.0,0.0,0.782,10.661,-10.715,0.0,0.0,4.564,0.0,-0.459,2.051,0.0,0.775,0.0,1.605,-6.206,-1.378,0.0,-0.22,-0.781,0.0,0.0,0.005,-0.619,13.254,0.0,0.0,-2.063,0.0,-0.455,-0.477,-3.148,-0.195,0.0,1.293,6.378,1.269,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.226,42.226,29.827,29.827,12.399,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,0.0,4.309,0.819,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.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.609,0.0,13.918,9.182,0.778,0.0,0.0,0.0,0.0,1721.9,2790.7,2790.7,15.473,15.545,0.0,3.955,3.796,0.0,0.0,0.759,10.502,-10.969,0.0,0.0,6.708,0.0,-0.447,1.849,0.0,0.781,0.0,2.0,-6.309,-1.403,0.0,-0.123,-0.672,0.0,0.0,0.022,-0.439,12.999,0.0,0.0,-2.485,0.0,-0.442,-0.388,-3.058,-0.18,0.0,1.457,6.275,1.244,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.141,42.141,29.67,29.67,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.175,0.787,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.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,11.676,0.0,13.332,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3082.9,3082.9,15.482,15.239,0.0,3.965,3.819,0.0,0.0,0.767,10.553,-11.032,0.0,0.0,6.732,0.0,-0.433,1.849,0.0,0.782,0.0,2.014,-6.325,-1.407,0.0,-0.107,-0.669,0.0,0.0,0.016,-0.41,12.937,0.0,0.0,-3.003,0.0,-0.428,-0.384,-2.984,-0.177,0.0,1.331,6.258,1.24,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,63.97,63.97,36.07,36.07,27.9,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.465,0.85,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.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.128,0.0,14.748,9.075,0.616,0.0,0.0,0.0,0.0,2147.3,3575.9,3575.9,26.753,20.77,0.0,3.539,3.7,0.522,7.386,0.649,10.889,-12.928,0.0,0.0,0.0,10.19,-0.066,6.632,0.0,0.729,0.0,5.965,-8.932,-2.505,0.0,-0.084,-0.502,-0.058,1.488,-0.029,-1.491,12.043,0.0,0.0,0.0,-3.631,-0.06,-1.498,-4.183,-0.159,0.0,3.222,7.848,2.005,1354.8,997.6,11171.5,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.581,34.581,34.581,34.581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.268,0.976,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.459,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3211.3,3211.3,0.0,15.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.005,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.707,-0.165,0.0,1.941,8.008,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.403,45.403,45.403,45.403,0.0,0.0,0.0,0.0,0.0,0.0,9.436,1.0,0.296,0.017,3.357,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3243.5,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.81,41.81,41.81,41.81,0.0,0.0,0.0,0.0,0.0,0.0,9.467,1.733,0.308,0.031,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.14,0.339,0.0,9.075,0.591,0.0,0.0,0.0,0.0,7126.4,1637.3,7126.4,25.253,0.0,0.0,3.502,3.648,0.513,7.518,0.632,10.112,-12.683,0.0,0.0,0.0,8.185,-0.068,4.809,0.0,0.73,0.0,6.283,-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.336,45.336,45.336,45.336,0.0,0.0,0.0,0.0,0.0,0.0,8.978,0.904,0.895,0.051,3.247,0.969,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.738,0.945,12.366,9.075,0.614,0.0,0.0,144.0,0.0,10357.9,3404.3,10357.9,37.455,16.097,0.0,3.613,3.675,0.516,7.778,0.624,10.038,-12.798,0.0,0.0,0.0,9.107,0.061,4.747,0.0,0.762,0.0,4.611,-8.886,-2.51,0.0,0.033,-0.427,-0.048,2.817,-0.029,-1.429,11.615,0.0,0.0,0.0,-6.269,0.051,-1.158,-4.259,-0.16,0.0,1.931,7.892,2.0,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-seer2-hspf2.xml,45.462,45.462,45.462,45.462,0.0,0.0,0.0,0.0,0.0,0.0,9.507,1.0,0.296,0.017,3.345,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3237.7,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.403,45.403,45.403,45.403,0.0,0.0,0.0,0.0,0.0,0.0,9.436,1.0,0.296,0.017,3.357,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3243.5,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.384,41.384,41.384,41.384,0.0,0.0,0.0,0.0,0.0,0.0,7.367,0.584,0.283,0.012,2.242,0.604,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,22.488,0.295,13.067,9.075,0.615,0.0,0.0,0.0,0.0,6840.9,2791.5,6840.9,24.196,17.265,0.0,3.49,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.503,-8.906,-2.499,0.0,0.002,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.237,7.872,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.555,53.555,38.631,38.631,14.924,0.0,0.0,0.0,0.0,0.0,5.083,0.353,0.0,0.056,2.378,0.467,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,14.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.72,11.132,15.665,9.075,0.615,0.0,0.0,1.0,8.0,3202.1,2882.4,3202.1,22.934,17.73,0.0,3.282,3.605,0.507,7.529,0.616,9.933,-12.591,0.0,0.0,0.0,8.263,-0.029,5.816,0.0,0.72,0.0,10.96,-8.787,-2.475,0.0,-0.164,-0.473,-0.053,2.771,-0.034,-1.479,11.822,0.0,0.0,0.0,-6.279,-0.025,-1.472,-3.787,-0.169,0.0,5.12,7.992,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.542,56.542,37.49,37.49,19.052,0.0,0.0,0.0,0.0,0.0,4.022,0.234,0.0,0.072,2.398,0.469,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.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,27.325,14.192,15.794,9.075,0.616,0.0,0.0,225.0,8.0,3034.2,2899.7,3034.2,23.177,17.73,0.0,3.297,3.6,0.506,7.422,0.614,9.851,-12.664,0.0,0.0,0.0,8.262,-0.007,5.77,0.0,0.715,0.0,10.515,-8.794,-2.468,0.0,-0.154,-0.47,-0.054,2.694,-0.033,-1.533,11.749,0.0,0.0,0.0,-6.225,-0.004,-1.494,-3.77,-0.173,0.0,5.005,7.985,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.659,53.659,38.73,38.73,14.929,0.0,0.0,0.0,0.0,0.0,5.154,0.357,0.0,0.056,2.399,0.469,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,14.929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.99,11.136,15.83,9.075,0.615,0.0,0.0,1.0,8.0,3202.1,2882.4,3202.1,22.934,17.731,0.0,3.324,3.646,0.513,7.53,0.631,10.095,-12.703,0.0,0.0,0.0,8.344,-0.058,5.884,0.0,0.728,0.0,11.097,-8.914,-2.501,0.0,-0.121,-0.436,-0.048,2.76,-0.019,-1.329,11.71,0.0,0.0,0.0,-6.212,-0.055,-1.41,-3.77,-0.162,0.0,5.178,7.865,2.009,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-furnace.xml,53.637,53.637,38.868,38.868,14.769,0.0,0.0,0.0,0.0,0.0,4.92,0.334,0.0,0.445,2.407,0.469,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,14.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,12.26,15.931,9.075,0.615,0.0,0.0,2.0,8.0,3212.2,2882.3,3212.2,26.385,17.721,0.0,3.269,3.648,0.513,7.537,0.631,10.098,-12.695,0.0,0.0,0.0,8.341,-0.058,4.804,0.0,0.729,0.0,12.416,-8.905,-2.499,0.0,-0.13,-0.444,-0.049,2.732,-0.022,-1.358,11.718,0.0,0.0,0.0,-6.257,-0.054,-1.149,-3.836,-0.163,0.0,5.192,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,49.951,49.951,49.951,49.951,0.0,0.0,0.0,0.0,0.0,0.0,9.7,0.718,5.728,0.328,3.082,0.103,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,25.687,6.055,14.167,9.075,0.615,0.0,0.0,0.0,0.0,8393.7,3430.5,8393.7,24.188,18.17,0.0,3.366,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.336,-0.065,4.807,0.0,0.729,0.0,9.811,-8.906,-2.499,0.0,-0.046,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.829,-0.163,0.0,3.39,7.872,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.306,42.306,42.306,42.306,0.0,0.0,0.0,0.0,0.0,0.0,8.733,0.512,0.13,0.006,2.521,0.111,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,25.151,0.136,14.207,9.075,0.615,0.0,0.0,0.0,0.0,6823.3,3555.3,6823.3,24.193,18.064,0.0,3.388,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.335,-0.065,4.807,0.0,0.729,0.0,9.261,-8.906,-2.499,0.0,-0.048,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.261,-0.061,-1.146,-3.829,-0.163,0.0,3.43,7.872,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.85,40.85,40.85,40.85,0.0,0.0,0.0,0.0,0.0,0.0,7.808,0.252,0.322,0.015,2.044,0.116,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.748,0.337,13.903,9.075,0.615,0.0,0.0,0.0,0.0,6869.8,2766.0,6869.8,24.247,18.049,0.0,3.444,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.333,-0.064,4.807,0.0,0.729,0.0,7.811,-8.906,-2.499,0.0,-0.034,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.112,7.872,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.093,49.093,42.55,42.55,6.544,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.165,0.484,15.678,0.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.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,6.057,0.0,9.098,16.204,0.645,0.0,0.0,0.0,0.0,2608.0,3497.9,3497.9,17.003,15.868,0.0,2.896,2.829,0.396,5.505,0.422,7.582,-12.563,0.0,0.0,0.0,5.76,-0.053,3.532,0.0,0.581,0.0,1.456,-10.183,-2.473,0.0,-0.101,-0.557,-0.065,2.402,-0.054,-1.718,11.85,0.0,0.0,0.0,-7.441,-0.054,-1.232,-6.695,-0.186,0.0,1.895,9.378,2.036,2181.0,1715.2,21140.4,3685.8,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.84,58.84,35.839,35.839,23.001,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.336,0.824,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,23.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,21.548,0.0,14.328,9.075,0.615,0.0,0.0,0.0,0.0,2124.0,3361.2,3361.2,23.95,19.11,0.0,3.532,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.534,-8.905,-2.499,0.0,-0.053,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.828,-0.163,0.0,3.522,7.874,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.466,49.466,30.508,30.508,0.0,0.0,0.0,0.0,0.0,18.957,0.0,0.237,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2045.6,1637.3,2045.6,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.291,48.291,48.291,48.291,0.0,0.0,0.0,0.0,0.0,0.0,17.897,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,6027.4,1637.3,6027.4,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.121,55.121,35.905,35.905,19.217,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,4.328,1.138,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.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,16.192,0.0,13.98,9.075,0.615,0.0,0.0,0.0,0.0,2083.0,3544.7,3544.7,16.438,19.041,0.0,3.744,3.643,0.513,7.527,0.631,10.098,-12.683,0.0,0.0,0.0,8.318,-0.064,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.04,-0.446,-0.049,2.731,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.263,-0.06,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.431,54.431,30.416,30.416,24.016,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2033.0,1637.3,2033.0,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.46,49.46,30.416,30.416,19.044,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2033.0,1637.3,2033.0,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.466,49.466,30.508,30.508,0.0,18.957,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2045.6,1637.3,2045.6,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.459,49.459,30.394,30.394,0.0,0.0,19.065,0.0,0.0,0.0,0.0,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2030.2,1637.3,2030.2,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.459,49.459,30.394,30.394,0.0,0.0,0.0,19.065,0.0,0.0,0.0,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2030.2,1637.3,2030.2,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.667,35.667,35.667,35.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.222,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3502.6,3502.6,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.68,35.68,35.68,35.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.235,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3509.2,3509.2,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.09,34.09,34.09,34.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071,0.682,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.991,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3085.8,3085.8,0.0,19.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.071,-0.454,-0.05,2.711,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.709,-0.165,0.0,3.501,8.008,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.64,33.64,33.64,33.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189,0.114,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.956,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3511.1,3511.1,0.0,17.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.072,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.712,-0.165,0.0,3.503,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682,0.264,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.78,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.3,2899.3,0.0,18.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.341,8.008,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.39,47.39,47.39,47.39,0.0,0.0,0.0,0.0,0.0,0.0,9.543,1.748,0.309,0.031,4.329,1.138,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,22.335,0.34,13.981,9.075,0.615,0.0,0.0,0.0,0.0,7195.9,3544.8,7195.9,25.253,19.042,0.0,3.497,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.335,-8.906,-2.499,0.0,-0.039,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.209,58.209,36.58,36.58,21.629,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.022,0.908,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.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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2102.1,2714.4,2714.4,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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,51.983,51.983,41.322,41.322,10.661,0.0,0.0,0.0,0.0,0.0,5.246,0.493,0.0,0.93,3.357,1.004,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,10.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,22.828,11.057,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3243.5,3608.2,24.193,16.253,0.0,3.47,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.86,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.74,54.74,40.323,40.323,14.417,0.0,0.0,0.0,0.0,0.0,3.936,0.345,0.0,1.389,3.357,1.004,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,14.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,23.723,15.086,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3456.2,3243.5,3456.2,24.191,16.253,0.0,3.434,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.334,-0.065,4.808,0.0,0.729,0.0,7.785,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.168,52.168,37.35,37.35,14.818,0.0,0.0,0.0,0.0,0.0,2.982,0.188,0.0,1.042,2.242,0.604,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,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,24.057,15.119,13.067,9.075,0.614,0.0,0.0,0.0,0.0,2838.2,2791.5,2838.2,24.19,17.265,0.0,3.422,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.334,-0.064,4.808,0.0,0.729,0.0,8.129,-8.906,-2.499,0.0,0.002,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.237,7.872,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.899,51.899,36.952,36.952,14.947,0.0,0.0,0.0,0.0,0.0,3.327,0.037,0.0,1.135,2.044,0.116,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,14.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.935,15.335,13.903,9.075,0.614,0.0,0.0,0.0,0.0,2844.2,2766.0,2844.2,24.242,18.05,0.0,3.391,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.335,-0.064,4.807,0.0,0.729,0.0,9.038,-8.906,-2.499,0.0,-0.034,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.112,7.872,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.312,47.312,35.883,35.883,11.429,0.0,0.0,0.0,0.0,0.0,2.91,0.012,0.0,0.544,2.079,0.045,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,11.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.319,11.402,11.863,9.075,0.615,0.0,0.0,0.0,0.0,2645.0,2402.9,2645.0,19.077,13.952,0.0,3.611,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.248,-8.906,-2.499,0.0,0.046,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.823,-0.163,0.0,1.021,7.872,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.112,92.112,46.285,46.285,45.827,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,7.8,1.604,8.861,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.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,42.773,0.0,28.44,8.989,0.613,0.0,0.0,5.0,42.0,2576.6,5057.2,5057.2,48.976,36.131,0.0,3.227,7.904,1.074,7.935,0.669,20.549,-25.256,0.0,0.0,0.0,9.074,-0.116,11.181,0.0,0.748,0.0,19.717,-10.97,-3.546,0.0,-0.34,-0.979,-0.092,2.724,-0.016,-1.95,23.309,0.0,0.0,0.0,-6.354,-0.104,-2.409,-7.57,-0.158,0.0,10.524,9.387,2.826,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.227,57.227,35.583,35.583,21.645,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.154,0.779,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.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.275,0.0,13.571,9.075,0.615,0.0,0.0,0.0,0.0,2116.7,3311.4,3311.4,22.356,18.36,0.0,3.578,3.644,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.326,-0.063,4.807,0.0,0.729,0.0,4.222,-8.905,-2.499,0.0,-0.02,-0.447,-0.049,2.73,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.826,-0.163,0.0,2.745,7.874,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.588,55.588,35.348,35.348,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.981,0.741,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,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.946,0.0,12.757,9.075,0.615,0.0,0.0,0.0,0.0,2110.2,3030.7,3030.7,20.269,15.786,0.0,3.624,3.644,0.513,7.53,0.63,10.096,-12.683,0.0,0.0,0.0,8.323,-0.062,4.806,0.0,0.729,0.0,2.853,-8.903,-2.499,0.0,0.011,-0.447,-0.05,2.73,-0.022,-1.356,11.73,0.0,0.0,0.0,-6.266,-0.058,-1.147,-3.827,-0.163,0.0,1.91,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.524,54.524,40.36,40.36,14.164,0.0,0.0,0.0,0.0,0.0,4.358,0.368,0.0,0.0,5.342,0.0,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,14.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.746,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3055.2,3318.4,3318.4,18.192,11.9,0.0,3.744,3.643,0.513,7.526,0.631,10.097,-12.683,0.0,0.0,0.0,8.317,-0.064,4.807,0.0,0.73,0.0,1.559,-8.906,-2.499,0.0,0.052,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.264,-0.06,-1.146,-3.817,-0.163,0.0,-0.0,7.872,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,57.989,57.989,35.707,35.707,22.282,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.246,0.8,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.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,20.867,0.0,13.893,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3368.6,3368.6,23.027,18.891,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.08,7.874,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.422,57.422,35.597,35.597,21.826,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.163,0.78,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.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.453,0.0,13.711,9.075,0.615,0.0,0.0,0.0,0.0,2116.8,3359.0,3359.0,22.444,18.808,0.0,3.567,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.73,0.0,4.427,-8.906,-2.499,0.0,-0.025,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.943,7.872,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.202,59.202,35.901,35.901,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.39,0.833,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,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.828,0.0,14.537,9.075,0.615,0.0,0.0,0.0,0.0,2123.4,3540.1,3540.1,24.251,20.454,0.0,3.52,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.826,-8.905,-2.499,0.0,-0.063,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.829,-0.163,0.0,3.747,7.874,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.331,46.331,46.331,46.331,0.0,0.0,0.0,0.0,0.0,0.0,16.06,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,5913.9,1637.3,5913.9,16.439,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.591,54.591,31.705,31.705,22.886,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,0.0,0.817,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.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.65,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2123.2,1891.2,2123.2,24.046,11.909,0.0,3.528,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.632,-8.905,-2.499,0.0,0.054,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.817,-0.163,0.0,-0.0,7.874,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.218,31.218,31.218,31.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,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.474,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,1933.3,2020.7,0.0,15.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.704,-0.165,0.0,0.922,8.008,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.133,31.133,31.133,31.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.796,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.538,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,1891.6,2020.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.652,51.652,30.272,30.272,0.0,0.0,0.0,21.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2019.7,1593.9,2019.7,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.623,56.623,30.272,30.272,0.0,0.0,26.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2019.7,1593.9,2019.7,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.543,53.543,30.861,30.861,0.0,0.0,0.0,0.0,0.0,22.682,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.21,56.21,56.21,56.21,0.0,0.0,0.0,0.0,0.0,0.0,20.503,0.368,0.0,0.0,4.247,0.8,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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,7897.8,3369.1,7897.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.154,52.154,52.154,52.154,0.0,0.0,0.0,0.0,0.0,0.0,21.293,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,8283.1,1637.3,8283.1,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.722,56.722,34.436,34.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.116,0.66,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.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,20.87,0.0,14.312,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3115.3,3115.3,23.032,19.58,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.052,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.827,-0.163,0.0,3.503,7.874,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.953,55.953,33.667,33.667,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.176,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.9,2924.9,23.032,19.212,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.424,7.874,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.99,37.99,30.507,30.507,7.483,0.0,0.0,0.0,0.0,0.0,0.0,0.195,0.0,0.0,0.0,0.0,9.036,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.072,0.0,0.0,9.075,0.635,0.0,0.0,0.0,0.0,2085.2,1636.2,2085.2,18.154,0.0,0.0,2.843,2.786,0.39,5.36,0.411,7.452,-12.563,0.0,0.0,0.0,5.495,-0.053,3.476,0.0,0.572,0.0,1.818,-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,11171.5,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.451,58.451,30.861,30.861,27.59,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.116,59.116,36.23,36.23,22.886,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,5.342,0.0,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.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.65,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2123.2,3318.5,3318.5,24.046,11.9,0.0,3.528,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.633,-8.905,-2.499,0.0,0.054,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.817,-0.163,0.0,-0.0,7.874,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.543,53.543,30.861,30.861,0.0,22.682,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,0.0,0.0,22.682,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,0.0,0.0,0.0,22.682,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.206,58.206,36.609,36.609,21.597,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.022,0.908,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.353,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2105.4,2714.4,2714.4,16.604,11.9,0.0,3.778,3.677,0.518,7.601,0.636,10.196,-12.796,0.0,0.0,0.0,8.394,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.072,34.072,34.072,34.072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.94,0.795,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.69,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2841.8,2841.8,0.0,16.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.016,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.708,-0.165,0.0,2.179,8.008,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.762,40.762,40.762,40.762,0.0,0.0,0.0,0.0,0.0,0.0,6.2,0.621,0.0,0.0,2.691,0.956,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.552,0.0,13.366,9.075,0.615,0.0,0.0,0.0,0.0,3397.9,2669.4,3397.9,23.097,16.164,0.0,3.543,3.603,0.507,7.844,0.622,9.99,-12.705,0.0,0.0,0.0,11.665,-0.065,4.798,0.0,0.727,0.0,4.11,-8.928,-2.504,0.0,0.016,-0.436,-0.048,3.164,-0.018,-1.312,11.708,0.0,0.0,0.0,-6.297,-0.062,-1.133,-3.812,-0.16,0.0,2.084,7.851,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,36.704,36.704,36.704,36.704,0.0,0.0,0.0,0.0,0.0,0.0,5.565,0.868,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.199,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,3552.4,1637.3,3552.4,22.926,0.0,0.0,3.578,3.647,0.513,7.516,0.632,10.111,-12.683,0.0,0.0,0.0,8.181,-0.067,4.809,0.0,0.73,0.0,4.287,-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,40.166,40.166,40.166,40.166,0.0,0.0,0.0,0.0,0.0,0.0,5.452,0.555,0.0,0.0,2.925,0.941,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,19.711,0.0,12.892,9.075,0.615,0.0,0.0,0.0,0.0,3447.2,2853.9,3447.2,22.118,16.221,0.0,3.597,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.326,-0.064,4.807,0.0,0.729,0.0,3.643,-8.906,-2.499,0.0,0.008,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.825,-0.163,0.0,2.057,7.872,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.484,48.484,48.484,48.484,0.0,0.0,0.0,0.0,0.0,0.0,12.09,0.692,0.618,0.019,4.097,0.674,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,22.924,0.638,13.354,9.075,0.615,0.0,0.0,0.0,0.0,6952.5,3498.6,6952.5,24.716,17.368,0.0,3.475,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.949,-8.906,-2.499,0.0,-0.013,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.828,-0.163,0.0,2.536,7.872,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.007,44.007,44.007,44.007,0.0,0.0,0.0,0.0,0.0,0.0,9.224,0.568,0.555,0.017,2.794,0.556,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,24.13,0.573,13.692,9.075,0.614,0.0,0.0,0.0,0.0,6933.6,3114.9,6933.6,24.712,18.743,0.0,3.428,3.646,0.513,7.535,0.631,10.105,-12.683,0.0,0.0,0.0,8.334,-0.064,4.807,0.0,0.729,0.0,8.193,-8.906,-2.499,0.0,-0.026,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.827,-0.163,0.0,2.878,7.872,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.655,45.655,45.655,45.655,0.0,0.0,0.0,0.0,0.0,0.0,10.985,0.525,0.312,0.01,3.363,0.168,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,26.46,0.321,14.919,9.075,0.615,0.0,0.0,0.0,0.0,6928.7,4232.5,6928.7,24.71,18.702,0.0,3.34,3.648,0.513,7.538,0.631,10.102,-12.695,0.0,0.0,0.0,8.341,-0.06,4.807,0.0,0.729,0.0,10.614,-8.908,-2.5,0.0,-0.081,-0.444,-0.049,2.734,-0.022,-1.353,11.718,0.0,0.0,0.0,-6.255,-0.056,-1.147,-3.832,-0.163,0.0,4.168,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.903,43.903,43.903,43.903,0.0,0.0,0.0,0.0,0.0,0.0,9.912,0.341,0.609,0.021,2.576,0.152,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,25.341,0.63,14.673,9.075,0.615,0.0,0.0,0.0,0.0,6947.0,3154.2,6947.0,24.758,18.651,0.0,3.383,3.647,0.513,7.537,0.631,10.105,-12.69,0.0,0.0,0.0,8.338,-0.063,4.807,0.0,0.73,0.0,9.453,-8.908,-2.5,0.0,-0.07,-0.445,-0.049,2.733,-0.022,-1.351,11.724,0.0,0.0,0.0,-6.258,-0.059,-1.146,-3.83,-0.163,0.0,3.908,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,59.944,59.944,36.484,36.484,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.166,0.743,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,23.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.863,0.0,14.787,9.075,0.615,0.0,0.0,0.0,3.0,2098.9,3513.5,3513.5,24.074,18.616,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.076,-0.447,-0.049,2.732,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.148,-3.83,-0.163,0.0,3.996,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.468,58.468,35.008,35.008,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.805,0.629,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,23.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.863,0.0,15.229,9.075,0.615,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.889,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.095,-0.446,-0.049,2.732,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.148,-3.83,-0.163,0.0,4.444,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.737,57.737,34.277,34.277,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.332,0.37,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,23.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.862,0.0,15.952,9.075,0.615,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.153,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.136,-0.446,-0.049,2.733,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.058,-1.148,-3.837,-0.163,0.0,5.223,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.9,54.9,30.73,30.73,24.17,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.692,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2091.6,1637.3,2091.6,25.358,0.0,0.0,3.487,3.648,0.513,7.518,0.632,10.11,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,6.859,-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,42.348,42.348,42.348,42.348,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.569,0.0,0.0,3.533,0.899,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,20.77,0.0,13.454,9.075,0.615,0.0,0.0,0.0,0.0,3720.9,2983.5,3720.9,23.178,17.47,0.0,3.56,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.729,0.0,4.732,-8.906,-2.499,0.0,-0.017,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.827,-0.163,0.0,2.633,7.872,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.789,33.789,33.789,33.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.191,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.287,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.6,2951.6,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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.792,8.008,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.313,41.313,41.313,41.313,0.0,0.0,0.0,0.0,0.0,0.0,8.082,0.201,0.121,0.005,2.519,0.091,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,19.457,0.126,12.148,9.075,0.615,0.0,0.0,0.0,0.0,4873.7,2788.6,4873.7,19.228,14.089,0.0,3.606,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.39,-8.906,-2.499,0.0,0.037,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.315,7.872,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.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.024,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.516,8.008,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.885,32.885,32.885,32.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2664.7,2664.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.023,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2503.8,2503.8,0.0,11.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.036,-0.455,-0.05,2.71,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.409,32.409,32.409,32.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.027,0.044,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.521,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2369.0,2369.0,0.0,13.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.705,-0.165,0.0,0.996,8.008,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.353,40.353,40.353,40.353,0.0,0.0,0.0,0.0,0.0,0.0,6.995,0.144,0.0,0.0,2.886,0.034,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,19.296,0.0,12.191,9.075,0.615,0.0,0.0,0.0,0.0,4056.3,2641.7,4056.3,18.97,13.917,0.0,3.612,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.225,-8.906,-2.499,0.0,0.035,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.362,7.872,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.02,37.02,37.02,37.02,0.0,0.0,0.0,0.0,0.0,0.0,6.571,0.122,0.053,0.002,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.897,0.056,0.0,9.075,0.591,0.0,0.0,0.0,0.0,4362.5,1637.3,4362.5,19.31,0.0,0.0,3.622,3.647,0.513,7.515,0.632,10.11,-12.683,0.0,0.0,0.0,8.18,-0.067,4.809,0.0,0.73,0.0,2.959,-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.185,39.185,39.185,39.185,0.0,0.0,0.0,0.0,0.0,0.0,6.636,0.076,0.055,0.001,2.079,0.045,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,19.104,0.056,11.863,9.075,0.615,0.0,0.0,0.0,0.0,4286.8,2402.9,4286.8,19.079,13.952,0.0,3.617,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.028,-8.906,-2.499,0.0,0.046,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.823,-0.163,0.0,1.021,7.872,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.842,38.842,38.842,38.842,0.0,0.0,0.0,0.0,0.0,0.0,5.675,0.121,0.344,0.0,2.382,0.028,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,16.192,0.344,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4436.0,2598.8,4436.0,16.439,11.899,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.415,45.415,36.407,36.407,9.008,0.0,0.0,0.0,0.0,0.0,3.398,0.043,0.0,0.272,2.373,0.028,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,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.349,7.478,10.77,9.075,0.615,0.0,0.0,2.0,0.0,2921.7,2617.1,2921.7,17.264,12.061,0.0,3.742,3.641,0.512,7.521,0.63,10.091,-12.69,0.0,0.0,0.0,8.323,-0.062,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.059,-0.439,-0.048,2.758,-0.02,-1.327,11.724,0.0,0.0,0.0,-6.222,-0.058,-1.408,-3.751,-0.162,0.0,0.0,7.867,2.009,1354.8,997.6,11171.5,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.122,45.122,36.214,36.214,8.908,0.0,0.0,0.0,0.0,0.0,3.204,0.039,0.0,0.268,2.382,0.028,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,8.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.584,7.395,10.856,9.075,0.615,0.0,0.0,1.0,0.0,2848.6,2598.8,2848.6,17.577,11.899,0.0,3.722,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.316,-0.066,4.806,0.0,0.729,0.0,0.41,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.413,48.413,36.149,36.149,0.0,12.264,0.0,0.0,0.0,0.0,3.394,0.06,0.0,0.0,2.373,0.028,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.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,17.238,7.358,10.77,9.075,0.615,0.0,0.0,2.0,0.0,2921.7,2617.1,2921.7,16.995,12.061,0.0,3.742,3.641,0.512,7.521,0.63,10.091,-12.69,0.0,0.0,0.0,8.323,-0.062,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.059,-0.439,-0.048,2.758,-0.02,-1.327,11.724,0.0,0.0,0.0,-6.222,-0.058,-1.408,-3.751,-0.162,0.0,0.0,7.867,2.009,1354.8,997.6,11171.5,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.929,38.929,38.929,38.929,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.036,0.0,0.0,1.887,0.003,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,16.192,0.0,10.855,9.075,0.615,0.0,0.0,0.0,0.0,3979.6,2668.0,3979.6,16.439,11.895,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.422,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6589.4,4004.5,6589.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.673,19.673,19.673,19.673,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.543,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.334,0.0,0.0,0.0,0.0,1272.9,1085.0,1272.9,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.9,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.741,50.741,50.741,50.741,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,4.243,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,2924.2,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.792,54.792,34.536,34.536,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243,0.0,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,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2019.6,2924.2,2924.2,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.472,34.472,34.472,34.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.134,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2919.5,2919.5,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.144,32.144,32.144,32.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.806,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.477,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2169.9,2169.9,0.0,3.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.012,-0.15,-0.016,0.894,-0.009,-0.463,3.911,0.0,0.0,0.0,-2.256,-0.021,-0.386,-1.221,-0.054,0.0,0.0,2.643,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.552,35.552,35.552,35.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.214,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3298.2,3298.2,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.3,34.3,34.3,34.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.969,0.0,9.055,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.786,9.075,0.654,0.0,0.0,0.0,0.0,2019.6,3130.8,3130.8,0.0,10.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.125,-0.627,-0.075,2.229,-0.071,-1.927,11.85,0.0,0.0,0.0,-7.569,-0.066,-1.31,-4.072,-0.197,0.0,0.0,8.001,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.xml,35.542,35.542,35.542,35.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.204,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3294.3,3294.3,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.839,51.839,51.839,51.839,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,5.342,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,3318.4,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.788,57.788,35.664,35.664,22.124,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.214,0.792,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.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,13.749,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3368.6,3368.6,23.032,18.891,0.0,3.516,3.607,0.508,7.533,0.617,9.946,-12.591,0.0,0.0,0.0,8.259,-0.033,4.753,0.0,0.723,0.0,4.806,-8.79,-2.477,0.0,-0.074,-0.481,-0.054,2.741,-0.035,-1.499,11.822,0.0,0.0,0.0,-6.321,-0.029,-1.196,-3.849,-0.17,0.0,3.052,7.989,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.81,56.81,35.088,35.088,21.722,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.738,0.698,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,21.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,19.968,0.0,11.864,9.075,0.616,0.0,0.0,101.0,39.0,2155.4,3622.1,3622.1,34.947,20.795,0.0,3.517,3.579,0.503,7.526,0.608,9.826,-12.674,0.0,0.0,0.0,8.696,0.007,4.652,0.0,0.727,0.0,4.504,-8.859,-2.496,0.0,-0.046,-0.477,-0.054,2.68,-0.036,-1.514,11.74,0.0,0.0,0.0,-6.553,-0.003,-1.191,-4.267,-0.171,0.0,2.371,7.921,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.182,56.182,35.242,35.242,20.941,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.876,0.725,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.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.521,0.0,12.472,9.075,0.617,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.321,0.0,3.507,3.561,0.5,7.358,0.604,9.775,-12.716,0.0,0.0,0.0,8.214,-0.022,4.638,0.0,0.724,0.0,4.392,-8.884,-2.501,0.0,-0.033,-0.475,-0.054,2.629,-0.035,-1.51,11.697,0.0,0.0,0.0,-6.537,-0.023,-1.176,-4.187,-0.174,0.0,2.531,7.897,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.141,41.141,33.839,33.839,7.301,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.911,0.484,9.048,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,6.832,0.0,8.482,9.075,0.648,0.0,0.0,0.0,0.0,2101.0,3099.9,3099.9,17.396,16.056,0.0,2.849,2.784,0.389,5.358,0.41,7.446,-12.563,0.0,0.0,0.0,5.534,-0.056,3.474,0.0,0.571,0.0,1.562,-8.807,-2.473,0.0,-0.074,-0.525,-0.06,2.493,-0.046,-1.622,11.85,0.0,0.0,0.0,-7.34,-0.056,-1.202,-6.392,-0.181,0.0,1.962,8.005,2.036,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-hvac-space-heater-gas-only.xml,46.33,46.33,30.271,30.271,16.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2019.6,1637.3,2019.6,16.439,0.0,0.0,3.744,3.644,0.513,7.512,0.631,10.105,-12.676,0.0,0.0,0.0,8.169,-0.068,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.636,51.636,30.337,30.337,0.0,21.299,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2022.6,1593.9,2022.6,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.636,51.636,30.337,30.337,0.0,0.0,0.0,0.0,21.299,0.0,0.0,0.065,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2022.6,1593.9,2022.6,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.234,48.234,32.965,32.965,15.269,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.067,0.343,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,15.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,14.297,0.0,6.253,9.075,0.631,0.0,0.0,3657.0,2471.0,2088.0,1828.5,2088.0,3.827,2.735,0.0,2.697,2.923,0.409,5.374,0.449,7.9,-12.797,0.0,0.0,0.0,4.777,-0.12,3.615,0.0,0.6,0.0,9.553,-9.006,-2.517,0.0,-0.34,-0.774,-0.097,1.683,-0.107,-2.372,11.616,0.0,0.0,0.0,-7.925,-0.064,-1.381,-6.016,-0.23,0.0,2.748,7.789,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.658,46.658,46.658,46.658,0.0,0.0,0.0,0.0,0.0,0.0,16.387,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,6008.3,1637.3,6008.3,16.439,0.0,0.0,3.744,3.644,0.513,7.512,0.631,10.105,-12.676,0.0,0.0,0.0,8.169,-0.068,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 f38da8b8a..ff3f02147 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -1,283 +1,283 @@ 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,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-ceiling.xml,1565.62,144.0,1228.24,0.0,1372.24,144.0,49.38,193.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,1542.24,144.0,1212.24,0.0,1356.24,144.0,42.0,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 -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,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,1188.87,144.0,1044.87,0.0,1188.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-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,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,1542.54,144.0,1398.54,0.0,1542.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,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,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-appliances-coal.xml,1801.43,144.0,1211.28,0.0,1355.28,144.0,229.16,373.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,72.99,72.99 +base-appliances-dehumidifier-ief-portable.xml,1519.15,144.0,1217.87,0.0,1361.87,144.0,13.28,157.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-appliances-dehumidifier-ief-whole-home.xml,1520.91,144.0,1219.82,0.0,1363.82,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.75,144.0,1214.72,0.0,1358.72,144.0,14.03,158.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-appliances-dehumidifier.xml,1517.83,144.0,1216.67,0.0,1360.67,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,1779.99,144.0,1211.28,0.0,1355.28,144.0,280.71,424.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,1861.5,144.0,1346.45,0.0,1490.45,144.0,227.05,371.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-appliances-none.xml,1578.04,144.0,1033.62,0.0,1177.62,144.0,256.42,400.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,1898.63,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1860.52,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1801.43,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1866.09,144.0,1306.49,0.0,1450.49,144.0,271.6,415.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,2007.7,144.0,1480.07,0.0,1624.07,144.0,239.63,383.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-atticroof-flat.xml,1774.68,144.0,1280.47,0.0,1424.47,144.0,206.21,350.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-atticroof-radiant-barrier-ceiling.xml,1563.89,144.0,1226.49,0.0,1370.49,144.0,49.4,193.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-radiant-barrier.xml,1540.21,144.0,1210.2,0.0,1354.2,144.0,42.01,186.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,1805.81,144.0,1286.61,0.0,1430.61,144.0,231.2,375.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,1820.73,144.0,1298.65,0.0,1442.65,144.0,234.08,378.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,1897.43,144.0,1373.35,0.0,1517.35,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1315.97,144.0,904.8,0.0,1048.8,144.0,123.17,267.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1277.84,144.0,922.54,0.0,1066.54,144.0,67.3,211.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.34,144.0,905.24,0.0,1049.24,144.0,262.1,406.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1201.78,144.0,899.81,0.0,1043.81,144.0,13.97,157.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-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1218.63,144.0,919.28,0.0,1063.28,144.0,11.35,155.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-infil-compartmentalization-test.xml,1253.92,144.0,960.35,0.0,1104.35,144.0,5.57,149.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 +base-bldgtype-mf-unit-residents-1.xml,983.2,144.0,682.2,0.0,826.2,144.0,13.0,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 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1274.51,144.0,979.53,0.0,1123.53,144.0,6.98,150.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-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1302.11,144.0,1006.67,0.0,1150.67,144.0,7.44,151.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-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1284.49,144.0,989.88,0.0,1133.88,144.0,6.61,150.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1439.56,144.0,1146.13,0.0,1290.13,144.0,5.43,149.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1294.3,144.0,1000.87,0.0,1144.87,144.0,5.43,149.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1121.54,144.0,827.77,0.0,971.77,144.0,5.77,149.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.66,144.0,828.5,0.0,972.5,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 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1122.49,144.0,828.99,0.0,972.99,144.0,5.5,149.5,0.0,0.0,0.0,0.0,0.0,0.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,1125.41,144.0,833.42,0.0,977.42,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 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1122.54,144.0,829.06,0.0,973.06,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-shared-boiler-only-water-loop-heat-pump.xml,1121.26,144.0,828.77,0.0,972.77,144.0,4.49,148.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1121.67,144.0,977.67,0.0,1121.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1147.77,144.0,1003.77,0.0,1147.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-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.39,144.0,986.39,0.0,1130.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1285.87,144.0,1141.87,0.0,1285.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-cooling-tower-only-water-loop-heat-pump.xml,1141.68,144.0,997.68,0.0,1141.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-generator.xml,1637.42,144.0,958.12,0.0,1102.12,144.0,6.75,150.75,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,1186.01,144.0,1042.01,0.0,1186.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 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1057.68,144.0,610.85,0.0,754.85,144.0,158.83,302.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-laundry-room.xml,1030.47,144.0,604.09,0.0,748.09,144.0,138.38,282.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.73,144.0,1124.31,0.0,1268.31,144.0,212.42,356.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.03,144.0,999.9,0.0,1143.9,144.0,56.13,200.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-bldgtype-mf-unit-shared-mechvent.xml,1321.42,144.0,994.58,0.0,1138.58,144.0,38.84,182.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-bldgtype-mf-unit-shared-pv.xml,355.63,144.0,958.12,-897.25,204.88,144.0,6.75,150.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1071.77,144.0,644.87,0.0,788.87,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,0.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,1031.55,144.0,604.65,0.0,748.65,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,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,1252.87,144.0,958.12,0.0,1102.12,144.0,6.75,150.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-bldgtype-sfa-unit-2stories.xml,1725.28,144.0,1263.51,0.0,1407.51,144.0,173.77,317.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2288.6,144.0,1361.28,0.0,1505.28,144.0,639.32,783.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-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1511.73,144.0,1092.09,0.0,1236.09,144.0,131.64,275.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 +base-bldgtype-sfa-unit.xml,1511.73,144.0,1092.09,0.0,1236.09,144.0,131.64,275.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 +base-dhw-combi-tankless-outside.xml,1388.83,144.0,786.24,0.0,930.24,144.0,314.59,458.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,1401.74,144.0,786.59,0.0,930.59,144.0,327.15,471.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-desuperheater-2-speed.xml,1318.01,144.0,1174.01,0.0,1318.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 +base-dhw-desuperheater-gshp.xml,1539.38,144.0,1395.38,0.0,1539.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-dhw-desuperheater-hpwh.xml,1655.93,144.0,1085.28,0.0,1229.28,144.0,282.65,426.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-dhw-desuperheater-tankless.xml,1376.47,144.0,1232.47,0.0,1376.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-dhw-desuperheater-var-speed.xml,1286.77,144.0,1142.77,0.0,1286.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-dhw-desuperheater.xml,1377.5,144.0,1233.5,0.0,1377.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1751.2,144.0,1227.12,0.0,1371.12,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,1418.24,144.0,786.18,0.0,930.18,144.0,344.06,488.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-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,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,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,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.34,144.0,1298.86,0.0,1442.86,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-dhw-indirect-outside.xml,1434.6,144.0,786.24,0.0,930.24,144.0,360.36,504.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-dhw-indirect-standbyloss.xml,1422.18,144.0,786.12,0.0,930.12,144.0,348.06,492.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-dhw-indirect-with-solar-fraction.xml,1337.04,144.0,786.45,0.0,930.45,144.0,262.59,406.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,1419.67,144.0,786.19,0.0,930.19,144.0,345.48,489.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-jacket-electric.xml,1824.91,144.0,1298.56,0.0,1442.56,144.0,238.35,382.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,1664.35,144.0,983.29,0.0,1127.29,144.0,393.06,537.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-dhw-jacket-hpwh.xml,1651.9,144.0,1081.05,0.0,1225.05,144.0,282.85,426.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-dhw-jacket-indirect.xml,1417.54,144.0,786.25,0.0,930.25,144.0,343.29,487.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-dhw-low-flow-fixtures.xml,1826.49,144.0,1302.41,0.0,1446.41,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,1394.46,144.0,856.94,0.0,1000.94,144.0,249.52,393.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-none.xml,1421.29,144.0,897.55,0.0,1041.55,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 +base-dhw-recirc-demand.xml,1832.8,144.0,1308.72,0.0,1452.72,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,1817.39,144.0,1293.31,0.0,1437.31,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,2373.5,144.0,1849.42,0.0,1993.42,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,2195.44,144.0,1671.36,0.0,1815.36,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,2373.5,144.0,1849.42,0.0,1993.42,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,1621.65,144.0,1097.57,0.0,1241.57,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,1569.05,144.0,1045.07,0.0,1189.07,144.0,235.98,379.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-solar-direct-ics.xml,1624.46,144.0,1100.38,0.0,1244.38,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,1621.04,144.0,1094.11,0.0,1238.11,144.0,238.93,382.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-solar-indirect-flat-plate.xml,1568.38,144.0,1048.15,0.0,1192.15,144.0,232.23,376.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-dhw-solar-thermosyphon-flat-plate.xml,1558.61,144.0,1034.62,0.0,1178.62,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 +base-dhw-tank-coal.xml,1740.82,144.0,985.18,0.0,1129.18,144.0,238.41,382.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,229.23,229.23 +base-dhw-tank-detailed-setpoints.xml,1834.14,144.0,1310.13,0.0,1454.13,144.0,236.01,380.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,1836.9,144.0,1313.37,0.0,1457.37,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-tank-gas-outside.xml,1686.37,144.0,977.62,0.0,1121.62,144.0,420.75,564.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-tank-gas-uef-fhr.xml,1669.06,144.0,983.86,0.0,1127.86,144.0,397.2,541.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,1669.06,144.0,983.86,0.0,1127.86,144.0,397.2,541.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,1673.48,144.0,985.18,0.0,1129.18,144.0,400.3,544.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-dhw-tank-heat-pump-detailed-schedules.xml,1629.54,144.0,1050.23,0.0,1194.23,144.0,291.31,435.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-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1623.14,144.0,1043.48,0.0,1187.48,144.0,291.66,435.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-dhw-tank-heat-pump-outside.xml,1753.31,144.0,1224.84,0.0,1368.84,144.0,240.47,384.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-tank-heat-pump-uef.xml,1623.14,144.0,1043.48,0.0,1187.48,144.0,291.66,435.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-dhw-tank-heat-pump-with-solar-fraction.xml,1560.35,144.0,1017.62,0.0,1161.62,144.0,254.73,398.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 +base-dhw-tank-heat-pump-with-solar.xml,1570.69,144.0,1039.44,0.0,1183.44,144.0,243.25,387.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-dhw-tank-heat-pump.xml,1655.67,144.0,1085.75,0.0,1229.75,144.0,281.92,425.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1828.73,144.0,1294.03,0.0,1438.03,144.0,246.7,390.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 +base-dhw-tank-model-type-stratified.xml,1818.26,144.0,1289.93,0.0,1433.93,144.0,240.33,384.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,2046.07,144.0,985.18,0.0,1129.18,144.0,238.41,382.41,0.0,534.48,534.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 +base-dhw-tank-wood.xml,1740.82,144.0,985.18,0.0,1129.18,144.0,238.41,382.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.23,229.23,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,1624.44,144.0,977.62,0.0,1121.62,144.0,358.82,502.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 +base-dhw-tankless-electric-outside.xml,1846.4,144.0,1317.93,0.0,1461.93,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,1842.56,144.0,1314.09,0.0,1458.09,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,1846.4,144.0,1317.93,0.0,1461.93,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,1608.44,144.0,977.62,0.0,1121.62,144.0,342.82,486.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 +base-dhw-tankless-gas-with-solar-fraction.xml,1547.6,144.0,977.62,0.0,1121.62,144.0,281.98,425.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,1534.49,144.0,993.29,0.0,1137.29,144.0,253.2,397.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,1624.69,144.0,977.62,0.0,1121.62,144.0,359.07,503.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-dhw-tankless-propane.xml,1809.98,144.0,977.62,0.0,1121.62,144.0,240.47,384.47,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,2042.96,144.0,1492.76,0.0,1636.76,144.0,262.2,406.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,2213.06,144.0,1613.22,0.0,1757.22,144.0,311.84,455.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-beds-1.xml,1661.0,144.0,1115.87,0.0,1259.87,144.0,257.13,401.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-beds-2.xml,1749.08,144.0,1214.51,0.0,1358.51,144.0,246.57,390.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 +base-enclosure-beds-4.xml,1919.01,144.0,1405.29,0.0,1549.29,144.0,225.72,369.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,2002.87,144.0,1499.41,0.0,1643.41,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 +base-enclosure-ceilingtypes.xml,2019.41,144.0,1330.17,0.0,1474.17,144.0,401.24,545.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-floortypes.xml,1761.05,144.0,1072.93,0.0,1216.93,144.0,400.12,544.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-enclosure-garage.xml,1805.52,144.0,1263.89,0.0,1407.89,144.0,253.63,397.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-infil-ach-house-pressure.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-infil-flue.xml,1849.58,144.0,1310.58,0.0,1454.58,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 +base-enclosure-infil-natural-ach.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-infil-natural-cfm.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-orientations.xml,1836.3,144.0,1309.61,0.0,1453.61,144.0,238.69,382.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-enclosure-overhangs.xml,1831.66,144.0,1304.46,0.0,1448.46,144.0,239.2,383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,1829.67,144.0,1304.68,0.0,1448.68,144.0,236.99,380.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-skylights-physical-properties.xml,1889.17,144.0,1350.14,0.0,1494.14,144.0,251.03,395.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,1847.9,144.0,1312.26,0.0,1456.26,144.0,247.64,391.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 +base-enclosure-skylights-storms.xml,1859.15,144.0,1337.61,0.0,1481.61,144.0,233.54,377.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-enclosure-skylights.xml,1859.01,144.0,1341.14,0.0,1485.14,144.0,229.87,373.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-split-level.xml,1479.02,144.0,1074.59,0.0,1218.59,144.0,116.43,260.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-thermal-mass.xml,1830.89,144.0,1308.47,0.0,1452.47,144.0,234.42,378.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,1981.28,144.0,1266.28,0.0,1410.28,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 +base-enclosure-windows-natural-ventilation-availability.xml,1795.81,144.0,1270.94,0.0,1414.94,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 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 -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,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,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,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,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-enclosure-windows-physical-properties.xml,1921.0,144.0,1315.59,0.0,1459.59,144.0,317.41,461.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,1834.47,144.0,1311.46,0.0,1455.46,144.0,235.01,379.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,1769.13,144.0,1222.81,0.0,1366.81,144.0,258.32,402.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-enclosure-windows-storms.xml,1830.1,144.0,1289.72,0.0,1433.72,144.0,252.38,396.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,1578.64,144.0,1106.98,0.0,1250.98,144.0,183.66,327.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-foundation-basement-garage.xml,1687.92,144.0,1190.48,0.0,1334.48,144.0,209.44,353.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-foundation-belly-wing-no-skirt.xml,1573.61,144.0,1073.56,0.0,1217.56,144.0,212.05,356.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-foundation-belly-wing-skirt.xml,1569.85,144.0,1073.82,0.0,1217.82,144.0,208.03,352.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-complex.xml,2072.99,144.0,1358.41,0.0,1502.41,144.0,426.58,570.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1819.24,144.0,1329.27,0.0,1473.27,144.0,201.97,345.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-foundation-conditioned-basement-slab-insulation.xml,1827.75,144.0,1317.81,0.0,1461.81,144.0,221.94,365.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 +base-foundation-conditioned-basement-wall-insulation.xml,1810.87,144.0,1294.8,0.0,1438.8,144.0,228.07,372.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-foundation-conditioned-crawlspace.xml,1533.23,144.0,1054.42,0.0,1198.42,144.0,190.81,334.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 +base-foundation-multiple.xml,1508.4,144.0,1085.78,0.0,1229.78,144.0,134.62,278.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-foundation-slab.xml,1467.15,144.0,1069.57,0.0,1213.57,144.0,109.58,253.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,1524.38,144.0,1090.75,0.0,1234.75,144.0,145.63,289.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-foundation-unconditioned-basement-assembly-r.xml,1481.04,144.0,1069.67,0.0,1213.67,144.0,123.37,267.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,1552.94,144.0,1057.01,0.0,1201.01,144.0,207.93,351.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-foundation-unconditioned-basement.xml,1510.09,144.0,1087.02,0.0,1231.02,144.0,135.07,279.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-foundation-unvented-crawlspace.xml,1490.02,144.0,1090.65,0.0,1234.65,144.0,111.37,255.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,1514.02,144.0,1094.67,0.0,1238.67,144.0,131.35,275.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,1509.0,144.0,1088.9,0.0,1232.9,144.0,132.1,276.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,1907.33,144.0,1323.77,0.0,1467.77,144.0,295.56,439.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-air-to-air-heat-pump-1-speed-cooling-only.xml,1413.14,144.0,1269.14,0.0,1413.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-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1810.3,144.0,1666.3,0.0,1810.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-air-to-air-heat-pump-1-speed-heating-only.xml,1678.45,144.0,1534.45,0.0,1678.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1807.85,144.0,1663.85,0.0,1807.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-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1812.47,144.0,1668.47,0.0,1812.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-air-to-air-heat-pump-1-speed.xml,1810.3,144.0,1666.3,0.0,1810.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-air-to-air-heat-pump-2-speed.xml,1662.82,144.0,1518.82,0.0,1662.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-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1863.84,144.0,1417.75,0.0,1561.75,144.0,158.09,302.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1865.72,144.0,1375.89,0.0,1519.89,144.0,201.83,345.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1867.55,144.0,1421.4,0.0,1565.4,144.0,158.15,302.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1870.91,144.0,1426.46,0.0,1570.46,144.0,156.45,300.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-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1977.24,144.0,1833.24,0.0,1977.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-var-speed-detailed-performance.xml,1696.64,144.0,1552.64,0.0,1696.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-hvac-air-to-air-heat-pump-var-speed.xml,1643.22,144.0,1499.22,0.0,1643.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-autosize-sizing-controls.xml,1918.91,144.0,1561.59,0.0,1705.59,144.0,69.32,213.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-hvac-autosize.xml,1846.97,144.0,1315.31,0.0,1459.31,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 +base-hvac-boiler-coal-only.xml,1548.02,144.0,1119.66,0.0,1263.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,284.36,284.36 +base-hvac-boiler-elec-only.xml,1916.31,144.0,1772.31,0.0,1916.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-boiler-gas-central-ac-1-speed.xml,1809.29,144.0,1317.72,0.0,1461.72,144.0,203.57,347.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 +base-hvac-boiler-gas-only-pilot.xml,1658.67,144.0,1116.26,0.0,1260.26,144.0,254.41,398.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,1606.0,144.0,1116.26,0.0,1260.26,144.0,201.74,345.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-hvac-boiler-oil-only.xml,1926.69,144.0,1119.66,0.0,1263.66,0.0,0.0,0.0,0.0,663.03,663.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 +base-hvac-boiler-propane-only.xml,1776.97,144.0,1115.47,0.0,1259.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,517.5,517.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,1545.44,144.0,1115.47,0.0,1259.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.97,285.97,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,1452.99,144.0,1308.99,0.0,1452.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-central-ac-only-1-speed.xml,1453.45,144.0,1309.45,0.0,1453.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,1395.13,144.0,1251.13,0.0,1395.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1378.61,144.0,1234.61,0.0,1378.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,1365.54,144.0,1221.54,0.0,1365.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-central-ac-plus-air-to-air-heat-pump-heating.xml,1883.25,144.0,1739.25,0.0,1883.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-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,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,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,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 -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 -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,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.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 -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 -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 -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 -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-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1917.47,144.0,1516.54,0.0,1660.54,144.0,112.93,256.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1920.6,144.0,1479.87,0.0,1623.87,144.0,152.73,296.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 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1815.75,144.0,1370.78,0.0,1514.78,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 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1802.48,144.0,1356.14,0.0,1500.14,144.0,158.34,302.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1726.0,144.0,1316.93,0.0,1460.93,144.0,121.07,265.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-hvac-ducts-area-fractions.xml,2472.12,144.0,1698.66,0.0,1842.66,144.0,485.46,629.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-hvac-ducts-area-multipliers.xml,1823.2,144.0,1305.91,0.0,1449.91,144.0,229.29,373.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-ducts-buried.xml,1799.7,144.0,1297.29,0.0,1441.29,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 +base-hvac-ducts-defaults.xml,1919.28,144.0,1481.24,0.0,1625.24,144.0,150.04,294.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-hvac-ducts-effective-rvalue.xml,1834.49,144.0,1310.45,0.0,1454.45,144.0,236.04,380.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-hvac-ducts-leakage-cfm50.xml,1825.62,144.0,1306.41,0.0,1450.41,144.0,231.21,375.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-ducts-leakage-percent.xml,1852.4,144.0,1317.56,0.0,1461.56,144.0,246.84,390.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-elec-resistance-only.xml,1844.36,144.0,1700.36,0.0,1844.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 +base-hvac-evap-cooler-furnace-gas.xml,1694.03,144.0,1163.59,0.0,1307.59,144.0,242.44,386.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-evap-cooler-only-ducted.xml,1289.72,144.0,1145.72,0.0,1289.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-evap-cooler-only.xml,1286.61,144.0,1142.61,0.0,1286.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,1575.69,144.0,1111.0,0.0,1255.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.69,320.69,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,1970.27,144.0,1111.0,0.0,1255.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,715.27,715.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,1616.84,144.0,1132.61,0.0,1276.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,340.23,340.23 +base-hvac-furnace-elec-central-ac-1-speed.xml,2206.93,144.0,2062.93,0.0,2206.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,2058.09,144.0,1914.09,0.0,2058.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1787.91,144.0,1263.83,0.0,1407.83,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1759.68,144.0,1235.6,0.0,1379.6,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.89,144.0,1119.62,0.0,1263.62,144.0,79.27,223.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-hvac-furnace-gas-only-pilot.xml,1712.88,144.0,1132.61,0.0,1276.61,144.0,292.27,436.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-hvac-furnace-gas-only.xml,1660.89,144.0,1132.61,0.0,1276.61,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 +base-hvac-furnace-gas-room-ac.xml,1860.09,144.0,1329.65,0.0,1473.65,144.0,242.44,386.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-furnace-oil-only.xml,2069.91,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,793.3,793.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 +base-hvac-furnace-propane-only.xml,1892.3,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,615.69,615.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,1616.84,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.23,340.23,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,1399.66,144.0,1255.66,0.0,1399.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-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1644.54,144.0,1500.54,0.0,1644.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-ground-to-air-heat-pump-heating-only.xml,1490.45,144.0,1346.45,0.0,1490.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,1623.32,144.0,1479.32,0.0,1623.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 -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,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,1704.26,144.0,1560.26,0.0,1704.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-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,2498.57,144.0,1913.09,0.0,2057.09,144.0,74.76,218.76,0.0,124.19,124.19,0.0,98.53,98.53,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 -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 -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 -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 -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 -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 -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 -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,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,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 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1394.47,144.0,1250.47,0.0,1394.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-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1639.99,144.0,1495.99,0.0,1639.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-ground-to-air-heat-pump-heating-only.xml,1491.07,144.0,1347.07,0.0,1491.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-ground-to-air-heat-pump.xml,1618.12,144.0,1474.12,0.0,1618.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-install-quality-air-to-air-heat-pump-1-speed.xml,1923.4,144.0,1779.4,0.0,1923.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 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1759.07,144.0,1615.07,0.0,1759.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-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1819.57,144.0,1675.57,0.0,1819.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 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1755.25,144.0,1611.25,0.0,1755.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-install-quality-furnace-gas-central-ac-1-speed.xml,1875.48,144.0,1338.96,0.0,1482.96,144.0,248.52,392.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-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1821.33,144.0,1284.81,0.0,1428.81,144.0,248.52,392.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-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1794.5,144.0,1257.98,0.0,1401.98,144.0,248.52,392.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-hvac-install-quality-furnace-gas-only.xml,1671.83,144.0,1127.79,0.0,1271.79,144.0,256.04,400.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-hvac-install-quality-ground-to-air-heat-pump.xml,1698.18,144.0,1554.18,0.0,1698.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 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.08,144.0,1240.08,0.0,1384.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-install-quality-mini-split-heat-pump-ducted.xml,1660.19,144.0,1516.19,0.0,1660.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-hvac-mini-split-air-conditioner-only-ducted.xml,1360.38,144.0,1216.38,0.0,1360.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1350.91,144.0,1206.91,0.0,1350.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.75,144.0,1219.75,0.0,1363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1333.41,144.0,1189.41,0.0,1333.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1624.97,144.0,1480.97,0.0,1624.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-heating-only.xml,1502.63,144.0,1358.63,0.0,1502.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-mini-split-heat-pump-ducted.xml,1582.11,144.0,1438.11,0.0,1582.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1569.52,144.0,1425.52,0.0,1569.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-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1719.59,144.0,1336.17,0.0,1480.17,144.0,95.42,239.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1711.44,144.0,1329.07,0.0,1473.07,144.0,94.37,238.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1899.61,144.0,1326.69,0.0,1470.69,0.0,0.0,0.0,0.0,428.92,428.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 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1572.7,144.0,1428.7,0.0,1572.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 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1544.05,144.0,1400.05,0.0,1544.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-mini-split-heat-pump-ductless.xml,1544.05,144.0,1400.05,0.0,1544.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-multiple.xml,2492.92,144.0,1907.21,0.0,2051.21,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,2514.22,144.0,2370.22,0.0,2514.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-ptac-with-heating-electricity.xml,2006.2,144.0,1862.2,0.0,2006.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-ptac-with-heating-natural-gas.xml,1770.06,144.0,1267.49,0.0,1411.49,144.0,214.57,358.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 +base-hvac-ptac.xml,1409.14,144.0,1265.14,0.0,1409.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-pthp-heating-capacity-17f.xml,1673.63,144.0,1529.63,0.0,1673.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-pthp.xml,1673.63,144.0,1529.63,0.0,1673.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-room-ac-only-33percent.xml,1323.7,144.0,1179.7,0.0,1323.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 +base-hvac-room-ac-only-ceer.xml,1448.77,144.0,1304.77,0.0,1448.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-room-ac-only-detailed-setpoints.xml,1402.83,144.0,1258.83,0.0,1402.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-room-ac-only.xml,1448.41,144.0,1304.41,0.0,1448.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,2046.51,144.0,1902.51,0.0,2046.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-room-ac-with-reverse-cycle.xml,1673.63,144.0,1529.63,0.0,1673.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-seasons.xml,1831.26,144.0,1308.89,0.0,1452.89,144.0,234.37,378.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1805.85,144.0,1287.75,0.0,1431.75,144.0,230.1,374.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1803.22,144.0,1293.39,0.0,1437.39,144.0,221.83,365.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-setpoints.xml,1607.27,144.0,1241.92,0.0,1385.92,144.0,77.35,221.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-space-heater-gas-only.xml,1569.09,144.0,1110.97,0.0,1254.97,144.0,170.12,314.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-stove-oil-only.xml,2002.29,144.0,1113.37,0.0,1257.37,0.0,0.0,0.0,0.0,744.92,744.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 +base-hvac-stove-wood-pellets-only.xml,1576.85,144.0,1113.37,0.0,1257.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,319.48,319.48,0.0,0.0,0.0 +base-hvac-undersized.xml,1659.57,144.0,1209.82,0.0,1353.82,144.0,161.75,305.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-wall-furnace-elec-only.xml,1856.37,144.0,1712.37,0.0,1856.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 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index 4252af919..286ed2852 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -1,141 +1,141 @@ 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-lighting-ceiling-fans.xml,58.475,58.475,36.23,36.23,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.246,0.802,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.011,9.075,0.612,0.0,0.0,0.0,0.0,2119.4,3757.5,3757.5,23.032,18.72,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.094,-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.03,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.305,58.305,36.038,36.038,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.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.394,9.075,0.614,0.0,0.0,0.0,0.0,2407.8,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-lighting-kwh-per-year.xml,59.816,59.816,39.442,39.442,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.585,0.884,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.41,9.075,0.612,0.0,0.0,0.0,0.0,2414.8,3540.2,3540.2,22.763,19.429,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.095,-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.31,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.283,58.283,36.017,36.017,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.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.394,9.075,0.614,0.0,0.0,0.0,0.0,2131.0,3378.3,3378.3,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-lighting-none-ceiling-fans.xml,56.057,56.057,31.039,31.039,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.928,0.725,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.637,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3177.4,3177.4,23.408,17.993,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.036,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.312,-0.055,-1.167,-3.071,-0.168,0.0,2.801,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.685,55.685,30.646,30.646,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.032,0.75,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.012,9.075,0.615,0.0,0.0,0.0,0.0,1722.6,3142.6,3142.6,23.408,18.203,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.005,-0.415,-0.045,2.824,-0.014,-1.262,11.719,0.0,0.0,0.0,-6.116,-0.055,-1.132,-2.911,-0.16,0.0,2.915,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.921,66.921,34.744,34.744,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,2.964,0.49,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.817,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2852.8,2852.8,23.49,15.762,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.004,-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.109,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.05,39.05,29.842,29.842,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.116,1.035,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,2550.7,2550.7,13.608,14.211,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.099,28.099,27.938,27.938,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.286,1.011,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.632,7.296,0.693,0.0,0.0,0.0,0.0,1857.0,2406.2,2406.2,4.202,12.632,0.0,1.596,1.352,0.0,0.0,0.569,4.54,-5.631,0.0,0.0,2.603,0.0,-1.073,0.758,0.0,0.326,0.0,0.023,-4.305,-0.792,0.0,-0.908,-1.638,0.0,0.0,-0.468,-0.617,17.811,0.0,0.0,-4.252,0.0,-1.072,-0.601,-2.04,-0.407,0.0,1.046,8.279,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.317,34.317,32.595,32.595,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.886,1.862,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.105,6.562,0.573,0.0,0.0,0.0,0.0,1925.7,2832.8,2832.8,9.692,15.098,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.356,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.615,70.615,29.721,29.721,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.369,0.349,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.773,11.397,0.833,0.0,0.0,0.0,0.0,1752.4,2446.6,2446.6,26.512,11.637,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.572,-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.371,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.736,77.736,35.272,35.272,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.417,0.374,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.467,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3002.1,3002.1,30.328,14.857,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.003,-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.332,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.687,35.687,35.687,35.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.905,2.906,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,2105.0,2130.1,2316.4,0.0,13.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.744,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,34.859,34.859,34.859,34.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.145,2.708,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,2082.1,2402.6,2402.6,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.533,38.533,38.533,38.533,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.372,2.925,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.069,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3322.0,3322.0,0.564,18.416,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.761,1.401,0.0,0.0,0.802,6.862,24.223,0.0,0.0,0.0,7.005,-0.479,0.01,-3.136,0.116,0.0,0.951,11.527,2.372,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.107,37.107,27.57,27.57,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.916,0.546,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.05,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2718.6,2718.6,8.448,14.131,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-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.965,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.576,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.465,79.465,37.677,37.677,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.133,0.763,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.199,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3774.7,3774.7,32.383,21.477,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.146,-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.159,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.884,59.884,35.932,35.932,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.315,0.817,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.204,9.075,0.614,0.0,0.0,0.0,0.0,2158.0,3589.1,3589.1,24.906,20.53,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.325,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.04,-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.127,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.82,72.82,37.589,37.589,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.224,0.787,9.02,0.0,0.0,4.51,0.0,0.334,1.701,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.643,9.075,0.618,0.0,0.0,0.0,0.0,2174.2,3634.9,3634.9,29.389,21.244,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.038,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.979,-0.066,-0.256,-2.751,-3.277,0.0,3.186,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,72.948,72.948,38.558,38.558,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.956,0.883,9.02,0.0,0.0,4.51,0.0,0.334,1.856,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.536,9.075,0.618,0.0,0.0,0.0,0.0,2173.6,2782.3,2782.3,21.242,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.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.742,-3.246,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.035,70.035,36.238,36.238,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.135,0.767,9.021,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.285,9.075,0.619,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.23,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.094,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.255,-2.616,-4.011,0.0,3.109,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.157,72.157,36.265,36.265,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.142,0.767,9.021,0.0,0.0,4.51,0.0,0.334,0.467,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.285,9.075,0.619,0.0,0.0,0.0,0.0,2161.0,3634.9,3634.9,29.39,21.233,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.068,-0.339,-0.034,2.956,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.884,0.0,3.134,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-cfis.xml,74.033,74.033,37.524,37.524,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.173,0.774,9.021,0.0,0.0,4.51,0.0,0.334,1.678,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.4,9.075,0.618,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.226,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.144,-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.048,0.0,2.435,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,64.925,64.925,37.703,37.703,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.345,0.822,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.271,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3569.7,3569.7,25.349,20.049,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.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.172,-0.057,-1.258,-2.954,-0.853,0.0,3.198,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,64.928,64.928,37.703,37.703,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.345,0.822,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.271,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3569.8,3569.8,25.35,20.049,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.027,-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.198,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.699,73.699,36.673,36.673,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.109,0.759,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.135,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.291,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.096,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.924,-0.078,-0.232,-2.607,-4.199,0.0,3.12,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.699,73.699,36.673,36.673,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.109,0.759,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.135,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.291,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.096,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.924,-0.078,-0.232,-2.607,-4.199,0.0,3.12,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,64.926,64.926,37.706,37.706,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.347,0.823,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.273,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3571.1,3571.1,25.348,20.051,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.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.172,-0.057,-1.258,-2.954,-0.852,0.0,3.2,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,64.929,64.929,37.706,37.706,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.347,0.823,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.273,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3571.2,3571.2,25.349,20.051,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.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.2,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.635,80.635,38.148,38.148,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.498,0.671,9.024,0.0,0.0,4.51,0.0,0.334,1.576,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.595,9.075,0.622,0.0,0.0,0.0,18.0,2271.7,3683.2,3683.2,35.903,23.179,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.056,-0.213,-0.016,3.197,0.041,-0.605,11.623,0.0,0.0,0.0,-5.617,-0.101,-0.613,0.0,-2.151,-8.166,4.637,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.281,72.281,36.743,36.743,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.185,0.778,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.467,9.075,0.618,0.0,0.0,0.0,0.0,2190.3,3664.9,3664.9,29.255,21.273,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.066,-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.723,0.0,3.169,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.665,56.665,34.219,34.219,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.5,0.385,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.516,9.075,0.622,0.0,0.0,0.0,0.0,2119.4,3398.4,3398.4,23.032,16.068,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.089,-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.763,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.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-misc-bills-pv-detailed-only.xml,58.105,31.219,35.839,8.953,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,-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.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-misc-bills-pv-mixed.xml,58.105,31.219,35.839,8.953,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,-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.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-misc-bills-pv.xml,58.105,0.842,35.839,-21.424,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,-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.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-misc-bills.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-misc-defaults.xml,63.273,43.921,31.481,12.129,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.247,0.327,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.352,0.0,0.503,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.463,10.472,0.696,0.0,9.068,0.0,0.0,2428.2,2958.2,2958.2,26.046,15.207,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.448,8.628,1.952,1610.4,1574.2,10319.0,3636.6,2.867,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,58.927,32.041,36.661,9.774,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,-26.886,0.0,0.822,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,2176.0,3446.4,3446.4,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,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.84,68.651,37.574,29.385,30.766,8.5,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,-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.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.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.xml,75.105,66.916,35.839,27.65,30.766,8.5,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,-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.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-misc-generators.xml,75.105,66.916,35.839,27.65,30.766,8.5,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,-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.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-misc-ground-conductivity.xml,55.797,55.797,35.763,35.763,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.322,0.819,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.253,9.075,0.613,0.0,0.0,0.0,0.0,2120.8,3378.7,3378.7,22.146,18.983,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.063,-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.131,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.02,146.02,68.279,68.279,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.335,1.068,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.687,9.075,0.609,0.0,0.0,0.0,0.0,3267.1,5193.7,5193.7,21.946,21.105,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.198,-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.808,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.504,92.504,64.73,64.73,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.335,1.068,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.687,9.075,0.609,0.0,0.0,0.0,0.0,3218.2,4791.2,4791.2,21.946,21.105,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.198,-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.808,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.857,52.857,24.609,24.609,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.672,0.664,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.508,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2783.2,2783.2,24.266,17.141,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.059,-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.651,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.428,26.428,25.592,25.592,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.544,0.424,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,1639.3,2064.6,2064.6,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.141,63.141,35.588,35.588,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.077,0.762,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.244,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3303.3,3303.3,23.266,18.284,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.012,-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.908,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.766,57.766,35.979,35.979,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.471,0.857,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.931,9.075,0.613,0.0,0.0,0.0,0.0,2130.6,3486.4,3486.4,23.012,18.839,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.068,-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.61,-0.168,0.0,3.215,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.057,581.057,358.392,358.392,222.666,0.0,0.0,0.0,0.0,0.0,0.0,3.673,0.0,0.0,43.524,8.273,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,143.943,90.753,6.137,0.0,0.0,0.0,0.0,21193.7,33725.5,33725.5,230.319,189.27,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.536,-4.632,-0.518,26.861,-0.262,-14.064,117.236,0.0,0.0,0.0,-63.455,-0.596,-11.7,-31.063,-1.655,0.0,31.45,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,125.956,125.956,50.676,50.676,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.621,0.893,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.545,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4375.5,4375.5,22.733,19.545,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.093,-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.323,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,58.927,32.041,36.661,9.774,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,-26.886,0.0,0.822,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,2176.0,3446.4,3446.4,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,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.342,32.456,35.408,8.522,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.073,0.534,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.871,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.132,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2690.3,2690.3,18.031,11.746,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.281,-0.037,2.417,-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.329,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.453,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.287,33.4,38.021,11.134,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,-26.886,0.0,2.182,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,2301.3,3582.5,3582.5,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,4.399,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.84,32.954,37.574,10.687,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,-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.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,5.591,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,58.927,32.041,36.661,9.774,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,-26.886,0.0,0.822,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,2176.0,3446.4,3446.4,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,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.84,41.764,37.574,2.498,30.766,8.5,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,-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.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,16.862,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,75.952,40.877,36.686,1.61,30.766,8.5,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,-26.886,-8.189,0.847,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.394,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3435.5,3435.5,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,84.903,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.105,40.03,35.839,0.764,30.766,8.5,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,-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.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-pv.xml,58.105,31.219,35.839,8.953,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,-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.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-lighting-ceiling-fans.xml,58.359,58.359,36.093,36.093,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.136,0.774,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.525,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.852,0.0,13.498,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3416.4,3416.4,23.032,18.686,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.063,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.493,-0.056,2.604,-0.033,-1.493,11.73,0.0,0.0,0.0,-6.457,-0.059,-1.181,-4.017,-0.171,0.0,2.964,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.192,58.192,35.907,35.907,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,9.017,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2407.8,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.698,59.698,39.302,39.302,20.396,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.473,0.855,9.016,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.396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.1,0.0,14.87,9.075,0.613,0.0,0.0,0.0,0.0,2414.8,3536.9,3536.9,22.763,19.399,0.0,3.59,3.667,0.516,7.604,0.636,10.161,-12.654,0.0,0.0,0.0,8.421,-0.068,4.816,0.0,0.731,0.0,4.467,-8.891,-4.249,0.0,-0.075,-0.479,-0.054,2.64,-0.03,-1.446,11.743,0.0,0.0,0.0,-6.408,-0.065,-1.171,-4.013,-0.167,0.0,3.245,7.887,3.428,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-mixed.xml,58.171,58.171,35.885,35.885,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,9.017,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2131.0,3374.9,3374.9,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,55.949,55.949,30.913,30.913,25.036,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.826,0.7,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.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.447,0.0,12.177,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3173.3,3173.3,23.408,17.956,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.197,-0.059,4.798,0.0,0.728,0.0,5.365,-8.928,0.0,0.0,-0.017,-0.445,-0.049,2.741,-0.021,-1.348,11.719,0.0,0.0,0.0,-6.229,-0.054,-1.143,-3.746,-0.165,0.0,2.735,8.375,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.582,55.582,30.526,30.526,25.056,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.936,0.726,9.019,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.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,12.566,9.075,0.616,0.0,0.0,0.0,0.0,1722.6,3138.5,3138.5,23.408,18.169,0.0,3.511,3.615,0.509,7.44,0.625,10.029,-12.718,0.0,0.0,0.0,8.212,-0.058,4.798,0.0,0.728,0.0,5.369,-8.928,0.0,0.0,0.023,-0.398,-0.043,2.868,-0.009,-1.209,11.719,0.0,0.0,0.0,-6.037,-0.054,-1.11,-3.561,-0.157,0.0,2.852,7.852,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-location-AMY-2012.xml,66.881,66.881,34.698,34.698,32.183,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,2.927,0.481,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.183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,8.638,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2850.8,2850.8,23.49,15.74,0.0,4.269,4.385,0.623,9.841,0.807,12.586,-13.821,0.0,0.0,0.0,11.007,-0.085,5.205,0.0,0.774,0.0,7.114,-10.175,-2.864,0.0,0.005,-0.334,-0.041,1.637,-0.043,-1.644,9.921,0.0,0.0,0.0,-7.38,-0.076,-0.875,-2.687,-0.096,0.0,2.081,6.658,1.66,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,38.917,38.917,29.707,29.707,9.21,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.008,1.008,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.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,8.508,0.0,16.746,8.405,0.66,0.0,0.0,0.0,0.0,1684.8,2550.8,2550.8,13.608,14.212,0.0,3.493,3.346,0.0,0.0,0.722,9.059,-8.542,0.0,0.0,3.31,0.0,-0.338,2.061,0.0,0.803,0.0,1.498,-5.844,-1.3,0.0,-0.106,-0.597,0.0,0.0,0.001,0.126,12.016,0.0,0.0,-0.893,0.0,-0.331,-0.42,-2.304,-0.206,0.0,1.546,6.739,1.347,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,27.814,27.814,27.654,27.654,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.058,0.954,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,15.536,7.296,0.693,0.0,0.0,0.0,0.0,1857.0,2417.0,2417.0,4.203,12.632,0.0,1.599,1.354,0.0,0.0,0.569,4.537,-5.641,0.0,0.0,2.605,0.0,-1.069,0.757,0.0,0.326,0.0,0.023,-4.306,-0.792,0.0,-0.849,-1.578,0.0,0.0,-0.453,-0.438,17.801,0.0,0.0,-4.133,0.0,-1.07,-0.569,-3.587,-0.397,0.0,0.972,8.278,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.243,34.243,32.52,32.52,1.723,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.826,1.846,6.71,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,30.786,6.562,0.574,0.0,0.0,0.0,0.0,1925.7,2832.5,2832.5,9.692,15.098,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.213,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.523,-0.032,0.0,0.0,0.192,2.657,17.264,0.0,0.0,0.0,1.856,-0.335,-0.356,-2.421,-0.097,0.0,0.353,9.561,1.904,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-location-duluth-mn.xml,70.515,70.515,29.62,29.62,40.895,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.289,0.329,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.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.0,5.406,11.397,0.834,0.0,0.0,0.0,0.0,1752.4,2446.9,2446.9,26.512,11.633,0.0,7.03,7.028,0.0,0.0,1.592,19.664,-13.103,0.0,0.0,9.995,0.0,-0.366,6.402,0.0,0.0,0.0,7.573,-6.247,-1.915,0.0,-0.44,-0.793,0.0,0.0,-0.092,-0.843,8.135,0.0,0.0,-1.561,0.0,-0.366,-0.508,-1.641,0.0,0.0,0.345,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.718,77.718,35.25,35.25,42.467,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.4,0.369,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.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,0.0,0.0,40.11,0.0,6.385,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3001.5,3001.5,30.328,14.851,0.0,5.359,5.464,0.773,11.524,1.049,15.462,-15.392,0.0,0.0,0.0,13.845,-0.19,7.82,0.0,1.206,0.0,8.246,-12.135,-3.367,0.0,0.008,-0.255,-0.027,1.301,0.009,-0.482,8.386,0.0,0.0,0.0,-6.063,-0.184,-0.68,-2.507,-0.122,0.0,1.32,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.6,35.6,35.6,35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.836,2.889,4.746,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.398,4.497,0.55,0.0,0.0,0.0,0.0,2130.5,2106.3,2282.4,0.0,13.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,1.245,0.761,0.0,0.0,0.304,5.305,20.458,0.0,0.0,0.0,6.041,-0.004,-0.041,-2.115,0.063,0.0,0.738,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,34.751,34.751,34.751,34.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.058,2.686,4.876,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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,44.892,4.634,0.552,0.0,0.0,0.0,0.0,2083.3,2402.8,2402.8,0.0,13.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.037,0.606,0.0,0.0,0.312,4.537,19.646,0.0,0.0,0.0,5.599,-0.004,-0.201,-2.929,-0.001,0.0,0.681,13.136,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.512,38.512,38.511,38.511,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.355,2.921,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,52.977,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3307.2,3307.2,0.564,18.415,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.766,1.406,0.0,0.0,0.804,6.879,24.223,0.0,0.0,0.0,7.021,-0.479,0.014,-3.281,0.117,0.0,0.95,11.527,2.372,1354.8,997.6,8260.5,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,36.932,36.932,27.395,27.395,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.775,0.511,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,8.421,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2663.0,2663.0,8.448,14.118,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.217,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.279,-0.746,0.0,0.0,0.003,-0.6,10.358,0.0,0.0,-2.866,0.0,-0.439,-0.339,-2.898,-0.248,0.0,0.534,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.399,79.399,37.588,37.588,41.811,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.0,0.0,4.061,0.746,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.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,39.159,0.0,12.895,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3770.9,3770.9,32.383,21.475,0.0,3.51,3.724,0.524,7.442,0.656,10.396,-12.846,0.0,0.0,0.0,8.145,-0.118,5.506,0.0,15.102,0.0,8.577,-9.186,-2.572,0.0,0.169,-0.24,-0.02,3.025,0.036,-0.659,11.568,0.0,0.0,0.0,-5.919,-0.114,-0.996,-3.03,-3.486,0.0,3.102,7.599,1.938,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.774,59.774,35.804,35.804,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.211,0.791,9.018,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.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,13.723,9.075,0.615,0.0,0.0,0.0,0.0,2184.9,3585.7,3585.7,24.906,20.499,0.0,3.547,3.643,0.513,7.528,0.63,10.092,-12.692,0.0,0.0,0.0,8.338,-0.059,4.321,0.0,2.474,0.0,5.172,-8.912,-2.501,0.0,-0.022,-0.434,-0.048,2.771,-0.019,-1.317,11.721,0.0,0.0,0.0,-6.192,-0.055,-1.025,-3.732,-0.678,0.0,3.064,7.868,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,18787.0,5329.0,7037.0,0.0,207.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.752,72.752,37.5,37.5,35.253,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.712,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,33.017,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.4,3636.4,3636.4,29.389,21.234,0.0,3.488,3.663,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.072,1.506,0.0,13.873,0.0,7.366,-9.006,-2.523,0.0,0.058,-0.349,-0.036,2.95,0.006,-1.027,11.663,0.0,0.0,0.0,-5.928,-0.068,-0.25,-3.306,-3.208,0.0,3.126,7.776,1.987,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,72.858,72.858,38.447,38.447,34.411,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,4.857,0.859,9.021,0.0,0.0,4.51,0.0,0.334,1.867,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.762,0.0,10.241,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.1,2937.1,21.242,13.424,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.317,-0.075,1.506,0.0,13.749,0.0,0.0,-9.003,-2.522,0.0,0.144,-0.351,-0.036,2.948,0.005,-1.028,11.674,0.0,0.0,0.0,-5.932,-0.071,-0.25,-3.298,-3.176,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.127,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2028.9,2119.8,0.0,18.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.158,-0.347,-0.034,3.018,-0.001,-1.07,11.85,0.0,0.0,0.0,-6.52,-0.058,-0.253,-3.067,-3.054,0.0,0.645,8.013,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,69.956,69.956,36.141,36.141,33.815,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.054,0.747,9.022,0.0,0.0,4.51,0.0,0.334,0.484,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,31.67,0.0,12.938,9.075,0.62,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.219,0.0,3.52,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.085,1.917,0.0,12.485,0.0,7.091,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.014,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.248,-3.126,-3.977,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.082,72.082,36.169,36.169,35.913,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.47,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.1,3634.9,3634.9,29.39,21.223,0.0,3.496,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.509,0.0,14.436,0.0,7.481,-9.041,-2.532,0.0,0.089,-0.32,-0.031,2.991,0.013,-0.934,11.639,0.0,0.0,0.0,-5.882,-0.073,-0.241,-3.187,-3.822,0.0,3.072,7.742,1.978,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,73.974,73.974,37.444,37.444,36.53,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,4.101,0.757,9.021,0.0,0.0,4.51,0.0,0.334,1.687,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,34.214,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.215,0.0,3.493,3.707,0.522,7.473,0.652,10.345,-12.783,0.0,0.0,0.0,8.216,-0.117,1.52,0.0,14.064,0.0,8.497,-9.107,-2.551,0.0,0.161,-0.288,-0.027,2.968,0.024,-0.808,11.63,0.0,0.0,0.0,-5.968,-0.113,-0.229,-3.173,-2.985,0.0,2.407,7.676,1.959,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,64.818,64.818,37.58,37.58,27.237,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.508,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.349,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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,64.821,64.821,37.58,37.58,27.241,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.511,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.35,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.909,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.093,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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,64.816,64.816,37.581,37.581,27.235,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.506,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.4,3567.4,25.348,20.019,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.904,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.836,0.0,3.135,7.852,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,64.819,64.819,37.581,37.581,27.238,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.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,25.509,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.5,3567.5,25.349,20.02,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.135,7.852,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.519,80.519,37.994,37.994,42.525,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.359,0.638,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,39.829,0.0,11.036,9.075,0.623,0.0,0.0,0.0,17.0,2271.7,3978.8,3978.8,35.903,23.182,0.0,3.191,3.72,0.523,7.484,0.654,10.365,-12.799,0.0,0.0,0.0,8.264,-0.112,3.854,0.0,9.575,0.0,16.45,-9.116,-2.555,0.0,0.122,-0.176,-0.011,3.258,0.05,-0.49,11.614,0.0,0.0,0.0,-5.538,-0.107,-0.584,0.0,-2.064,-9.14,4.551,7.671,1.955,1354.8,997.6,11171.6,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.203,72.203,36.644,36.644,35.559,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,4.105,0.758,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.559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,0.0,13.124,9.075,0.619,0.0,0.0,0.0,0.0,2161.4,3664.9,3664.9,29.255,21.263,0.0,3.496,3.671,0.516,7.491,0.64,10.21,-12.765,0.0,0.0,0.0,8.304,-0.08,1.509,0.0,14.164,0.0,7.413,-9.037,-2.53,0.0,0.085,-0.323,-0.032,2.988,0.013,-0.938,11.648,0.0,0.0,0.0,-5.883,-0.076,-0.241,-3.192,-3.668,0.0,3.107,7.746,1.979,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.506,56.506,34.04,34.04,22.465,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,2.345,0.349,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.675,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.039,0.0,5.929,9.075,0.624,0.0,0.0,0.0,0.0,2119.4,3330.5,3330.5,23.032,15.879,0.0,3.553,3.643,0.513,7.548,0.63,10.093,-12.683,0.0,0.0,0.0,8.448,-0.057,4.805,0.0,0.729,0.0,4.875,-8.905,-2.499,0.0,0.166,-0.229,-0.018,3.367,0.031,-0.704,11.73,0.0,0.0,0.0,-5.266,-0.053,-0.948,0.0,-0.13,-13.009,1.634,7.883,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,0.729,35.707,-21.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-57.264,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.188,43.837,31.372,12.021,31.816,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.141,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.352,0.0,0.509,31.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,29.781,0.0,5.079,10.472,0.697,0.0,9.068,0.0,0.0,2428.2,2923.3,2923.3,26.046,14.897,0.0,3.497,3.692,0.519,7.466,1.12,10.331,-12.811,0.0,0.0,0.0,8.262,-0.098,1.533,0.0,15.089,0.0,2.758,-9.292,-2.56,0.0,0.755,-0.059,0.006,3.521,-0.186,-0.214,11.602,0.0,0.0,0.0,-5.113,-0.094,-0.189,0.0,-3.299,-11.827,0.418,8.621,1.95,1610.4,1574.2,10321.5,3637.4,2.899,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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.728,68.538,37.442,29.253,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.695,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.681,55.681,35.628,35.628,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.213,0.792,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,18.778,0.0,13.744,9.075,0.614,0.0,0.0,0.0,0.0,2120.8,3375.3,3375.3,22.146,18.952,0.0,3.593,3.667,0.516,7.313,0.636,10.164,-12.663,0.0,0.0,0.0,6.708,-0.063,4.813,0.0,0.731,0.0,4.403,-8.891,-2.496,0.0,-0.043,-0.456,-0.051,2.435,-0.024,-1.381,11.75,0.0,0.0,0.0,-6.058,-0.059,-1.156,-3.846,-0.165,0.0,3.063,7.887,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,145.878,145.878,68.109,68.109,69.773,0.0,2.499,5.496,0.0,0.0,0.0,0.281,0.0,0.0,5.2,1.033,9.013,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.009,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.926,0.0,18.01,9.075,0.61,0.0,0.0,0.0,0.0,3267.1,5190.8,5190.8,21.946,21.08,0.0,3.635,3.692,0.52,7.726,0.64,10.227,-12.598,0.0,0.0,0.0,8.572,-0.065,4.831,0.0,0.734,0.0,3.786,-13.808,-2.35,0.0,-0.177,-0.56,-0.065,2.46,-0.052,-1.702,11.815,0.0,0.0,0.0,-6.695,-0.061,-1.243,-4.508,-0.178,0.0,3.746,13.227,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.362,92.362,64.56,64.56,19.807,2.499,0.0,0.0,5.496,0.0,0.0,0.281,0.0,0.0,5.2,1.033,9.013,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.009,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.926,0.0,18.01,9.075,0.61,0.0,0.0,0.0,0.0,3218.2,4788.3,4788.3,21.946,21.08,0.0,3.635,3.692,0.52,7.726,0.64,10.227,-12.598,0.0,0.0,0.0,8.572,-0.065,4.831,0.0,0.734,0.0,3.786,-13.808,-2.35,0.0,-0.177,-0.56,-0.065,2.46,-0.052,-1.702,11.815,0.0,0.0,0.0,-6.695,-0.061,-1.243,-4.508,-0.178,0.0,3.746,13.227,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.764,52.764,24.501,24.501,28.263,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.585,0.642,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.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,26.471,0.0,11.114,9.075,0.618,0.0,0.0,0.0,0.0,1523.4,2778.7,2778.7,24.266,17.103,0.0,3.475,3.599,0.506,7.397,0.622,9.985,-12.73,0.0,0.0,0.0,8.175,-0.054,4.795,0.0,0.726,0.0,5.975,-3.801,-2.512,0.0,0.077,-0.352,-0.036,3.014,0.003,-1.056,11.683,0.0,0.0,0.0,-5.809,-0.05,-1.065,-3.277,-0.149,0.0,2.59,3.707,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.393,26.393,25.555,25.555,0.838,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.514,0.416,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,0.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,0.774,0.0,6.873,9.374,0.586,0.0,0.0,0.0,0.0,1639.3,1973.1,1973.1,3.335,8.14,0.0,-0.013,3.831,0.0,0.0,0.417,4.069,-3.187,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.321,-0.937,0.0,-0.008,-2.725,0.0,0.0,-0.009,-0.663,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.386,-1.427,-0.267,0.0,0.0,6.655,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.037,63.037,35.464,35.464,27.573,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.977,0.737,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.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.821,0.0,12.78,9.075,0.616,0.0,0.0,0.0,0.0,2119.3,3299.7,3299.7,23.266,18.251,0.0,3.479,3.709,0.541,7.362,0.776,10.707,-8.74,0.0,0.0,0.0,7.873,-0.057,4.786,0.0,0.724,0.0,5.785,-8.918,-2.502,0.0,0.007,-0.449,-0.052,2.823,-0.035,-1.285,10.323,0.0,0.0,0.0,-6.1,-0.051,-1.126,-3.67,-0.159,0.0,2.847,7.862,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.656,57.656,35.849,35.849,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.367,0.83,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.421,0.0,14.432,9.075,0.614,0.0,0.0,0.0,0.0,2121.0,3361.9,3361.9,23.012,18.812,0.0,3.561,3.646,0.513,7.537,0.631,10.1,-12.683,0.0,0.0,0.0,8.321,-0.061,4.424,0.0,0.73,0.0,4.745,-8.899,-2.498,0.0,-0.05,-0.46,-0.051,2.691,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.328,-0.057,-1.044,-3.311,-0.166,0.0,3.154,7.879,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,579.934,579.934,357.074,357.074,222.86,0.0,0.0,0.0,0.0,0.0,0.0,3.676,0.0,0.0,42.465,8.005,90.165,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.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,208.703,0.0,138.95,90.753,6.145,0.0,0.0,0.0,0.0,21193.7,33691.0,33691.0,230.319,188.957,0.0,35.569,36.455,5.13,75.326,6.309,101.016,-126.896,0.0,0.0,0.0,83.307,-0.629,48.074,0.0,7.296,0.0,48.37,-89.081,-24.996,0.0,-0.341,-4.455,-0.493,27.32,-0.217,-13.514,117.236,0.0,0.0,0.0,-62.592,-0.59,-11.461,-38.277,-1.63,0.0,30.818,78.703,20.1,13548.2,9976.1,111715.6,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,125.835,125.835,50.534,50.534,68.106,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.507,0.864,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.617,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.307,0.0,14.997,8.168,0.613,0.0,0.0,0.0,0.0,2729.6,4221.2,4221.2,22.733,19.515,0.0,3.581,3.658,0.515,7.578,0.633,10.137,-12.664,0.0,0.0,0.0,8.378,-0.064,4.863,0.0,0.658,0.0,4.508,-10.586,-2.246,0.0,-0.074,-0.478,-0.054,2.644,-0.03,-1.451,11.751,0.0,0.0,0.0,-6.398,-0.061,-1.185,-4.03,-0.151,0.0,3.26,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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.264,32.377,35.315,8.429,23.949,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.997,0.515,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.873,23.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,8.788,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2687.7,2687.7,18.031,11.724,0.0,3.532,3.792,0.503,5.85,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.765,-6.763,-2.508,0.0,0.119,-0.264,-0.034,2.449,0.002,-1.1,8.269,0.0,0.0,0.0,-5.62,-0.04,-1.205,-2.609,0.0,0.0,1.289,5.683,2.002,1354.8,997.6,11171.6,2563.5,21.851,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.186,33.299,37.9,11.014,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,2.193,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2301.3,3578.6,3578.6,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,4.489,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.728,32.841,37.442,10.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,1.735,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,5.702,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.728,41.652,37.442,2.366,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,17.116,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,75.839,40.763,36.553,1.478,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,0.846,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2165.1,3431.9,3431.9,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,85.93,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,74.993,39.917,35.707,0.632,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.361,0.597,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.821,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2211.7,2211.7,25.495,15.471,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.152,-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.425,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.016,101.016,51.977,51.977,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.544,0.875,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.423,3.562,0.613,0.0,0.0,0.0,0.0,2604.8,4502.7,4502.7,22.989,19.475,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.094,-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.32,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,79.962,79.962,49.551,49.551,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.544,0.875,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.423,3.562,0.613,0.0,0.0,0.0,0.0,2406.4,4243.0,4243.0,22.989,19.475,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.094,-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.32,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.727,52.727,28.356,28.356,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.025,0.749,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.184,3.562,0.615,0.0,0.0,0.0,0.0,1640.1,3190.1,3190.1,23.634,18.227,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.015,-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,2.955,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.374,49.122,39.86,19.609,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.364,0.354,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.396,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.884,18.166,0.644,0.0,11.901,0.0,0.0,3043.8,3199.7,3199.7,25.599,15.561,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.48,10.475,1.974,2592.1,2706.5,20694.5,5541.1,1.847,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.48,59.48,36.083,36.083,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.525,0.862,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,14.938,9.053,0.638,0.0,0.0,0.333,1.0,9422.1,10695.3,10695.3,37.366,22.441,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.176,-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.367,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.446,33.446,28.601,28.601,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.259,0.559,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.775,7.3,0.56,0.0,0.0,0.5,0.5,9397.2,10434.9,10434.9,41.543,22.033,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.246,-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.31,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.356,42.356,34.304,34.304,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.271,0.562,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.824,9.053,0.67,0.0,0.0,0.0,0.5,9393.8,10437.8,10437.8,31.865,22.036,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.249,-0.603,-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.32,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.889,58.889,35.997,35.997,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.444,0.848,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.736,8.987,0.615,0.0,0.0,0.0,0.0,6629.1,7170.6,9091.3,31.35,21.296,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.053,-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.093,-0.189,0.0,3.21,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.519,44.519,30.174,30.174,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.414,0.841,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.618,7.313,0.517,0.0,0.0,17.0,0.0,6231.1,5670.7,6231.1,36.507,19.784,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.053,-0.461,-0.052,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.186,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.557,57.557,30.764,30.764,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.432,0.846,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.697,7.303,0.614,0.0,0.0,0.0,0.0,4487.7,5677.0,5677.0,30.776,19.84,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.058,-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.2,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.825,58.825,35.956,35.956,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.433,0.846,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.699,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5677.2,5677.2,30.649,19.842,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.059,-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.2,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,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.3,3745.3,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-schedules-detailed-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-schedules-detailed-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.128,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3176.1,3176.1,17.397,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-schedules-simple-power-outage.xml,54.84,54.84,32.427,32.427,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.384,0.607,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.641,8.454,0.58,0.0,0.0,0.0,4.0,1990.4,5801.3,5801.3,23.066,22.78,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.096,-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.296,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.162,57.162,30.552,30.552,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.38,0.834,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.509,7.302,0.614,0.0,0.0,0.0,0.0,1965.3,3394.2,3394.2,23.124,19.007,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.057,-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.166,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.275,58.275,35.874,35.874,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.38,0.834,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.513,9.075,0.614,0.0,0.0,0.0,0.0,1984.0,3392.4,3392.4,23.066,18.992,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.057,-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.166,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.082,58.082,35.81,35.81,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.328,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.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.298,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3382.2,3382.2,23.032,18.929,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.048,-0.46,-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.11,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.106,58.106,35.839,35.839,22.267,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.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.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.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.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-simcontrol-daylight-saving-disabled.xml,58.077,58.077,35.824,35.824,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.339,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.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.338,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3295.8,3295.8,23.032,18.536,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.053,-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.122,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-residents-1-misc-loads-large-uncommon.xml,100.904,100.904,51.844,51.844,41.154,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2581.2,4359.9,4359.9,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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,79.85,79.85,49.418,49.418,22.526,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2382.9,4091.7,4091.7,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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.631,52.631,28.242,28.242,24.389,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.933,0.726,3.888,0.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.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.841,0.0,12.74,3.562,0.616,0.0,0.0,0.0,0.0,1659.2,3186.1,3186.1,23.634,18.192,0.0,3.531,3.633,0.511,7.496,0.629,10.079,-12.698,0.0,0.0,0.0,8.301,-0.064,4.803,0.0,0.727,0.0,5.255,-7.189,-2.504,0.0,0.003,-0.415,-0.045,2.827,-0.013,-1.246,11.715,0.0,0.0,0.0,-6.109,-0.06,-1.114,-3.587,-0.158,0.0,2.892,6.197,2.006,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,18787.0,5329.0,7037.0,0.0,207.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.279,49.028,39.741,19.49,29.538,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.247,0.327,6.919,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.125,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.402,29.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,27.648,0.0,5.459,18.165,0.646,0.0,11.901,0.0,0.0,3043.8,3169.5,3169.5,25.599,15.294,0.0,3.801,3.697,0.52,7.525,0.646,10.274,-12.772,0.0,0.0,0.0,8.383,-0.078,1.526,0.0,15.016,0.0,2.564,-11.192,-2.539,0.0,0.286,-0.128,-0.004,3.482,0.059,-0.375,11.641,0.0,0.0,0.0,-5.144,-0.074,-0.202,0.0,-3.462,-12.604,0.447,10.463,1.971,2592.1,2706.5,20695.6,5541.4,1.874,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.371,59.371,35.954,35.954,23.417,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.421,0.836,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.529,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.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,21.928,0.0,14.458,9.053,0.639,0.0,0.0,0.333,1.0,9422.1,10694.0,10694.0,37.366,22.431,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.34,-0.062,5.307,0.0,0.78,0.0,5.114,-8.97,-2.51,0.0,-0.156,-0.472,-0.054,2.75,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.247,-0.058,-1.254,-3.683,-0.172,0.0,3.305,8.307,2.0,1354.7,998.0,11252.4,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.264,33.264,28.415,28.415,4.849,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.106,0.523,7.326,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.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,4.542,0.0,9.14,7.3,0.562,0.0,0.0,0.5,0.5,9397.2,10430.4,10430.4,41.543,22.03,0.0,2.613,2.46,0.344,4.288,0.335,6.49,-12.497,0.0,0.0,0.0,3.717,-0.101,3.385,0.0,0.384,0.0,1.014,-6.566,-1.596,0.0,-0.196,-0.552,-0.065,2.495,-0.053,-1.664,11.861,0.0,0.0,0.0,-7.407,-0.056,-1.323,-6.195,-0.206,0.0,2.188,8.45,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.184,42.184,34.117,34.117,8.067,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.117,0.526,9.053,0.0,0.0,4.51,0.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.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,7.554,0.0,9.185,9.053,0.672,0.0,0.0,0.0,0.5,9393.8,10433.4,10433.4,31.865,22.032,0.0,2.915,2.807,0.393,5.404,0.421,7.516,-12.492,0.0,0.0,0.0,5.535,-0.056,3.86,0.0,0.581,0.0,1.734,-8.86,-2.486,0.0,-0.199,-0.555,-0.065,2.499,-0.054,-1.674,11.861,0.0,0.0,0.0,-7.338,-0.055,-1.325,-6.213,-0.206,0.0,2.197,8.45,2.023,1354.7,998.0,11253.8,2582.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-10-mins.xml,58.778,58.778,35.864,35.864,22.914,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.337,0.821,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.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,21.455,0.0,14.236,8.987,0.616,0.0,0.0,0.0,0.0,6629.1,7147.0,9091.5,31.35,21.288,0.0,3.557,3.648,0.513,7.538,0.632,10.109,-12.685,0.0,0.0,0.0,8.331,-0.059,5.322,0.0,0.764,0.0,4.949,-8.988,-2.501,0.0,-0.034,-0.443,-0.049,2.737,-0.021,-1.344,11.729,0.0,0.0,0.0,-6.257,-0.055,-1.261,-3.82,-0.188,0.0,3.148,8.365,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.403,44.403,30.041,30.041,14.361,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.307,0.814,7.294,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.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,13.453,0.0,14.115,7.313,0.518,0.0,0.0,17.0,0.0,6231.1,5666.8,6231.1,36.507,19.751,0.0,3.074,3.069,0.431,5.718,0.489,8.384,-12.686,0.0,0.0,0.0,5.199,-0.154,4.373,0.0,0.513,0.0,3.022,-6.68,-1.621,0.0,-0.035,-0.443,-0.049,2.722,-0.021,-1.343,11.731,0.0,0.0,0.0,-6.358,-0.057,-1.247,-3.815,-0.184,0.0,3.124,8.281,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.444,57.444,30.631,30.631,26.814,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.325,0.819,7.369,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.814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.11,0.0,14.191,7.303,0.615,0.0,0.0,0.0,0.0,4487.7,5673.1,5673.1,30.776,19.807,0.0,3.504,3.621,0.51,7.455,0.626,10.04,-12.679,0.0,0.0,0.0,8.162,-0.063,5.305,0.0,0.513,0.0,5.701,-6.297,-1.615,0.0,-0.04,-0.448,-0.05,2.728,-0.022,-1.354,11.739,0.0,0.0,0.0,-6.274,-0.058,-1.25,-3.831,-0.184,0.0,3.137,8.287,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.712,58.712,35.823,35.823,22.89,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.326,0.819,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.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,21.434,0.0,14.193,9.071,0.615,0.0,0.0,0.0,0.0,4690.8,5673.3,5673.3,30.649,19.809,0.0,3.553,3.644,0.513,7.532,0.631,10.101,-12.674,0.0,0.0,0.0,8.322,-0.062,5.264,0.0,0.777,0.0,4.947,-8.954,-2.502,0.0,-0.04,-0.448,-0.05,2.729,-0.022,-1.354,11.739,0.0,0.0,0.0,-6.271,-0.058,-1.25,-3.831,-0.184,0.0,3.137,8.287,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,56.81,56.81,35.088,35.088,21.722,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.738,0.698,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,21.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,19.968,0.0,11.864,9.075,0.616,0.0,0.0,101.0,39.0,2155.4,3622.1,3622.1,34.947,20.795,0.0,3.517,3.579,0.503,7.526,0.608,9.826,-12.674,0.0,0.0,0.0,8.696,0.007,4.652,0.0,0.727,0.0,4.504,-8.859,-2.496,0.0,-0.046,-0.477,-0.054,2.68,-0.036,-1.514,11.74,0.0,0.0,0.0,-6.553,-0.003,-1.191,-4.268,-0.171,0.0,2.371,7.921,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.182,56.182,35.242,35.242,20.941,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.876,0.725,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.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.521,0.0,12.472,9.075,0.617,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.321,0.0,3.507,3.561,0.5,7.358,0.604,9.775,-12.716,0.0,0.0,0.0,8.214,-0.022,4.638,0.0,0.724,0.0,4.392,-8.884,-2.501,0.0,-0.033,-0.475,-0.054,2.629,-0.035,-1.511,11.697,0.0,0.0,0.0,-6.537,-0.023,-1.176,-4.187,-0.174,0.0,2.531,7.897,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.141,41.141,33.839,33.839,7.302,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.911,0.484,9.048,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.832,0.0,8.482,9.075,0.648,0.0,0.0,0.0,0.0,2101.0,3099.8,3099.8,17.397,16.056,0.0,2.849,2.784,0.389,5.358,0.41,7.446,-12.563,0.0,0.0,0.0,5.534,-0.056,3.474,0.0,0.571,0.0,1.562,-8.807,-2.473,0.0,-0.074,-0.525,-0.06,2.493,-0.046,-1.622,11.85,0.0,0.0,0.0,-7.34,-0.056,-1.202,-6.392,-0.181,0.0,1.962,8.005,2.036,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-schedules-simple-power-outage.xml,54.784,54.784,32.353,32.353,22.431,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.324,0.592,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.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.006,0.0,10.358,8.454,0.581,0.0,0.0,0.0,4.0,1984.0,5802.9,5802.9,23.066,22.779,0.0,3.554,3.642,0.513,7.525,0.63,10.09,-12.684,0.0,0.0,0.0,8.302,-0.061,4.76,0.0,0.795,0.0,4.864,-8.902,-2.367,0.0,-0.081,-0.521,-0.06,2.525,-0.041,-1.587,11.731,0.0,0.0,0.0,-6.557,-0.057,-1.213,-4.371,-0.171,0.0,2.256,6.937,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.05,57.05,30.42,30.42,26.631,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.273,0.807,7.367,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.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,24.939,0.0,14.006,7.302,0.615,0.0,0.0,0.0,0.0,1965.3,3390.8,3390.8,23.124,18.976,0.0,3.503,3.619,0.509,7.448,0.625,10.031,-12.688,0.0,0.0,0.0,8.155,-0.064,4.961,0.0,0.552,0.0,5.671,-6.163,-1.548,0.0,-0.038,-0.448,-0.05,2.726,-0.022,-1.357,11.729,0.0,0.0,0.0,-6.271,-0.059,-1.126,-3.834,-0.197,0.0,3.103,7.873,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.163,58.163,35.742,35.742,22.421,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.274,0.807,9.017,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.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.997,0.0,14.009,9.075,0.615,0.0,0.0,0.0,0.0,1990.4,3389.0,3389.0,23.066,18.961,0.0,3.554,3.642,0.513,7.527,0.63,10.09,-12.684,0.0,0.0,0.0,8.314,-0.06,4.804,0.0,0.729,0.0,4.863,-8.902,-2.367,0.0,-0.038,-0.449,-0.05,2.726,-0.023,-1.363,11.729,0.0,0.0,0.0,-6.272,-0.057,-1.149,-3.838,-0.164,0.0,3.102,7.877,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,57.952,57.952,35.663,35.663,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.211,0.792,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.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,20.873,0.0,13.726,9.075,0.615,0.0,0.0,0.0,0.0,2119.6,3374.5,3374.5,23.032,18.865,0.0,3.556,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.807,0.0,0.729,0.0,4.838,-8.905,-2.499,0.0,-0.031,-0.444,-0.049,2.746,-0.021,-1.347,11.73,0.0,0.0,0.0,-6.254,-0.059,-1.146,-3.998,-0.163,0.0,3.047,7.874,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,57.994,57.994,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.871,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.966,57.966,35.693,35.693,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.235,0.798,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.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.858,0.0,13.843,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3291.9,3291.9,23.032,18.501,0.0,3.555,3.643,0.513,7.532,0.63,10.088,-12.683,0.0,0.0,0.0,8.324,-0.059,4.804,0.0,0.727,0.0,4.833,-8.9,-2.496,0.0,-0.035,-0.448,-0.05,2.728,-0.023,-1.364,11.73,0.0,0.0,0.0,-6.265,-0.055,-1.152,-3.843,-0.161,0.0,3.06,7.878,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,57.995,57.995,35.736,35.736,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.268,0.808,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.05,9.075,0.614,0.0,0.0,0.0,0.0,2110.3,3355.2,3355.2,22.973,18.841,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.221,-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,2.994,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.49,59.49,36.077,36.077,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.524,0.862,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.931,9.074,0.616,0.0,0.0,0.333,1.0,8643.3,8929.7,9252.7,37.369,22.44,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.176,-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.366,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.411,59.411,36.07,36.07,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.522,0.861,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.924,9.071,0.614,0.0,0.0,0.0,0.167,6063.1,7308.9,7308.9,35.1,21.787,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.176,-0.489,-0.056,2.703,-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.364,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.711,58.711,35.951,35.951,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.439,0.842,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.613,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4910.1,4910.1,23.32,18.84,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.171,-0.487,-0.056,2.709,-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.307,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.485,58.485,35.902,35.902,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.401,0.835,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.49,9.075,0.614,0.0,0.0,0.0,0.0,2158.3,3743.7,3743.7,23.223,18.848,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.14,-0.482,-0.055,2.704,-0.031,-1.435,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.22,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.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 -house001.xml,86.191,86.191,46.895,46.895,39.296,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.71,4.321,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.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.043,0.0,50.722,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.3,6551.3,37.693,42.27,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.558,1.97,3.666,0.303,0.0,0.228,1.548,11.487,0.0,0.0,0.516,6.779,-0.271,-0.434,-1.439,-0.779,0.0,10.726,11.623,4.465,2104.5,2144.0,14468.7,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.927,67.927,40.704,40.704,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.661,3.362,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.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.137,0.0,40.097,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.2,5237.2,23.852,29.59,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.059,2.765,0.0,0.0,0.409,0.354,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,5.882,8.963,3.907,1610.9,1574.7,9989.4,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.425,68.425,40.172,40.172,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.875,3.518,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,41.88,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5416.1,5416.1,26.254,34.245,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.013,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.526,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.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,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.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.106,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,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,94.808,94.808,53.42,53.42,41.389,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.457,5.11,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.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,61.135,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.178,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.951,4.206,0.21,0.0,0.265,2.282,15.363,0.0,0.0,0.41,7.446,-0.36,-0.513,-1.822,-0.766,0.0,14.63,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.133,139.133,31.835,31.835,107.297,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,3.01,0.344,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,2448.6,2448.6,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.649,138.649,33.963,33.963,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.587,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.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.04,15.632,3.268,0.0,0.0,0.0,0.0,2191.9,2549.6,2549.6,39.657,13.506,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,182.998,182.998,39.329,39.329,143.669,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.735,0.557,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.909,18.129,3.213,0.0,0.0,0.0,0.0,2472.9,3401.6,3401.6,54.892,20.571,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.569,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.781,153.781,34.101,34.101,119.68,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.49,0.304,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,2666.2,2666.2,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.499,153.499,37.667,37.667,115.832,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.011,0.285,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,2855.8,2855.8,45.335,15.815,0.876,4.938,25.514,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.928,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.357,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,45.142,45.142,45.142,45.142,0.0,0.0,0.0,0.0,0.0,0.0,6.965,0.634,0.121,0.006,8.457,2.321,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.718,0.128,26.135,9.325,1.123,0.0,0.0,0.0,326.0,5019.5,3218.5,5019.5,18.28,15.961,0.0,2.69,5.465,0.0,0.0,1.636,3.459,-3.192,0.0,0.0,1.872,0.0,-0.39,1.843,0.0,5.406,0.0,4.012,-6.004,-2.079,0.0,1.643,1.235,0.0,0.0,0.147,0.293,5.656,0.0,0.0,0.73,0.0,-0.389,-0.201,-0.182,-1.023,0.0,6.662,8.878,2.825,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.83,35.83,35.83,35.83,0.0,0.0,0.0,0.0,0.0,0.0,4.728,0.25,0.0,0.0,5.898,1.493,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.965,0.0,16.413,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.211,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.323,-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.276,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.573,30.573,30.573,30.573,0.0,0.0,0.0,0.0,0.0,0.0,2.811,0.155,0.0,0.0,3.89,1.273,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.991,0.0,15.061,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.627,2.853,0.0,0.0,0.652,2.618,-2.126,0.0,0.0,2.087,0.0,-0.279,1.517,0.0,1.059,0.0,1.127,-3.66,-1.506,0.0,1.072,0.369,0.0,0.0,-0.095,0.205,3.803,0.0,0.0,0.529,0.0,-0.279,-0.258,-0.197,-0.283,0.0,1.446,6.38,2.46,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,9750.0,1052.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.557,31.557,31.557,31.557,0.0,0.0,0.0,0.0,0.0,0.0,3.332,0.189,0.006,0.0,4.258,1.393,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.389,0.006,16.595,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2156.4,2948.4,10.984,10.439,0.0,1.7,3.69,0.0,0.0,0.583,3.02,-2.479,0.0,0.0,2.205,0.0,-0.243,1.724,0.0,1.115,0.0,1.412,-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.6,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.654,6.113,2.436,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,1682.0,312.0,770.0,600.0 -house015.xml,30.573,30.573,30.573,30.573,0.0,0.0,0.0,0.0,0.0,0.0,2.811,0.155,0.0,0.0,3.89,1.273,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.991,0.0,15.061,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.627,2.853,0.0,0.0,0.652,2.618,-2.126,0.0,0.0,2.087,0.0,-0.279,1.517,0.0,1.059,0.0,1.127,-3.66,-1.506,0.0,1.072,0.369,0.0,0.0,-0.095,0.205,3.803,0.0,0.0,0.529,0.0,-0.279,-0.258,-0.197,-0.283,0.0,1.446,6.38,2.46,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,9750.0,1052.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.259,61.259,39.758,39.758,0.0,0.0,21.502,0.0,0.0,0.0,7.615,0.555,0.187,0.004,2.953,0.965,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.191,11.489,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3522.7,7549.9,43.059,18.712,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.817,91.817,27.919,27.919,63.898,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.526,0.614,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.103,11.141,3.418,0.0,0.0,151.0,96.0,1729.6,3570.0,3570.0,60.335,19.527,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.143,-0.972,-0.02,4.68,-0.06,-1.169,7.472,0.0,0.0,-0.008,-4.8,0.008,-2.768,-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.028,36.028,36.028,36.028,0.0,0.0,0.0,0.0,0.0,0.0,4.599,0.209,0.0,0.0,2.544,0.767,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.688,0.0,9.43,7.32,0.552,0.0,0.0,0.0,0.0,4617.7,2657.5,4617.7,19.992,10.861,0.0,4.564,4.623,0.0,0.0,0.276,3.696,-3.618,0.0,0.0,2.17,0.0,-0.019,2.615,0.0,2.082,0.0,1.848,-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.012,0.0,-0.014,-0.774,-0.637,-0.75,0.0,1.255,6.864,2.164,1341.9,1264.5,9054.5,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 -house019.xml,130.141,130.141,51.592,51.592,78.549,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,11.089,3.593,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.774,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.664,0.0,43.619,7.894,1.826,0.0,0.0,193.0,261.0,2783.7,6444.3,6622.6,84.769,45.696,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.977,10.126,0.15,2.882,0.272,1.603,17.047,0.0,0.0,0.0,-4.232,-0.021,-0.157,-0.148,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.256,117.256,56.501,56.501,0.0,0.0,60.754,0.0,0.0,0.0,0.0,0.826,0.0,0.0,13.04,2.739,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,6613.2,6613.2,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.946,156.946,48.155,48.155,108.791,0.0,0.0,0.0,0.0,0.0,0.0,2.011,0.0,0.0,8.157,1.437,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.745,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.765,10.989,3.817,0.0,0.0,0.0,0.0,2798.0,4687.7,4687.7,81.275,23.098,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.214,14.693,0.0,0.0,0.041,-6.014,-0.297,-2.379,-0.835,-0.387,0.0,1.217,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,138.01,138.01,48.718,48.718,0.0,89.292,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,8.711,0.88,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.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,73.296,0.0,18.932,10.989,1.481,0.0,0.0,184.0,120.0,2976.2,5355.9,5373.2,90.789,27.299,3.682,3.758,20.617,0.0,0.0,1.487,16.605,-13.137,0.0,0.0,14.693,0.0,-0.263,37.701,0.0,1.156,0.0,0.0,-9.56,-4.289,1.107,0.17,0.612,0.0,0.0,-0.12,-1.429,11.451,0.0,0.0,2.05,0.0,-0.255,-2.682,-0.615,-0.07,0.0,0.0,6.16,2.401,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,138.233,138.233,63.089,63.089,0.0,75.144,0.0,0.0,0.0,0.0,0.0,1.892,0.0,0.0,5.902,0.759,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,4673.6,4673.6,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.312,129.312,43.836,43.836,0.0,85.476,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.355,0.479,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.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.468,0.0,15.704,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3570.5,3601.7,72.07,17.436,0.0,7.179,30.082,0.0,0.0,0.681,7.227,-7.897,0.0,0.0,5.183,0.0,-0.106,25.399,0.0,1.837,0.0,11.769,-8.64,-2.539,0.0,0.586,1.25,0.0,0.0,-0.04,-0.295,6.002,0.0,0.0,0.512,0.0,-0.099,-1.46,-0.332,-0.196,0.0,2.942,5.524,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 -house025.xml,104.514,104.514,69.46,69.46,35.054,0.0,0.0,0.0,0.0,0.0,6.618,1.06,0.0,0.0,18.797,2.597,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.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.855,0.0,47.577,8.321,3.83,0.0,0.0,0.0,0.0,4332.1,6893.6,6893.6,36.405,32.763,0.0,3.375,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.938,-8.606,-4.03,0.0,1.089,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.647,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.095,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54383.0,20091.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32216.0,8770.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.735,56.735,24.856,24.856,31.879,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.742,0.0,14.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,13.596,0.0,0.0,8.607,2.075,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.399,0.0,0.0,1.773,6.876,0.233,0.0,0.198,4.407,-2.924,0.0,0.0,7.132,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.565,72.565,31.685,31.685,40.88,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.85,0.993,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.222,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3648.6,3648.6,24.054,23.236,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.125,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.575,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.9,67.9,29.948,29.948,37.951,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,7.366,1.488,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.505,10.226,3.615,0.0,0.0,0.0,0.0,1527.5,3496.6,3496.6,20.253,23.027,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.217,-0.512,0.105,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.084,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.585,77.585,30.042,30.042,47.543,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,6.207,0.835,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.878,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.61,0.0,13.462,9.614,0.0,0.0,0.0,0.0,0.0,1614.8,3028.9,3028.9,28.366,13.891,0.0,3.365,14.613,0.393,0.0,0.296,6.288,-6.011,0.0,0.0,6.904,0.0,-0.085,7.303,0.0,7.308,0.0,3.181,-8.387,-3.714,0.0,1.13,-0.707,0.01,0.0,0.069,0.462,5.273,0.0,0.0,-0.462,0.0,-0.08,-0.803,-1.051,-1.526,0.0,1.247,7.157,2.828,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29357.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-172.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.55,233.55,50.257,50.257,183.293,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,12.858,3.3,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.746,17.932,5.234,0.0,0.0,48.0,113.0,3052.5,7440.8,7663.8,125.503,49.219,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.242,5.112,0.174,2.818,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.384,-0.01,0.0,3.044,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.175,107.175,14.692,14.692,0.0,92.483,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.801,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.9,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.445,0.0,0.0,19.109,14.551,0.0,0.0,0.999,11.105,-7.521,0.0,0.0,14.666,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.699,63.699,17.44,17.44,46.258,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,1.666,0.108,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.79,0.0,9.632,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.926,0.0,2.503,3.92,3.827,0.0,0.0,102.0,0.0,1326.9,1887.1,1887.1,39.297,9.633,0.366,6.129,10.823,0.0,0.0,0.536,6.091,-7.321,0.0,0.0,7.744,0.0,0.004,13.599,0.0,0.49,0.0,0.0,-7.872,-3.466,0.062,-0.544,-1.523,0.0,0.0,-0.08,-1.405,7.072,0.0,0.0,-4.366,0.0,0.009,-2.704,-0.705,-0.126,0.0,0.0,4.962,1.972,924.8,783.5,4210.2,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.591,82.591,25.803,25.803,56.787,0.0,0.0,0.0,0.0,0.0,0.0,0.977,0.0,0.0,5.765,0.964,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.308,0.0,17.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,32.307,0.0,14.148,8.219,5.845,0.0,0.0,106.0,124.0,1462.3,3200.7,3200.7,31.832,16.86,5.508,2.255,3.969,0.0,0.0,1.823,6.799,-7.197,0.0,0.0,21.059,0.0,-0.007,7.4,0.0,0.554,0.0,0.0,-6.44,-3.438,1.615,0.14,0.002,0.0,0.0,-0.21,-0.867,5.704,0.0,0.0,2.5,0.0,-0.007,-0.729,-0.392,-0.059,0.0,0.0,4.339,2.011,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.458,88.458,21.781,21.781,0.0,66.677,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.52,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.486,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.691,0.0,0.0,16.696,11.31,0.0,0.0,1.562,7.647,-10.338,0.0,0.0,6.538,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.312,125.312,51.041,51.041,74.271,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.667,2.595,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.24,0.0,24.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,40.189,0.0,30.939,14.715,4.601,0.0,0.0,0.0,213.0,2455.6,5668.8,5726.6,48.331,27.398,0.0,3.652,14.88,0.651,4.466,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.6,0.141,2.253,0.018,0.92,12.753,0.0,0.0,0.337,-0.578,-0.032,-0.574,-0.139,0.005,0.0,0.0,8.631,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.9,99.9,24.033,24.033,75.868,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.181,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.911,0.0,0.0,14.272,1.132,0.0,0.0,0.0,0.0,1709.3,1461.4,1709.3,50.061,0.0,0.0,14.206,5.384,0.0,0.0,2.508,16.122,-13.538,0.0,0.0,14.024,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.946,258.946,47.07,47.07,211.876,0.0,0.0,0.0,0.0,0.0,0.0,4.162,0.0,0.0,2.532,0.238,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,4671.1,4671.1,77.757,24.091,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.144,231.144,40.02,40.02,191.124,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.739,0.062,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,3133.3,3133.3,88.149,19.056,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.475,158.475,29.946,29.946,128.529,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.928,0.103,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,2782.0,2782.0,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.642,226.642,43.473,43.473,183.169,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,2.056,0.176,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,3640.3,3640.3,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.408,152.408,35.2,35.2,117.208,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.383,0.284,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,3040.0,3040.0,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.004,25.004,25.004,25.004,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.452,0.303,0.011,3.758,1.009,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.836,0.314,12.877,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.518,3.834,0.0,0.0,0.327,2.231,-1.648,0.0,0.0,-0.154,0.0,-0.3,7.959,0.0,0.378,0.0,2.781,-3.563,-0.481,0.0,1.266,2.526,0.0,0.0,0.023,0.771,2.452,0.0,0.0,-0.153,0.0,-0.299,-0.473,-0.141,0.018,0.0,1.786,4.608,0.548,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.676,20.676,14.395,14.395,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.52,0.001,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,945.1,945.1,4.758,2.584,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.003,91.003,39.59,39.59,51.414,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.756,3.744,0.0,0.0,0.0,3.691,0.085,0.498,3.024,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.226,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,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.988,9.25,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.925,0.0,7.005,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,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,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.687,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,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.687,7.208,0.0,0.0,0.0,2.956,9.864,0.0,0.0,0.0,3.485,-0.08,-0.046,-2.986,0.697,0.0,0.0,7.424,1.011,728.6,567.4,7487.1,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.752,51.752,22.064,22.064,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,2.085,0.368,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.882,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2803.5,2803.5,11.085,17.274,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.64,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 +base-simcontrol-temperature-capacitance-multiplier.xml,57.879,57.879,35.596,35.596,22.282,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.156,0.78,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.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,20.867,0.0,13.523,9.075,0.615,0.0,0.0,0.0,0.0,2110.3,3351.7,3351.7,22.973,18.809,0.0,3.625,3.641,0.512,7.529,0.628,10.072,-12.689,0.0,0.0,0.0,8.308,-0.053,4.803,0.0,0.728,0.0,4.831,-8.896,-2.498,0.0,-0.2,-0.443,-0.049,2.741,-0.022,-1.36,11.724,0.0,0.0,0.0,-6.254,-0.049,-1.153,-3.936,-0.162,0.0,2.927,7.883,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.381,59.381,35.948,35.948,23.433,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.42,0.836,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.529,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.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,21.943,0.0,14.451,9.074,0.617,0.0,0.0,0.333,1.0,8643.3,8925.5,9252.3,37.369,22.43,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.341,-0.062,5.307,0.0,0.78,0.0,5.117,-8.959,-2.51,0.0,-0.156,-0.471,-0.054,2.751,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.246,-0.058,-1.254,-3.681,-0.171,0.0,3.305,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.301,59.301,35.94,35.94,23.361,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.418,0.835,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.529,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.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,21.875,0.0,14.443,9.071,0.615,0.0,0.0,0.0,0.167,6063.1,7229.0,7229.0,35.1,21.78,0.0,3.607,3.668,0.517,7.596,0.642,10.186,-12.601,0.0,0.0,0.0,8.338,-0.061,5.254,0.0,0.771,0.0,5.106,-8.955,-2.502,0.0,-0.157,-0.472,-0.054,2.75,-0.028,-1.384,11.752,0.0,0.0,0.0,-6.249,-0.056,-1.24,-3.685,-0.184,0.0,3.302,8.285,2.008,1354.7,998.0,11168.7,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.601,58.601,35.823,35.823,22.777,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.337,0.816,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,22.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.329,0.0,14.137,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4903.2,4903.2,23.32,18.814,0.0,3.612,3.669,0.517,7.596,0.642,10.184,-12.61,0.0,0.0,0.0,8.347,-0.059,4.791,0.0,0.735,0.0,4.998,-8.905,-2.499,0.0,-0.151,-0.469,-0.053,2.755,-0.028,-1.381,11.744,0.0,0.0,0.0,-6.233,-0.055,-1.132,-3.674,-0.169,0.0,3.244,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.376,58.376,35.774,35.774,22.602,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.299,0.809,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.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.166,0.0,14.013,9.075,0.614,0.0,0.0,0.0,0.0,2132.2,3740.5,3740.5,23.223,18.82,0.0,3.593,3.661,0.516,7.567,0.639,10.167,-12.631,0.0,0.0,0.0,8.334,-0.061,4.793,0.0,0.733,0.0,4.936,-8.905,-2.498,0.0,-0.121,-0.465,-0.053,2.75,-0.026,-1.38,11.747,0.0,0.0,0.0,-6.244,-0.058,-1.137,-3.733,-0.167,0.0,3.157,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.116,86.116,46.815,46.815,39.301,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.649,4.302,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.255,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.047,0.0,50.461,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.2,6551.2,37.693,42.27,0.495,2.0,7.304,0.422,0.0,0.983,7.167,-4.983,0.0,0.0,0.485,1.293,-0.284,4.307,0.0,5.164,0.0,3.188,-6.732,-2.918,0.562,1.985,3.714,0.306,0.0,0.234,1.592,11.482,0.0,0.0,0.521,6.825,-0.27,-0.41,-1.893,-0.751,0.0,10.689,11.618,4.463,2104.5,2144.0,14468.7,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.872,67.872,40.648,40.648,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.617,3.35,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.739,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.138,0.0,39.922,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.1,5237.1,23.852,29.589,0.0,2.552,5.064,0.0,0.0,0.846,5.728,-4.089,0.0,0.0,0.0,1.814,-0.159,1.581,0.0,3.794,0.0,1.353,-5.041,-2.476,0.0,3.071,2.787,0.0,0.0,0.413,0.378,8.65,0.0,0.0,0.0,8.439,-0.152,-0.184,-1.38,-0.646,0.0,5.87,8.961,3.906,1610.9,1574.7,9989.4,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.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.636,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,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.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.105,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,-0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,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,94.722,94.722,53.326,53.326,41.396,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.385,5.087,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.194,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.243,0.0,60.811,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.177,0.0,3.051,8.217,0.269,0.0,1.36,9.436,-6.696,0.0,0.0,0.398,1.318,-0.376,5.064,0.0,5.092,0.0,4.319,-6.822,-3.611,0.0,2.972,4.257,0.212,0.0,0.272,2.338,15.363,0.0,0.0,0.414,7.509,-0.359,-0.486,-2.37,-0.74,0.0,14.575,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,138.965,138.965,31.659,31.659,107.305,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,2.86,0.318,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.455,0.0,20.139,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.419,0.0,7.457,13.084,3.28,0.0,0.0,0.0,0.0,1987.1,2448.9,2448.9,40.493,14.948,0.0,4.264,22.276,1.991,37.139,1.864,17.627,-9.441,0.0,0.0,0.0,9.279,-0.324,9.531,0.0,4.369,0.0,0.0,-14.534,-6.438,0.0,0.178,-0.772,-0.043,2.878,-0.083,-0.527,4.335,0.0,0.0,0.0,-3.889,-0.323,-0.507,-1.556,-0.068,0.0,0.0,5.684,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.5,138.5,33.805,33.805,104.695,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.461,0.368,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.025,0.0,23.284,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.643,0.0,5.505,15.632,3.271,0.0,0.0,0.0,0.0,2191.9,2549.4,2549.4,39.657,13.483,0.0,4.727,23.697,4.449,10.125,1.499,18.833,-9.353,0.0,0.0,0.076,11.551,-0.37,6.119,0.0,20.828,0.0,2.861,-17.176,-7.736,0.0,0.209,-0.676,-0.049,0.583,-0.044,-0.299,4.596,0.0,0.0,-0.009,-3.997,-0.365,-0.186,-1.321,-1.869,0.0,0.103,6.367,2.562,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,182.78,182.78,39.105,39.105,143.675,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.55,0.517,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.237,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,103.874,0.0,10.042,18.129,3.215,0.0,0.0,0.0,0.0,2472.9,3404.2,3404.2,54.892,20.555,0.0,7.246,27.501,4.711,24.32,1.195,21.293,-7.816,0.0,0.0,1.287,17.857,-0.395,18.343,0.0,6.388,0.0,7.879,-18.613,-8.163,0.0,0.301,-1.114,-0.06,1.661,-0.088,-0.405,5.412,0.0,0.0,-0.107,-2.764,-0.395,-0.976,-1.758,-0.276,0.0,0.528,7.341,2.842,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.654,153.654,33.965,33.965,119.688,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.377,0.28,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.011,0.0,23.291,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.814,0.0,5.253,15.632,3.277,0.0,0.0,0.0,0.0,2226.3,2666.4,2666.4,44.142,14.378,0.0,5.112,28.424,4.32,13.051,2.253,18.888,-8.183,0.0,0.0,0.266,15.634,-0.399,8.745,0.0,21.441,0.0,0.0,-17.433,-7.835,0.0,0.249,-0.68,-0.028,0.733,-0.074,-0.173,4.596,0.0,0.0,-0.029,-4.105,-0.395,-0.254,-1.234,-1.787,0.0,0.0,6.089,2.436,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.314,153.314,37.472,37.472,115.842,0.0,0.0,0.0,0.0,0.0,0.0,1.851,0.0,0.0,2.842,0.26,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.403,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,77.649,0.0,7.136,18.129,3.215,0.0,0.0,0.0,0.0,2408.7,2856.5,2856.5,45.335,15.794,0.876,4.938,25.516,4.913,9.777,1.267,22.969,-9.186,0.0,0.0,0.927,11.38,-0.398,19.585,0.0,6.404,0.0,4.88,-18.639,-8.157,0.024,0.219,-0.74,-0.091,0.56,-0.073,-0.734,5.162,0.0,0.0,-0.048,-4.186,-0.395,-1.005,-1.642,-0.259,0.0,0.328,7.297,2.829,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,45.111,45.111,45.111,45.111,0.0,0.0,0.0,0.0,0.0,0.0,6.969,0.634,0.121,0.006,8.431,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.727,0.128,26.024,9.325,1.124,0.0,0.0,0.0,328.0,5019.5,3217.4,5019.5,18.28,15.961,0.0,2.692,5.468,0.0,0.0,1.635,3.459,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.014,-6.006,-2.08,0.0,1.647,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.657,8.877,2.825,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.803,35.803,35.803,35.803,0.0,0.0,0.0,0.0,0.0,0.0,4.73,0.25,0.0,0.0,5.875,1.487,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.971,0.0,16.321,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.21,0.0,2.376,4.763,0.0,0.0,0.628,2.683,-1.833,0.0,0.0,2.037,0.0,-0.252,1.65,0.0,4.361,0.0,0.323,-4.819,-1.944,0.0,1.718,1.086,0.0,0.0,-0.036,0.466,3.509,0.0,0.0,1.565,0.0,-0.251,-0.162,-0.281,-0.741,0.0,0.275,6.805,2.434,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.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.528,31.528,31.528,31.528,0.0,0.0,0.0,0.0,0.0,0.0,3.334,0.189,0.006,0.0,4.236,1.384,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.395,0.006,16.446,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2222.1,2948.4,10.984,10.44,0.0,1.701,3.694,0.0,0.0,0.584,3.025,-2.479,0.0,0.0,2.205,0.0,-0.244,1.726,0.0,1.117,0.0,1.412,-3.76,-1.618,0.0,1.132,0.542,0.0,0.0,-0.07,0.539,4.748,0.0,0.0,0.603,0.0,-0.244,-0.251,-0.387,-0.261,0.0,1.645,6.108,2.435,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 +house015.xml,30.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.136,61.136,39.63,39.63,0.0,0.0,21.506,0.0,0.0,0.0,7.619,0.555,0.187,0.004,2.854,0.93,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.318,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.712,0.191,11.025,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3520.6,7549.9,43.059,18.675,0.0,4.42,10.83,0.617,5.691,0.298,7.708,-7.897,0.0,0.0,0.0,6.759,-0.021,5.727,0.0,3.865,0.0,0.0,-8.639,-4.771,0.0,-0.308,-0.75,-0.015,2.995,-0.044,-0.958,11.998,0.0,0.0,0.0,-8.643,-0.023,-1.318,-2.077,-0.984,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.688,91.688,27.773,27.773,63.915,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.4,0.594,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.803,0.0,18.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,41.964,0.0,9.725,11.141,3.425,0.0,0.0,151.0,94.0,1729.6,3570.0,3570.0,60.335,19.525,0.0,5.431,14.637,0.652,10.66,0.362,7.454,-9.321,0.0,0.0,0.719,4.37,0.008,19.78,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.106,-0.864,-0.015,4.795,-0.058,-1.113,7.472,0.0,0.0,-0.002,-4.724,0.009,-2.647,-1.647,-0.25,0.0,0.0,7.229,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,35.934,35.934,35.934,35.934,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.209,0.0,0.0,2.471,0.743,7.875,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.691,0.0,9.098,7.32,0.553,0.0,0.0,0.0,0.0,4617.7,2659.0,4617.7,19.992,10.862,0.0,4.566,4.624,0.0,0.0,0.276,3.697,-3.619,0.0,0.0,2.169,0.0,-0.02,2.615,0.0,2.09,0.0,1.848,-7.06,-2.597,0.0,-0.485,-0.765,0.0,0.0,-0.093,-1.304,4.336,0.0,0.0,0.02,0.0,-0.015,-0.746,-1.171,-0.721,0.0,1.219,6.864,2.164,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 +house019.xml,130.259,130.259,51.668,51.668,78.591,0.0,0.0,0.0,0.0,0.0,0.0,1.131,0.0,0.0,11.151,3.607,9.726,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.816,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.7,0.0,43.304,7.894,1.826,0.0,0.0,193.0,266.0,2783.7,6251.1,6636.8,84.769,45.696,0.0,11.388,44.785,0.65,5.02,1.921,16.412,-14.196,0.0,0.0,0.0,5.959,-0.039,8.896,0.0,1.87,0.0,0.0,-10.31,-5.205,0.0,2.991,10.178,0.15,2.871,0.274,1.618,17.036,0.0,0.0,0.0,-4.227,-0.027,-0.15,-0.558,0.025,0.0,0.0,8.085,3.718,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,116.949,116.949,56.177,56.177,0.0,0.0,60.771,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.779,2.675,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.623,0.0,18.918,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.577,0.0,32.258,10.477,4.229,0.0,0.0,0.0,0.0,2703.5,6612.3,6612.3,31.214,31.937,0.908,11.001,10.555,1.131,9.76,0.631,15.142,-15.17,0.0,0.0,0.0,7.487,-0.04,15.235,0.0,0.837,0.0,0.0,-15.243,-7.022,0.249,0.223,0.285,0.064,6.486,0.018,-2.386,20.699,0.0,0.0,0.0,-6.534,-0.031,-2.604,-3.113,-0.191,0.0,0.0,13.513,5.728,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,3130.0,0.0,2330.0,800.0 +house021.xml,156.827,156.827,48.021,48.021,108.806,0.0,0.0,0.0,0.0,0.0,0.0,2.012,0.0,0.0,8.046,1.413,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.758,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2798.0,4687.4,4687.4,81.275,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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.942,137.942,48.641,48.641,0.0,89.301,0.0,0.0,0.0,0.0,0.0,2.221,0.0,0.0,8.642,0.872,12.472,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.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,73.302,0.0,18.701,10.989,1.482,0.0,0.0,184.0,120.0,2976.2,5355.4,5441.2,90.789,27.294,3.683,3.758,20.619,0.0,0.0,1.487,16.607,-13.137,0.0,0.0,14.695,0.0,-0.264,37.703,0.0,1.156,0.0,0.0,-9.561,-4.29,1.118,0.18,0.677,0.0,0.0,-0.116,-1.377,11.45,0.0,0.0,2.123,0.0,-0.255,-2.589,-1.167,-0.068,0.0,0.0,6.159,2.4,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,138.13,138.13,62.979,62.979,0.0,75.152,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.805,0.745,19.998,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.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,62.742,0.0,15.9,17.1,2.77,0.0,0.0,0.0,0.0,4239.1,4671.5,4833.4,62.489,20.562,0.0,10.21,21.491,1.201,16.448,0.85,9.987,-7.812,0.0,0.0,0.0,6.18,-0.035,23.704,0.0,1.638,0.0,0.0,-15.576,-5.907,0.0,-0.166,-0.965,-0.011,6.021,-0.112,-1.017,9.141,0.0,0.0,0.0,-5.972,-0.012,-2.63,-1.377,-0.31,0.0,0.0,10.082,3.312,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.27,129.27,43.791,43.791,0.0,85.479,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.314,0.475,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.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,0.0,15.506,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3558.1,3601.4,72.07,17.437,0.0,7.18,30.082,0.0,0.0,0.682,7.228,-7.897,0.0,0.0,5.182,0.0,-0.107,25.401,0.0,1.837,0.0,11.769,-8.641,-2.539,0.0,0.598,1.303,0.0,0.0,-0.039,-0.282,6.002,0.0,0.0,0.551,0.0,-0.1,-1.421,-0.661,-0.192,0.0,2.906,5.522,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 +house025.xml,104.509,104.509,69.445,69.445,35.064,0.0,0.0,0.0,0.0,0.0,6.62,1.061,0.0,0.0,18.783,2.595,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.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.865,0.0,47.472,8.321,3.831,0.0,0.0,0.0,0.0,4332.1,6893.6,6893.6,36.405,32.763,0.0,3.377,17.56,0.0,0.0,2.166,7.4,-5.641,0.0,0.0,6.83,0.0,-1.329,13.727,0.002,0.41,0.0,4.939,-8.618,-4.034,0.0,1.091,5.689,0.0,0.0,0.439,1.939,12.468,0.0,0.0,5.648,0.0,-1.327,-0.733,-0.281,-0.005,0.0,6.087,11.494,5.23,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54383.0,20091.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32216.0,8770.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.758,56.758,24.856,24.856,31.902,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.759,0.0,14.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,0.0,0.0,13.608,0.0,0.0,8.607,2.08,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.399,0.0,0.0,1.774,6.879,0.233,0.0,0.198,4.41,-2.924,0.0,0.0,7.138,0.0,-0.049,2.499,0.0,3.14,0.0,0.0,-6.704,-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,8577.5,3022.8,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.498,72.498,31.594,31.594,40.904,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.771,0.981,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.947,0.0,17.888,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.79,0.0,22.894,8.564,5.237,0.0,0.0,0.0,0.0,1579.5,3647.3,3647.3,24.054,23.224,0.72,1.786,7.921,0.455,0.0,0.593,4.985,-3.985,0.0,0.0,0.383,3.362,-0.138,1.753,0.0,10.452,0.0,2.034,-8.798,-2.848,0.496,1.144,0.735,0.061,0.0,-0.108,0.183,5.426,0.0,0.0,0.099,3.913,-0.138,-0.35,-1.646,-3.393,0.0,2.558,10.724,3.099,1610.9,1574.7,10579.6,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.788,67.788,29.818,29.818,37.97,0.0,0.0,0.0,0.0,0.0,0.0,0.295,0.0,0.0,7.26,1.463,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.461,0.0,18.123,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.681,0.0,23.029,10.226,3.622,0.0,0.0,0.0,0.0,1527.5,3496.5,3496.5,20.253,23.026,0.771,1.667,7.19,0.358,0.0,0.442,4.976,-3.806,0.0,0.0,0.246,2.535,-0.043,4.068,0.0,4.486,0.0,1.625,-9.075,-2.9,0.614,1.242,-0.428,0.109,0.0,0.065,0.123,6.21,0.0,0.0,0.067,1.925,-0.044,-1.041,-2.09,-1.607,0.0,3.06,11.533,3.237,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.449,77.449,29.895,29.895,47.554,0.0,0.0,0.0,0.0,0.0,0.0,0.703,0.0,0.0,6.08,0.815,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.889,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.621,0.0,13.086,9.614,0.0,0.0,0.0,0.0,0.0,1614.8,3028.4,3028.4,28.366,13.886,0.0,3.366,14.616,0.393,0.0,0.296,6.291,-6.012,0.0,0.0,6.91,0.0,-0.086,7.305,0.0,7.311,0.0,3.183,-8.39,-3.716,0.0,1.154,-0.609,0.013,0.0,0.071,0.519,5.271,0.0,0.0,-0.314,0.0,-0.081,-0.764,-1.833,-1.48,0.0,1.213,7.154,2.827,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29357.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-172.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.737,58.737,17.191,17.191,0.0,0.0,41.546,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.2,0.0,13.31,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.504,0.0,0.0,7.715,2.222,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.963,0.0,0.0,1.675,10.165,0.486,1.101,1.039,5.186,-3.328,0.0,0.0,0.0,3.454,-0.042,2.727,0.0,5.697,0.0,0.0,-7.838,-2.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8,992.6,6762.5,2580.5,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.502,233.502,50.191,50.191,183.311,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,12.809,3.283,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.819,0.0,29.096,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.927,0.0,39.41,17.932,5.235,0.0,0.0,48.0,113.0,3052.5,7439.8,7661.8,125.503,49.21,0.0,14.458,42.009,1.049,6.638,1.393,20.053,-16.712,0.0,0.0,1.979,6.05,-0.849,56.909,0.001,0.654,0.0,9.748,-17.12,-6.505,0.0,2.256,5.151,0.175,2.825,0.115,0.474,16.998,0.0,0.0,0.225,-3.614,-0.817,-1.895,-0.853,-0.01,0.0,3.035,11.055,3.855,2593.2,2707.5,18308.0,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.523,101.523,15.551,15.551,85.971,0.0,0.0,0.0,0.0,0.0,0.0,1.51,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.737,0.0,16.258,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.787,0.0,0.0,8.002,4.945,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.401,8.754,1.92,20.409,1.411,8.354,-9.322,0.0,0.0,0.0,4.534,0.021,14.967,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.209,107.209,14.692,14.692,0.0,92.516,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.835,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.924,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.445,0.0,0.0,19.13,14.565,0.0,0.0,1.0,11.116,-7.523,0.0,0.0,14.655,0.0,-0.361,18.589,0.0,0.793,0.0,0.0,-5.009,-3.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,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.803,153.803,43.213,43.213,0.0,0.0,110.59,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.215,0.0,21.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,63.099,0.0,0.0,11.573,5.446,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.132,0.0,0.0,8.87,26.936,0.0,2.858,1.898,26.623,-26.223,0.0,0.0,10.923,2.708,0.067,34.745,0.0,0.571,0.0,0.0,-16.2,-10.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,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.681,63.681,17.409,17.409,46.272,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,1.637,0.105,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.795,0.0,9.642,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.929,0.0,2.429,3.92,3.834,0.0,0.0,102.0,0.0,1326.9,1886.7,1886.7,39.297,9.628,0.366,6.128,10.82,0.0,0.0,0.536,6.09,-7.321,0.0,0.0,7.755,0.0,0.004,13.597,0.0,0.489,0.0,0.0,-7.872,-3.466,0.065,-0.497,-1.434,0.0,0.0,-0.076,-1.356,7.072,0.0,0.0,-4.246,0.0,0.009,-2.609,-1.194,-0.124,0.0,0.0,4.967,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.685,25.685,56.792,0.0,0.0,0.0,0.0,0.0,0.0,0.977,0.0,0.0,5.667,0.945,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.31,0.0,17.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,32.309,0.0,13.768,8.219,5.847,0.0,0.0,106.0,124.0,1462.3,3200.5,3200.5,31.832,16.858,5.507,2.254,3.969,0.0,0.0,1.823,6.798,-7.197,0.0,0.0,21.064,0.0,-0.007,7.4,0.0,0.554,0.0,0.0,-6.44,-3.438,1.631,0.145,0.013,0.0,0.0,-0.205,-0.848,5.704,0.0,0.0,2.604,0.0,-0.006,-0.71,-0.959,-0.057,0.0,0.0,4.339,2.011,1341.9,1264.5,6447.1,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.497,88.497,21.781,21.781,0.0,66.716,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.559,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.514,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.691,0.0,0.0,16.718,11.321,0.0,0.0,1.563,7.657,-10.342,0.0,0.0,6.546,0.0,-0.342,14.704,0.0,0.461,0.0,0.0,-6.837,-3.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.312,125.312,51.035,51.035,74.277,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.663,2.592,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.246,0.0,24.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,40.194,0.0,30.749,14.715,4.601,0.0,0.0,0.0,214.0,2455.6,5668.8,5727.5,48.331,27.398,0.0,3.653,14.884,0.651,4.463,0.81,12.433,-10.431,0.0,0.0,1.862,2.347,-0.047,22.487,0.002,0.595,0.0,0.0,-10.149,-3.873,0.0,0.847,2.607,0.141,2.251,0.018,0.927,12.753,0.0,0.0,0.337,-0.578,-0.035,-0.567,-0.343,0.005,0.0,0.0,8.627,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.915,99.915,24.039,24.039,75.876,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.147,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.189,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.915,0.0,0.0,14.272,1.137,0.0,0.0,0.0,0.0,1709.3,1463.6,1709.3,50.061,0.0,0.0,14.206,5.385,0.0,0.0,2.508,16.121,-13.538,0.0,0.0,14.028,0.0,-0.041,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.0,5211.5,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.645,101.645,23.521,23.521,78.124,0.0,0.0,0.0,0.0,0.0,0.0,1.305,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.742,0.0,17.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.224,0.0,0.0,8.002,5.526,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.269,5.618,22.289,0.0,4.298,2.095,12.884,-12.513,0.0,0.0,2.035,3.393,-0.099,19.744,0.0,0.612,0.0,0.0,-10.092,-4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,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.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.222,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.8,4659.8,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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.113,231.113,39.974,39.974,191.139,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.695,0.059,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.693,0.0,24.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,163.898,0.0,2.43,15.632,3.233,0.0,0.0,0.0,0.0,2758.4,3129.4,3129.4,88.149,18.993,0.0,9.173,39.851,4.013,43.724,2.65,34.226,-19.417,0.0,0.0,2.449,14.541,-0.353,56.288,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.234,-1.359,-0.05,2.949,-0.141,-2.88,5.799,0.0,0.0,-0.257,-4.864,-0.349,-2.683,-1.152,-0.137,0.0,0.0,5.47,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.415,158.415,29.874,29.874,128.541,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.863,0.096,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.634,0.0,19.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.475,0.0,2.502,13.084,2.212,0.0,0.0,0.0,0.0,1987.9,2776.6,2776.6,54.557,13.333,0.0,3.168,23.192,2.294,33.785,5.576,22.939,-10.01,0.0,0.0,0.549,9.933,-0.294,28.975,0.0,1.578,0.0,0.0,-14.405,-5.173,0.0,0.05,-0.758,-0.084,1.794,-0.334,-1.957,4.656,0.0,0.0,-0.067,-3.531,-0.293,-1.516,-1.039,-0.139,0.0,0.0,4.422,1.388,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.59,226.59,43.407,43.407,183.183,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,1.999,0.167,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.608,0.0,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.221,0.0,3.225,13.084,4.459,0.0,0.0,0.0,0.0,3093.0,3635.3,3635.3,80.998,18.664,4.37,6.899,36.503,9.234,19.262,2.757,18.187,-11.68,0.0,0.0,12.916,15.091,-0.489,61.981,0.0,1.436,0.0,0.0,-18.085,-10.282,0.257,0.47,-1.293,-0.091,1.238,-0.112,-0.738,5.621,0.0,0.0,-1.102,-4.765,-0.486,-2.584,-0.942,-0.097,0.0,0.0,5.245,2.672,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.253,152.253,35.023,35.023,117.23,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.235,0.254,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.766,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,3.509,13.084,4.372,0.0,0.0,0.0,0.0,2316.2,3032.1,3032.1,47.197,12.913,3.572,3.08,15.119,2.29,32.755,1.135,18.522,-12.224,1.044,-0.408,0.086,12.636,-0.246,20.645,0.0,10.934,0.0,0.0,-14.644,-7.017,0.003,0.019,-1.02,-0.114,1.097,-0.081,-1.351,6.243,-0.064,0.396,-0.012,-3.964,-0.245,-1.121,-1.85,-1.217,0.0,0.0,4.85,2.048,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,24.996,24.996,24.996,24.996,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.452,0.303,0.011,3.749,1.006,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.848,0.314,12.82,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.521,3.838,0.0,0.0,0.327,2.234,-1.649,0.0,0.0,-0.155,0.0,-0.302,7.966,0.0,0.378,0.0,2.782,-3.568,-0.482,0.0,1.272,2.536,0.0,0.0,0.024,0.778,2.451,0.0,0.0,-0.154,0.0,-0.301,-0.456,-0.233,0.019,0.0,1.784,4.603,0.548,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.667,20.667,14.38,14.38,6.287,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.505,0.001,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.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,6.111,0.0,1.505,4.203,0.0,0.0,0.0,0.0,0.0,873.4,944.4,944.4,4.758,2.576,0.0,-0.001,0.775,0.127,0.0,0.0,1.725,-0.559,0.0,0.0,0.0,1.381,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.106,0.033,0.0,0.0,-0.055,0.798,0.0,0.0,0.0,-1.094,-0.01,-0.223,-0.378,-1.355,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,90.99,90.99,39.568,39.568,51.422,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.735,3.736,0.0,0.0,0.0,3.691,0.085,0.498,3.032,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.486,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.723,0.0,52.088,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,1.023,2.631,12.009,0.0,0.0,0.803,4.611,-2.524,0.0,0.0,0.056,2.014,-0.564,6.791,0.0,4.189,0.0,6.413,-7.341,-1.494,1.32,0.99,9.262,0.0,0.0,0.563,3.668,4.27,0.0,0.0,0.075,10.064,-0.552,0.509,-0.641,1.936,0.0,7.002,11.649,2.197,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,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,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.685,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.253,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.687,7.21,0.0,0.0,0.0,2.958,9.864,0.0,0.0,0.0,3.486,-0.08,-0.045,-2.995,0.697,0.0,0.0,7.425,1.011,728.6,567.4,7487.1,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.544,51.544,21.856,21.856,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,1.919,0.325,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.773,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.163,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2814.7,2814.7,11.085,17.256,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.164,2.669,0.0,3.683,0.0,1.887,-10.202,-1.222,0.0,-0.258,-0.24,0.0,0.0,-0.372,0.345,4.091,0.0,0.0,-0.937,0.0,-0.162,-0.526,-2.496,-0.719,0.0,0.59,5.334,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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index 70f9d1ee4..f16101a85 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -1,141 +1,141 @@ 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-lighting-ceiling-fans.xml,1853.29,144.0,1329.64,0.0,1473.64,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,1846.49,144.0,1322.62,0.0,1466.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-lighting-kwh-per-year.xml,1951.37,144.0,1447.53,0.0,1591.53,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,1845.7,144.0,1321.83,0.0,1465.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1692.16,144.0,1139.14,0.0,1283.14,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,1677.96,144.0,1124.71,0.0,1268.71,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,1903.98,144.0,1275.12,0.0,1419.12,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,1588.03,144.0,1167.92,0.0,1311.92,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-lighting-ceiling-fans.xml,1848.5,144.0,1324.62,0.0,1468.62,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-lighting-holiday.xml,1841.87,144.0,1317.79,0.0,1461.79,144.0,236.08,380.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-kwh-per-year.xml,1946.45,144.0,1442.39,0.0,1586.39,144.0,216.06,360.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-lighting-mixed.xml,1841.07,144.0,1316.99,0.0,1460.99,144.0,236.08,380.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-ceiling-fans.xml,1687.74,144.0,1134.53,0.0,1278.53,144.0,265.21,409.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-lighting-none.xml,1673.75,144.0,1120.32,0.0,1264.32,144.0,265.43,409.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-location-AMY-2012.xml,1902.36,144.0,1273.43,0.0,1417.43,144.0,340.93,484.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-location-baltimore-md.xml,1582.78,144.0,1162.64,0.0,1306.64,144.0,132.14,276.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-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.78,144.0,1192.93,0.0,1336.93,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,1701.88,144.0,1105.44,0.0,1249.44,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,1668.81,144.0,1028.19,0.0,1172.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,4443.5,144.0,4299.5,0.0,4443.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1456.61,144.0,1312.61,0.0,1456.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-location-phoenix-az.xml,1634.57,144.0,1346.56,0.0,1490.56,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,1207.8,144.0,822.58,0.0,966.58,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,2113.41,144.0,1382.74,0.0,1526.74,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,1860.44,144.0,1318.71,0.0,1462.71,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,2040.75,144.0,1379.54,0.0,1523.54,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,1496.04,144.0,1190.19,0.0,1334.19,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,1698.16,144.0,1101.71,0.0,1245.71,144.0,308.45,452.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-location-helena-mt.xml,1668.2,144.0,1027.56,0.0,1171.56,144.0,352.64,496.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-honolulu-hi.xml,4433.11,144.0,4289.11,0.0,4433.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-location-miami-fl.xml,1452.56,144.0,1308.56,0.0,1452.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-location-phoenix-az.xml,1633.82,144.0,1345.81,0.0,1489.81,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,1202.56,144.0,817.34,0.0,961.34,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,2110.41,144.0,1379.5,0.0,1523.5,144.0,442.91,586.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-bath-kitchen-fans.xml,1855.96,144.0,1314.04,0.0,1458.04,144.0,253.92,397.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-cfis-airflow-fraction-zero.xml,2037.69,144.0,1376.25,0.0,1520.25,144.0,373.44,517.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-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,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,1975.96,144.0,1329.93,0.0,1473.93,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,1999.16,144.0,1330.95,0.0,1474.95,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,2051.89,144.0,1377.13,0.0,1521.13,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,1960.1,144.0,1383.73,0.0,1527.73,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,1960.13,144.0,1383.73,0.0,1527.73,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-exhaust-rated-flow-rate.xml,2026.13,144.0,1345.9,0.0,1489.9,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,2026.13,144.0,1345.9,0.0,1489.9,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,1960.19,144.0,1383.84,0.0,1527.84,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,1960.22,144.0,1383.84,0.0,1527.84,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,2138.11,144.0,1400.03,0.0,1544.03,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,2012.95,144.0,1348.49,0.0,1492.49,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,1781.62,144.0,1255.84,0.0,1399.84,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,756.98,108.0,1257.44,-988.34,377.11,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,677.15,108.0,780.96,-591.68,297.28,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,673.75,108.0,748.8,-562.92,293.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,637.49,108.0,704.82,-555.2,257.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 -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,852.44,144.0,1315.31,-986.74,472.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,756.98,108.0,1257.44,-988.34,377.11,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,622.17,465.0,1260.41,-1480.17,245.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,88.46,465.0,1260.41,-2013.87,-288.47,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,-334.36,210.0,1260.41,-2181.7,-711.29,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,1793.34,144.0,1260.41,0.0,1404.41,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,1069.92,144.0,1155.24,-710.11,589.13,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,882.59,144.0,1345.35,-986.62,502.72,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,2289.39,144.0,1378.19,0.0,1522.19,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,2226.51,144.0,1315.31,0.0,1459.31,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,2226.51,144.0,1315.31,0.0,1459.31,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,1812.74,144.0,1312.52,0.0,1456.52,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,3682.97,144.0,2505.86,0.0,2649.86,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,3042.97,144.0,2375.6,0.0,2519.6,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,1490.41,144.0,903.17,0.0,1047.17,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,1236.1,144.0,939.25,0.0,1083.25,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,1885.96,144.0,1306.08,0.0,1450.08,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,1839.22,144.0,1320.43,0.0,1464.43,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,18391.89,1440.0,13153.12,0.0,14593.12,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,3004.33,144.0,1859.84,0.0,2003.84,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,882.59,144.0,1345.35,-986.62,502.72,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,854.29,144.0,1299.36,-986.62,456.75,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,932.5,144.0,1395.26,-986.63,552.63,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,916.1,144.0,1378.19,-985.96,536.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,882.59,144.0,1345.35,-986.62,502.72,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,1002.88,144.0,1378.19,-1286.5,235.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-pv-generators-battery.xml,970.3,144.0,1346.27,-1287.17,203.1,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,939.22,144.0,1315.31,-1287.29,172.02,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,852.44,144.0,1315.31,-986.74,472.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-mechvent-cfis-evap-cooler-only-ducted.xml,1392.16,144.0,1248.16,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1972.62,144.0,1326.41,0.0,1470.41,144.0,358.21,502.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,1995.87,144.0,1327.43,0.0,1471.43,144.0,380.44,524.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-cfis.xml,2049.19,144.0,1374.21,0.0,1518.21,144.0,386.98,530.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-mechvent-erv-atre-asre.xml,1955.74,144.0,1379.21,0.0,1523.21,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-mechvent-erv.xml,1955.78,144.0,1379.21,0.0,1523.21,144.0,288.57,432.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-exhaust-rated-flow-rate.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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-hrv-asre.xml,1955.73,144.0,1379.22,0.0,1523.22,144.0,288.51,432.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-hrv.xml,1955.76,144.0,1379.22,0.0,1523.22,144.0,288.54,432.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-multiple.xml,2132.86,144.0,1394.38,0.0,1538.38,144.0,450.48,594.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-mechvent-supply.xml,2009.54,144.0,1344.85,0.0,1488.85,144.0,376.69,520.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-whole-house-fan.xml,1775.28,144.0,1249.3,0.0,1393.3,144.0,237.98,381.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-misc-additional-properties.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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-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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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,674.29,108.0,777.89,-591.68,294.21,144.0,236.08,380.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,670.75,108.0,746.74,-564.08,290.67,144.0,236.08,380.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,635.35,108.0,702.47,-555.2,255.27,144.0,236.08,380.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 +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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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 +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,621.03,465.0,1255.78,-1476.89,243.89,132.0,245.14,377.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,84.04,465.0,1255.78,-2013.87,-293.1,132.0,245.14,377.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,-338.78,210.0,1255.78,-2181.7,-715.92,132.0,245.14,377.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,1788.92,144.0,1255.78,0.0,1399.78,144.0,245.14,389.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,1066.2,144.0,1151.27,-710.11,585.16,144.0,337.04,481.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-misc-emissions.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-misc-generators-battery-scheduled.xml,2284.75,144.0,1373.35,0.0,1517.35,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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,1807.99,144.0,1307.56,0.0,1451.56,144.0,212.43,356.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-misc-loads-large-uncommon.xml,3677.03,144.0,2499.63,0.0,2643.63,144.0,739.13,883.13,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,3037.03,144.0,2369.37,0.0,2513.37,144.0,209.82,353.82,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,1486.61,144.0,899.21,0.0,1043.21,144.0,299.4,443.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-misc-neighbor-shading-bldgtype-multifamily.xml,1234.76,144.0,937.88,0.0,1081.88,144.0,8.88,152.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-neighbor-shading.xml,1881.63,144.0,1301.54,0.0,1445.54,144.0,292.09,436.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-misc-shielding-of-home.xml,1834.69,144.0,1315.69,0.0,1459.69,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-misc-unit-multiplier.xml,18345.58,1440.0,13104.76,0.0,14544.76,1440.0,2360.82,3800.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-usage-multiplier.xml,2999.32,144.0,1854.61,0.0,1998.61,144.0,721.46,865.46,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,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-pv-battery-garage.xml,851.04,144.0,1295.95,-986.62,453.34,144.0,253.7,397.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-round-trip-efficiency.xml,928.28,144.0,1390.83,-986.63,548.2,144.0,236.08,380.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-pv-battery-scheduled.xml,911.47,144.0,1373.35,-985.96,531.39,144.0,236.08,380.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-pv-battery.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-pv-generators-battery-scheduled.xml,998.25,144.0,1373.35,-1286.5,230.85,144.0,326.12,470.12,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,965.63,144.0,1341.4,-1287.17,198.23,144.0,326.12,470.12,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,934.59,144.0,1310.47,-1287.29,167.19,144.0,326.12,470.12,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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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-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,917.12,144.0,268.49,0.0,412.49,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,2781.57,144.0,1907.56,0.0,2051.56,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,2515.63,144.0,1818.53,0.0,1962.53,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,1586.83,144.0,1040.66,0.0,1184.66,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,1320.29,144.0,1462.79,-743.14,863.64,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,1860.1,144.0,1324.25,0.0,1468.25,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,1389.0,144.0,1049.68,0.0,1193.68,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,1632.25,144.0,1258.95,0.0,1402.95,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,1851.6,144.0,1321.09,0.0,1465.09,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,1547.37,144.0,1107.41,0.0,1251.41,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.xml,1700.88,144.0,1129.06,0.0,1273.06,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,1849.86,144.0,1319.61,0.0,1463.61,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1715.52,144.0,1190.1,0.0,1334.1,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.xml,1691.16,144.0,1121.27,0.0,1265.27,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,1841.9,144.0,1316.6,0.0,1460.6,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,1838.15,144.0,1314.22,0.0,1458.22,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,1839.19,144.0,1315.31,0.0,1459.31,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,1838.48,144.0,1314.74,0.0,1458.74,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-residents-1-misc-loads-large-uncommon.xml,2776.92,144.0,1902.69,0.0,2046.69,144.0,435.96,579.96,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,2510.99,144.0,1813.66,0.0,1957.66,144.0,238.63,382.63,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,1582.86,144.0,1036.5,0.0,1180.5,144.0,258.36,402.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-residents-5.xml,1316.19,144.0,1458.42,-743.14,859.28,144.0,312.91,456.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-all-10-mins.xml,1855.58,144.0,1319.52,0.0,1463.52,144.0,248.06,392.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-schedules-detailed-mixed-timesteps-power-outage.xml,1382.22,144.0,1042.85,0.0,1186.85,144.0,51.37,195.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1625.55,144.0,1252.09,0.0,1396.09,144.0,85.46,229.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-10-mins.xml,1846.96,144.0,1316.22,0.0,1460.22,144.0,242.74,386.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-schedules-detailed-occupancy-stochastic-power-outage.xml,1542.66,144.0,1102.53,0.0,1246.53,144.0,152.13,296.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-schedules-detailed-occupancy-stochastic-vacancy.xml,1696.2,144.0,1124.16,0.0,1268.16,144.0,284.04,428.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-schedules-detailed-occupancy-stochastic.xml,1845.19,144.0,1314.71,0.0,1458.71,144.0,242.48,386.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-schedules-detailed-setpoints-daily-schedules.xml,1805.85,144.0,1287.75,0.0,1431.75,144.0,230.1,374.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-schedules-detailed-setpoints-daily-setbacks.xml,1803.22,144.0,1293.39,0.0,1437.39,144.0,221.83,365.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-schedules-detailed-setpoints.xml,1607.27,144.0,1241.92,0.0,1385.92,144.0,77.35,221.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-schedules-simple-power-outage.xml,1713.0,144.0,1187.38,0.0,1331.38,144.0,237.62,381.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-simple-vacancy.xml,1686.52,144.0,1116.41,0.0,1260.41,144.0,282.11,426.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-schedules-simple.xml,1837.24,144.0,1311.73,0.0,1455.73,144.0,237.51,381.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-simcontrol-calendar-year-custom.xml,1832.95,144.0,1308.84,0.0,1452.84,144.0,236.11,380.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-simcontrol-daylight-saving-custom.xml,1834.57,144.0,1310.48,0.0,1454.48,144.0,236.09,380.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-simcontrol-daylight-saving-disabled.xml,1833.9,144.0,1309.96,0.0,1453.96,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-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,1835.31,144.0,1311.51,0.0,1455.51,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,1860.06,144.0,1324.04,0.0,1468.04,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,1859.03,144.0,1323.77,0.0,1467.77,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,1848.51,144.0,1319.41,0.0,1463.41,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,1844.84,144.0,1317.6,0.0,1461.6,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2411.55,144.0,1716.3,0.0,1860.3,144.0,407.25,551.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 -house002.xml,2059.85,144.0,1489.72,0.0,1633.72,144.0,282.13,426.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 -house003.xml,2051.06,144.0,1470.25,0.0,1614.25,144.0,292.81,436.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-simcontrol-temperature-capacitance-multiplier.xml,1830.43,144.0,1306.39,0.0,1450.39,144.0,236.04,380.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-timestep-10-mins-occupancy-stochastic-10-mins.xml,1855.54,144.0,1319.31,0.0,1463.31,144.0,248.23,392.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-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1854.5,144.0,1319.03,0.0,1463.03,144.0,247.47,391.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1844.02,144.0,1314.73,0.0,1458.73,144.0,241.29,385.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-simcontrol-timestep-30-mins.xml,1840.36,144.0,1312.93,0.0,1456.93,144.0,239.43,383.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.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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 +house001.xml,2408.68,144.0,1713.38,0.0,1857.38,144.0,407.3,551.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 +house002.xml,2057.81,144.0,1487.66,0.0,1631.66,144.0,282.15,426.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 +house003.xml,2049.34,144.0,1468.5,0.0,1612.5,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 house004.xml,3685.65,144.0,2771.89,0.0,2915.89,144.0,625.76,769.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 -house005.xml,2672.04,144.0,1955.1,0.0,2099.1,144.0,428.94,572.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 -house006.xml,2281.38,144.0,1184.1,0.0,1328.1,144.0,809.28,953.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 -house007.xml,2340.82,144.0,1263.24,0.0,1407.24,144.0,789.58,933.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 -house008.xml,2834.42,144.0,1462.81,0.0,1606.81,144.0,1083.61,1227.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 -house009.xml,2459.04,144.0,1268.37,0.0,1412.37,144.0,902.67,1046.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 -house010.xml,2562.65,144.0,1400.99,0.0,1544.99,144.0,873.66,1017.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 -house011.xml,1600.41,144.0,1456.41,0.0,1600.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 -house012.xml,1299.98,144.0,1155.98,0.0,1299.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 -house013.xml,1130.38,144.0,986.38,0.0,1130.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 -house014.xml,1162.12,144.0,1018.12,0.0,1162.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 -house015.xml,1130.38,144.0,986.38,0.0,1130.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 -house016.xml,2702.83,144.0,1759.69,0.0,1903.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.14,799.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 -house017.xml,2101.87,144.0,1019.2,0.0,1163.2,144.0,794.67,938.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 -house018.xml,1738.61,144.0,1594.61,0.0,1738.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 -house019.xml,3148.24,144.0,1883.36,0.0,2027.36,144.0,976.88,1120.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 -house020.xml,4902.8,144.0,2500.77,0.0,2644.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.03,2258.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 -house021.xml,3398.9,144.0,1757.9,0.0,1901.9,144.0,1353.0,1497.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house022.xml,5109.11,144.0,1778.45,0.0,1922.45,0.0,0.0,0.0,0.0,3186.66,3186.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 -house023.xml,5128.81,144.0,2303.07,0.0,2447.07,0.0,0.0,0.0,0.0,2681.74,2681.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 -house024.xml,4794.71,144.0,1600.25,0.0,1744.25,0.0,0.0,0.0,0.0,3050.46,3050.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 -house025.xml,3023.76,144.0,2240.98,0.0,2384.98,144.0,494.78,638.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 -house026.xml,1539.91,144.0,801.94,0.0,945.94,144.0,449.97,593.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 -house027.xml,1887.26,144.0,1022.24,0.0,1166.24,144.0,577.02,721.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 -house028.xml,1789.89,144.0,966.21,0.0,1110.21,144.0,535.68,679.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 -house029.xml,2145.83,144.0,1175.73,0.0,1319.73,144.0,682.1,826.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 -house030.xml,2376.92,144.0,672.79,0.0,816.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1560.13,1560.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 -house031.xml,4402.19,144.0,1834.64,0.0,1978.64,144.0,2279.55,2423.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 -house032.xml,1924.45,144.0,567.69,0.0,711.69,144.0,1068.76,1212.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 -house033.xml,3980.86,144.0,536.35,0.0,680.35,0.0,0.0,0.0,0.0,3300.51,3300.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 -house034.xml,5891.18,144.0,1577.51,0.0,1721.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4169.67,4169.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 -house035.xml,1499.97,144.0,636.67,0.0,780.67,144.0,575.3,719.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 -house036.xml,1936.2,144.0,941.96,0.0,1085.96,144.0,706.24,850.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 -house037.xml,3487.6,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2379.57,2379.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house038.xml,3074.94,144.0,1863.26,0.0,2007.26,144.0,923.68,1067.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 -house039.xml,2108.86,144.0,877.32,0.0,1021.32,144.0,943.54,1087.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 -house040.xml,2117.69,144.0,858.61,0.0,1002.61,144.0,971.08,1115.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 -house041.xml,3636.79,144.0,1750.74,0.0,1894.74,144.0,1598.05,1742.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 -house042.xml,3218.05,144.0,1488.52,0.0,1632.52,144.0,1441.53,1585.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 -house043.xml,2371.22,144.0,1113.8,0.0,1257.8,144.0,969.42,1113.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 -house044.xml,3286.48,144.0,1616.95,0.0,1760.95,144.0,1381.53,1525.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 -house045.xml,2481.28,144.0,1309.25,0.0,1453.25,144.0,884.03,1028.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 -house046.xml,950.71,144.0,806.71,0.0,950.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 -house047.xml,991.39,144.0,637.13,0.0,781.13,144.0,66.26,210.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 -house048.xml,2269.77,144.0,1448.93,0.0,1592.93,144.0,532.84,676.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 +house005.xml,2668.68,144.0,1951.66,0.0,2095.66,144.0,429.02,573.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 +house006.xml,2274.89,144.0,1177.55,0.0,1321.55,144.0,809.34,953.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 +house007.xml,2335.01,144.0,1257.35,0.0,1401.35,144.0,789.66,933.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 +house008.xml,2826.13,144.0,1454.47,0.0,1598.47,144.0,1083.66,1227.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 +house009.xml,2454.05,144.0,1263.31,0.0,1407.31,144.0,902.74,1046.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 +house010.xml,2555.49,144.0,1393.76,0.0,1537.76,144.0,873.73,1017.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 +house011.xml,1599.43,144.0,1455.43,0.0,1599.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 +house012.xml,1299.12,144.0,1155.12,0.0,1299.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 +house013.xml,1129.43,144.0,985.43,0.0,1129.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 +house014.xml,1161.2,144.0,1017.2,0.0,1161.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 +house015.xml,1129.43,144.0,985.43,0.0,1129.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 +house016.xml,2697.33,144.0,1754.03,0.0,1898.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.3,799.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 +house017.xml,2096.74,144.0,1013.86,0.0,1157.86,144.0,794.88,938.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 +house018.xml,1734.45,144.0,1590.45,0.0,1734.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 +house019.xml,3151.56,144.0,1886.16,0.0,2030.16,144.0,977.4,1121.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 +house020.xml,4889.09,144.0,2486.43,0.0,2630.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.66,2258.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 +house021.xml,3394.18,144.0,1753.0,0.0,1897.0,144.0,1353.18,1497.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 +house022.xml,5106.63,144.0,1775.67,0.0,1919.67,0.0,0.0,0.0,0.0,3186.96,3186.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 +house023.xml,5125.06,144.0,2299.06,0.0,2443.06,0.0,0.0,0.0,0.0,2682.0,2682.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house024.xml,4793.18,144.0,1598.62,0.0,1742.62,0.0,0.0,0.0,0.0,3050.56,3050.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 +house025.xml,3023.43,144.0,2240.51,0.0,2384.51,144.0,494.92,638.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 +house026.xml,1540.23,144.0,801.94,0.0,945.94,144.0,450.29,594.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 +house027.xml,1884.67,144.0,1019.32,0.0,1163.32,144.0,577.35,721.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 +house028.xml,1785.95,144.0,962.01,0.0,1106.01,144.0,535.94,679.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 +house029.xml,2140.24,144.0,1169.99,0.0,1313.99,144.0,682.25,826.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 +house030.xml,2379.01,144.0,672.8,0.0,816.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1562.21,1562.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 +house031.xml,4400.0,144.0,1832.23,0.0,1976.23,144.0,2279.77,2423.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house032.xml,1924.9,144.0,567.7,0.0,711.7,144.0,1069.2,1213.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 +house033.xml,3982.06,144.0,536.35,0.0,680.35,0.0,0.0,0.0,0.0,3301.71,3301.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 +house034.xml,5894.17,144.0,1577.52,0.0,1721.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4172.65,4172.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 +house035.xml,1498.98,144.0,635.52,0.0,779.52,144.0,575.46,719.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 +house036.xml,1931.93,144.0,937.63,0.0,1081.63,144.0,706.3,850.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 +house037.xml,3488.99,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2380.96,2380.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 +house038.xml,3074.81,144.0,1863.06,0.0,2007.06,144.0,923.75,1067.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 +house039.xml,2109.19,144.0,877.55,0.0,1021.55,144.0,943.64,1087.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 +house040.xml,2118.23,144.0,858.63,0.0,1002.63,144.0,971.6,1115.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 +house041.xml,3632.64,144.0,1746.41,0.0,1890.41,144.0,1598.23,1742.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 +house042.xml,3216.44,144.0,1486.79,0.0,1630.79,144.0,1441.65,1585.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 +house043.xml,2368.64,144.0,1111.13,0.0,1255.13,144.0,969.51,1113.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 +house044.xml,3284.12,144.0,1614.48,0.0,1758.48,144.0,1381.64,1525.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 +house045.xml,2474.84,144.0,1302.64,0.0,1446.64,144.0,884.2,1028.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 +house046.xml,950.44,144.0,806.44,0.0,950.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 +house047.xml,990.8,144.0,636.48,0.0,780.48,144.0,66.32,210.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 +house048.xml,2269.05,144.0,1448.13,0.0,1592.13,144.0,532.92,676.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 house049.xml,1485.34,144.0,1174.21,0.0,1318.21,144.0,23.13,167.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 -house050.xml,1248.95,144.0,658.31,0.0,802.31,144.0,302.64,446.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 +house050.xml,1242.72,144.0,652.08,0.0,796.08,144.0,302.64,446.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 From 3ca7c0278f8b60fb938d1571489243ffe48e664b Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 5 Jan 2024 18:23:59 -0700 Subject: [PATCH 02/35] First pass. --- rulesets/resources/301ruleset.rb | 109 +++++++++-------- rulesets/tests/test_ventilation.rb | 182 ++++++++++++++++++++++++----- workflow/tests/util.rb | 4 +- 3 files changed, 210 insertions(+), 85 deletions(-) diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index b03b698bd..f129cfabb 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -342,7 +342,11 @@ def self.set_climate(orig_bldg, new_bldg) end def self.set_enclosure_air_infiltration_reference(new_bldg) - @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022C') + @infil_a_ext = 1.0 + else + @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) + end sla = 0.00036 ach50 = Airflow.get_infiltration_ACH50_from_SLA(sla, 0.65, @cfa, @infil_volume) @@ -359,6 +363,17 @@ def self.set_enclosure_air_infiltration_reference(new_bldg) def self.set_enclosure_air_infiltration_rated(orig_bldg, new_bldg) @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type + _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + cfm50 = ach50 * @infil_volume / 60.0 + tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + if cfm50 / tot_cb_area > 0.30 + @infil_a_ext = 1.0 + end + end + end + ach50 = calc_rated_home_infiltration_ach50(orig_bldg) new_bldg.air_infiltration_measurements.add(id: 'AirInfiltrationMeasurement', house_pressure: 50, @@ -1460,7 +1475,7 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ q_fan_airflow = (0.01 * @cfa) + (7.5 * (@nbeds + 1)) else q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) - q_fan_airflow = calc_mech_vent_q_fan(q_tot, ref_sla, true) # cfm for airflow + q_fan_airflow = calc_mech_vent_q_fan(q_tot, ref_sla, true, 0.0) # cfm for airflow end mech_vent_fans = orig_bldg.ventilation_fans.select { |f| f.used_for_whole_building_ventilation } @@ -1493,8 +1508,8 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ end # Calculate fan power - is_balanced = calc_mech_vent_is_balanced(orig_bldg.ventilation_fans) - q_fan_power = calc_rated_home_qfan(orig_bldg, is_balanced) # cfm for energy use calculation; Use Rated Home fan type + is_balanced, frac_imbal = get_mech_vent_imbal_properties(orig_bldg.ventilation_fans) + q_fan_power = calc_rated_home_qfan(orig_bldg, is_balanced, frac_imbal) # cfm for energy use calculation; Use Rated Home fan type if sum_fan_cfm > 0 fan_power_w = sum_fan_w / sum_fan_cfm * q_fan_power else @@ -1621,6 +1636,10 @@ def self.set_systems_mechanical_ventilation_rated(orig_bldg, new_bldg) new_vent_fan.precooling_fraction_load_served = orig_vent_fan.precooling_fraction_load_served end end + + # FIXME: Where the resulting dwelling unit total air exchange rate is less than + # Qtot = 0.03 x CFA + 7.5 x (Nbr+1) cfm, a supplemental balanced ventilation system + # shall be added to the Rated Home to meet Qtot. end def self.set_systems_mechanical_ventilation_iad(new_bldg) @@ -1635,7 +1654,7 @@ def self.set_systems_mechanical_ventilation_iad(new_bldg) sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, @infil_volume) break end - q_fan = calc_mech_vent_q_fan(q_tot, sla, true) + q_fan = calc_mech_vent_q_fan(q_tot, sla, true, 0.0) fan_power_w = 0.70 * q_fan new_bldg.ventilation_fans.add(id: 'MechanicalVentilation', @@ -2363,8 +2382,8 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) balanced_fans = mech_vent_fans.select { |f| f.is_balanced? } # Calculate min airflow rate requirement - is_balanced = calc_mech_vent_is_balanced(mech_vent_fans) - min_q_fan = calc_rated_home_qfan(orig_bldg, is_balanced) + is_balanced, frac_imbal = get_mech_vent_imbal_properties(mech_vent_fans) + min_q_fan = calc_rated_home_qfan(orig_bldg, is_balanced, frac_imbal) # Calculate total supply/exhaust cfm (across all mech vent systems) cfm_oa_supply, cfm_oa_exhaust = calc_mech_vent_supply_exhaust_cfms(mech_vent_fans, :oa) @@ -2445,15 +2464,7 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) def self.calc_rated_home_infiltration_ach50(orig_bldg) _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type - if (Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019')) - cfm50 = ach50 * @infil_volume / 60.0 - tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() - if cfm50 / tot_cb_area <= 0.30 - ach50 *= @infil_a_ext - end - end - end + ach50 *= @infil_a_ext # Apply min Natural ACH? min_nach = nil @@ -2504,65 +2515,61 @@ def self.calc_mech_vent_supply_exhaust_cfms(ventilation_fans, total_or_oa) return cfm_supply, cfm_exhaust end - def self.calc_mech_vent_is_balanced(ventilation_fans) - unmeasured_types = ventilation_fans.select { |f| f.used_for_whole_building_ventilation && f.flow_rate_not_tested } - if unmeasured_types.size > 0 # Some mech vent systems are not measured + def self.get_mech_vent_imbal_properties(mech_vent_fans) + # Returns (is_imbalanced, frac_imbalanced) + whole_fans = mech_vent_fans.select { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? } + + if whole_fans.count { |f| !f.is_balanced? && f.hours_in_operation < 24 } > 1 + return false, 1.0 # Multiple intermittent unbalanced fans, assume imbalanced per ANSI 301-2022 + end + + unmeasured_types = whole_fans.select { |f| f.flow_rate_not_tested } + if unmeasured_types.size > 0 if unmeasured_types.all? { |f| f.is_balanced? } - return true # All types are balanced, assume balanced + return true, 0.0 # All types are balanced, assume balanced else - return false # Some supply-only or exhaust-only systems, impossible to know, assume imbalanced + return false, 1.0 # Some supply-only or exhaust-only systems, impossible to know, assume imbalanced end end - cfm_total_supply, cfm_total_exhaust = calc_mech_vent_supply_exhaust_cfms(ventilation_fans, :total) + cfm_total_supply, cfm_total_exhaust = calc_mech_vent_supply_exhaust_cfms(mech_vent_fans, :total) q_avg = (cfm_total_supply + cfm_total_exhaust) / 2.0 if (cfm_total_supply - q_avg).abs / q_avg <= 0.1 - return true # Supply/exhaust within 10% of average; balanced + is_balanced = true # Supply/exhaust within 10% of average; balanced + else + is_balanced = false + end + if cfm_total_supply + cfm_total_exhaust > 0 + frac_imbal = (cfm_total_supply - cfm_total_exhaust).abs / [cfm_total_supply, cfm_total_exhaust].max + else + frac_imbal = 1.0 end - return false # imbalanced + return is_balanced, frac_imbal end - def self.calc_rated_home_qfan(orig_bldg, is_balanced) + def self.calc_rated_home_qfan(orig_bldg, is_balanced, frac_imbal) ach50 = calc_rated_home_infiltration_ach50(orig_bldg) sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, @infil_volume) q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) - q_fan_power = calc_mech_vent_q_fan(q_tot, sla, is_balanced) - return q_fan_power + q_fan = calc_mech_vent_q_fan(q_tot, sla, is_balanced, frac_imbal) + return q_fan end - def self.calc_mech_vent_q_fan(q_tot, sla, is_balanced) + def self.calc_mech_vent_q_fan(q_tot, sla, is_balanced, frac_imbal) nl = Airflow.get_infiltration_NL_from_SLA(sla, @infil_height) q_inf = Airflow.get_infiltration_Qinf_from_NL(nl, @weather, @cfa) - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') - if is_balanced - phi = 1.0 - else - phi = q_inf / q_tot - end - q_fan = q_tot - phi * (q_inf * @infil_a_ext) - else - if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type - # No infiltration credit for attached/multifamily - return q_tot - end - - if q_inf > 2.0 / 3.0 * q_tot - q_fan = q_tot - 2.0 / 3.0 * q_tot - else - q_fan = q_tot - q_inf - end - end - - return [q_fan, 0].max + q_fan = Airflow.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, @infil_a_ext, @bldg_type, @eri_version, nil) + return q_fan end - def self.calc_mech_vent_Aext_ratio(hpxml) - tot_cb_area, ext_cb_area = hpxml.compartmentalization_boundary_areas() + def self.calc_mech_vent_Aext_ratio(orig_bldg) if @bldg_type == HPXML::ResidentialTypeSFD return 1.0 end + tot_cb_area, ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + return ext_cb_area / tot_cb_area end diff --git a/rulesets/tests/test_ventilation.rb b/rulesets/tests/test_ventilation.rb index 21de360b9..43c010073 100644 --- a/rulesets/tests/test_ventilation.rb +++ b/rulesets/tests/test_ventilation.rb @@ -56,6 +56,22 @@ def test_mech_vent_none def test_mech_vent_attached_or_multifamily hpxml_name = 'base-bldgtype-mf-unit.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + # Test w/ 301-2019 + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -89,6 +105,21 @@ def test_mech_vent_attached_or_multifamily def test_mech_vent_exhaust hpxml_name = 'base-mechvent-exhaust.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeExhaust, flowrate: 110.0, hours: 24, power: 30.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -133,6 +164,21 @@ def test_mech_vent_exhaust_below_ashrae_622 hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeExhaust, flowrate: 110.0, hours: 22.2, power: 30.0 }]) # Increased fan power + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -175,6 +221,21 @@ def test_mech_vent_exhaust_defaulted_fan_power hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeExhaust, flowrate: 101.8, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -216,6 +277,21 @@ def test_mech_vent_exhaust_unmeasured_airflow_rate hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 2.0 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeExhaust, flowrate: 15.0, hours: 24, power: 30.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -259,6 +335,21 @@ def test_mech_vent_exhaust_unmeasured_airflow_rate_and_defaulted_fan_power hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 2.0 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeExhaust, flowrate: 15.0, hours: 24, power: 5.3 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -291,6 +382,21 @@ def test_mech_vent_exhaust_unmeasured_airflow_rate_and_defaulted_fan_power def test_mech_vent_supply hpxml_name = 'base-mechvent-supply.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 110.0, hours: 24, power: 30.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -490,6 +596,24 @@ def test_mech_vent_cfis cfis_mode = (hpxml_name == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' ? HPXML::CFISModeSupplementalFan : HPXML::CFISModeAirHandler) cfis_suppl_flowrate = (hpxml_name == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' ? 120.0 : nil) cfis_suppl_power = (hpxml_name == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' ? 30.0 : nil) + + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 35.6 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeCFIS, flowrate: 330.0, hours: 8, power: 300.0, + cfis_airflow_fraction: cfis_airflow_fraction, cfis_mode: cfis_mode, + cfis_suppl_flowrate: cfis_suppl_flowrate, cfis_suppl_power: cfis_suppl_power }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -538,19 +662,10 @@ def test_mech_vent_cfis_unmeasured_airflow_rate_and_defaulted_fan_power hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _all_calc_types.each do |calc_type| - _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) - if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 0.2 }]) - elsif [Constants.CalcTypeERIRatedHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeCFIS, flowrate: 45.0, hours: 8, power: 464.0, cfis_airflow_fraction: 1.0, - cfis_mode: HPXML::CFISModeAirHandler }]) - elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) - elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) - end - end + calc_type = Constants.CalcTypeERIRatedHome + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeCFIS, flowrate: 45.0, hours: 8, power: 464.0, cfis_airflow_fraction: 1.0, + cfis_mode: HPXML::CFISModeAirHandler }]) # Create derivative file for testing hpxml_name = 'base-mechvent-cfis-supplemental-fan-exhaust.xml' @@ -564,21 +679,10 @@ def test_mech_vent_cfis_unmeasured_airflow_rate_and_defaulted_fan_power hpxml_name = File.basename(@tmp_hpxml_path) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _all_calc_types.each do |calc_type| - next unless calc_type == Constants.CalcTypeERIRatedHome - - _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) - if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 26.8, hours: 24, power: 0.1 }]) - elsif [Constants.CalcTypeERIRatedHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeCFIS, flowrate: 330.0, hours: 8, power: 300.0, cfis_airflow_fraction: 1.0, - cfis_mode: HPXML::CFISModeSupplementalFan, cfis_suppl_flowrate: 110.0, cfis_suppl_power: 38.5 }]) - elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) - elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.5, hours: 24, power: 42.0 }]) - end - end + calc_type = Constants.CalcTypeERIRatedHome + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeCFIS, flowrate: 330.0, hours: 8, power: 300.0, cfis_airflow_fraction: 1.0, + cfis_mode: HPXML::CFISModeSupplementalFan, cfis_suppl_flowrate: 110.0, cfis_suppl_power: 38.5 }]) end def test_mech_vent_cfm50_infiltration @@ -882,6 +986,22 @@ def test_mech_vent_multiple def test_mech_vent_shared hpxml_name = 'base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 17.3 }]) + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, + { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -914,7 +1034,7 @@ def test_mech_vent_shared_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 50.6, hours: 24, power: 19.7 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 17.3 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -939,7 +1059,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 50.6, hours: 24, power: 17.9 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -966,7 +1086,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate_and_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 50.6, hours: 24, power: 17.9 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) diff --git a/workflow/tests/util.rb b/workflow/tests/util.rb index a5f37cbbd..fed81fa38 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -327,8 +327,6 @@ def _test_resnet_hers_reference_home_auto_generation(test_name, dir_name) vent_fan.fan_power = 0.70 * vent_fan.tested_flow_rate elsif (vent_fan.fan_type == HPXML::MechVentTypeERV) || (vent_fan.fan_type == HPXML::MechVentTypeHRV) vent_fan.fan_power = 1.00 * vent_fan.tested_flow_rate - elsif vent_fan.fan_type == HPXML::MechVentTypeCFIS - vent_fan.fan_power = 0.50 * vent_fan.tested_flow_rate end end XMLHelper.write_file(new_hpxml.to_doc, out_xml) @@ -885,7 +883,7 @@ def _check_reference_home_components(results, test_num, version) if test_num == 1 mv_kwh_yr = 0.0 elsif test_num == 2 - mv_kwh_yr = 222.1 + mv_kwh_yr = 223.9 elsif test_num == 3 mv_kwh_yr = 288.1 else From e67a6ec4b6df3a50397cdf998527f1f919ee1fdb Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 5 Jan 2024 19:20:12 -0700 Subject: [PATCH 03/35] Squashed 'hpxml-measures/' changes from fbf067fdcb..46fe162b76 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 1092b38dee Handle case where Qinf > Qtot. 8db9c4dd9c Latest results. git-subtree-dir: hpxml-measures git-subtree-split: 46fe162b765a5211907e7660c1a99d83aa5c0897 --- HPXMLtoOpenStudio/measure.xml | 6 +- HPXMLtoOpenStudio/resources/airflow.rb | 6 +- .../tests/base_results/results_sizing.csv | 22 +++---- .../results_workflow_simulations1.csv | 26 ++++----- .../results_workflow_simulations1_bills.csv | 16 ++--- .../results_workflow_simulations2.csv | 58 +++++++++---------- .../results_workflow_simulations2_bills.csv | 54 ++++++++--------- 7 files changed, 96 insertions(+), 92 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 57e5c9dad..593881d8a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - cae1b905-8be7-4d40-b876-bafce627be14 - 2024-01-06T00:34:12Z + 5228cf4d-3a13-4bfe-bca6-fa7f994008e1 + 2024-01-06T02:18:46Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - A5E9FF8C + 956E8BC4 battery.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index a962377f1..4fcdf98da 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -2094,7 +2094,11 @@ def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bl q_fan = q_tot - q_inf_eff else q_inf_eff = q_inf * a_ext - q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + if q_inf_eff >= q_tot + q_fan = 0.0 + else + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end end elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') if is_balanced diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index d3e35f8a0..70506a3a6 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -108,11 +108,11 @@ denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodo 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-HERS.xml,35132.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,29280.0,30497.0,31147.0,693.0,951.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35188.0,36653.0,31147.0,832.0,1143.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57566.0,31147.0,1307.0,1795.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57570.0,31147.0,1307.0,1795.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,23459.0,0.0,534.0,732.0 @@ -120,10 +120,10 @@ denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0,534.0, denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0,832.0,967.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,39186.0,41044.0,31147.0,927.0,1280.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20424.0,0.0,0.0,637.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24848.0,26181.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20423.0,0.0,0.0,637.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24847.0,26181.0,564.0,775.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,46458.0,48389.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,46458.0,48392.0,26181.0,1099.0,1509.0 denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17356.0,0.0,0.0,722.0 denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14282.0,0.0,0.0,476.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17356.0,0.0,0.0,722.0 @@ -294,18 +294,18 @@ houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-method 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,30106.0,28785.0,20038.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29787.0,20038.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34137.0,20038.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30106.0,28783.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29789.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34140.0,20038.0,698.0,1065.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,28785.0,0.0,291.0,898.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,28783.0,0.0,291.0,898.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,40845.0,39322.0,20038.0,798.0,819.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,624.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,40845.0,39322.0,20038.0,798.0,819.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24438.0,0.0,0.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24438.0,16055.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24436.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24436.0,16055.0,499.0,762.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,27617.0,26405.0,16055.0,540.0,823.0 houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20779.0,0.0,0.0,864.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 820be3abb..130fa409e 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,40.91,34.086,26.107,19.282,0.637,0.0, base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.392,28.392,28.392,28.392,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.328,0.0,0.0,2.415,2.868,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.588,0.0,8.984,9.374,0.577,0.0,0.0,0.0,0.0,1731.7,2025.8,2025.8,3.449,7.707,0.0,-0.016,2.488,0.0,0.0,0.427,3.957,-2.568,0.0,0.0,-0.012,0.0,-0.388,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.01,-1.077,0.0,0.0,-0.038,-1.093,5.634,0.0,0.0,-0.006,0.0,-0.378,-0.502,-1.681,-0.383,0.0,0.0,7.368,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.637,31.637,16.644,16.644,14.993,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.01,0.548,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.58,0.0,14.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.535,0.0,9.264,9.374,2.266,0.0,0.0,0.0,0.0,1020.3,1539.9,1539.9,3.498,7.734,0.0,-0.017,2.441,0.0,0.0,0.425,3.917,-2.473,0.0,0.0,-0.012,0.0,-0.414,2.026,0.0,0.0,0.0,0.0,-4.709,-0.753,0.0,-0.012,-1.134,0.0,0.0,-0.041,-1.149,5.73,0.0,0.0,-0.007,0.0,-0.404,-0.925,-1.711,0.0,0.0,0.0,7.747,1.273,1354.8,997.6,11172.0,3093.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-laundry-room.xml,29.523,29.523,16.46,16.46,13.063,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.863,0.51,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.749,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.692,0.0,8.568,9.374,0.569,0.0,0.0,0.0,0.0,1011.4,1528.6,1528.6,3.655,7.615,0.0,-0.017,2.502,0.0,0.0,0.426,3.98,-2.665,0.0,0.0,-0.013,0.0,-0.393,2.064,0.0,0.0,0.0,0.0,-4.482,-0.801,0.0,-0.012,-1.03,0.0,0.0,-0.033,-1.02,5.538,0.0,0.0,-0.008,0.0,-0.383,-0.847,-1.646,0.0,0.0,0.0,6.88,1.226,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-mechvent-multiple.xml,50.688,50.688,30.635,30.635,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.786,0.301,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.892,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.311,0.0,5.073,9.374,0.616,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.585,8.979,0.0,-0.017,2.792,0.0,0.0,0.407,4.197,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.344,0.0,0.0,-6.695,-1.194,0.0,-0.013,-0.139,0.0,0.0,0.06,0.131,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.754,-4.199,0.0,0.0,5.311,0.832,1354.8,997.6,11171.6,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.544,32.544,27.245,27.245,5.299,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.63,0.445,9.538,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.341,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.24,0.0,7.41,9.374,0.587,0.0,0.0,0.0,0.0,1656.4,2023.4,2023.4,4.163,7.879,0.0,-0.018,2.64,0.0,0.0,0.432,4.152,-3.079,0.0,0.0,-0.017,0.0,-0.359,1.776,0.0,1.929,0.0,0.0,-5.323,-0.931,0.0,-0.013,-0.758,0.0,0.0,-0.001,-0.635,5.123,0.0,0.0,-0.012,0.0,-0.351,-0.521,-1.382,-1.753,0.0,0.0,6.655,1.096,1354.8,997.6,11171.6,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.767,30.767,27.1,27.1,3.667,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.53,0.418,9.548,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.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,3.395,0.0,7.118,9.374,0.597,0.0,0.0,0.0,0.0,1646.4,2003.5,2003.5,5.987,8.5,0.0,-0.016,2.685,0.0,0.0,0.398,4.043,-3.61,0.0,0.0,-0.018,0.0,-0.252,1.74,0.0,5.31,0.0,0.0,-5.808,-1.041,0.0,-0.012,-0.554,0.0,0.0,-0.005,-0.492,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.431,-1.381,-1.484,0.0,0.0,6.179,0.985,1354.8,997.6,11171.6,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-mechvent-multiple.xml,50.809,50.809,30.633,30.633,20.176,0.0,0.0,0.0,0.0,0.0,0.0,0.058,0.0,0.0,2.787,0.3,9.566,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,8.014,0.0,0.0,0.0,0.0,12.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.425,0.0,5.07,9.374,0.616,0.0,0.0,0.0,0.0,1866.4,2259.8,2259.8,7.611,8.992,0.0,-0.017,2.792,0.0,0.0,0.407,4.192,-4.241,0.0,0.0,-0.02,0.0,-0.261,0.209,0.0,12.332,0.0,0.0,-6.697,-1.195,0.0,-0.012,-0.136,0.0,0.0,0.06,0.131,3.961,0.0,0.0,-0.016,0.0,-0.255,-0.016,-0.753,-4.193,0.0,0.0,5.309,0.832,1354.8,997.6,11171.6,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.425,32.425,27.296,27.296,5.129,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.673,0.455,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.163,0.0,0.0,0.0,0.0,3.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.075,0.0,7.54,9.374,0.586,0.0,0.0,0.0,0.0,1729.0,2025.3,2025.3,3.846,7.873,0.0,-0.018,2.631,0.0,0.0,0.435,4.153,-3.003,0.0,0.0,-0.016,0.0,-0.365,1.422,0.0,1.938,0.0,0.0,-5.244,-0.913,0.0,-0.013,-0.791,0.0,0.0,-0.003,-0.672,5.199,0.0,0.0,-0.011,0.0,-0.356,-0.419,-1.404,-1.792,0.0,0.0,6.732,1.113,1354.8,997.6,11171.6,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.516,30.516,27.12,27.12,3.397,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.548,0.423,9.547,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.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,3.145,0.0,7.202,9.374,0.596,0.0,0.0,0.0,0.0,1648.3,2018.5,2018.5,5.706,8.494,0.0,-0.016,2.686,0.0,0.0,0.4,4.052,-3.58,0.0,0.0,-0.018,0.0,-0.254,1.401,0.0,5.314,0.0,0.0,-5.778,-1.034,0.0,-0.012,-0.569,0.0,0.0,-0.006,-0.508,4.622,0.0,0.0,-0.014,0.0,-0.248,-0.325,-1.403,-1.51,0.0,0.0,6.209,0.992,1354.8,997.6,11171.6,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.743,2.296,26.107,1.659,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.683,30.683,17.571,17.571,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1056.9,1589.2,1589.2,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,29.587,29.587,16.475,16.475,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1004.2,1536.5,1536.5,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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 @@ -63,7 +63,7 @@ base-dhw-desuperheater-2-speed.xml,31.989,31.989,31.989,31.989,0.0,0.0,0.0,0.0,0 base-dhw-desuperheater-gshp.xml,38.021,38.021,38.021,38.021,0.0,0.0,0.0,0.0,0.0,0.0,5.552,0.566,0.0,0.0,3.04,0.988,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,13.555,9.073,0.614,2.863,0.0,0.0,0.0,3419.5,2343.1,3419.5,22.235,16.609,0.0,3.593,3.642,0.513,7.526,0.63,10.095,-12.683,0.0,0.0,0.0,8.321,-0.063,4.805,0.0,0.729,0.0,3.701,-8.59,-2.499,0.0,0.005,-0.446,-0.049,2.735,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.26,-0.059,-1.145,-3.86,-0.163,0.0,2.129,8.481,2.01,1354.8,997.6,11186.3,2566.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,18787.0,5329.0,7037.0,0.0,207.0,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.254,56.254,29.571,29.571,26.682,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.353,0.827,2.675,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,24.987,0.0,14.378,9.086,1.809,2.921,0.0,0.0,0.0,1884.0,3127.9,3127.9,25.892,19.484,0.0,3.523,3.635,0.511,7.505,0.628,10.069,-12.724,0.0,0.0,0.0,8.338,-0.052,4.795,0.0,0.727,0.0,5.643,-5.455,-2.509,0.0,-0.001,-0.405,-0.044,2.871,-0.011,-1.224,11.689,0.0,0.0,0.0,-6.044,-0.049,-1.099,-3.608,-0.154,0.0,3.142,7.597,2.0,1354.7,997.5,11146.8,2557.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.582,33.582,33.582,33.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349,1.145,6.811,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.077,9.08,0.0,2.843,0.0,0.0,0.0,1932.8,3239.8,3239.8,0.0,19.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.447,-0.049,2.73,-0.026,-1.379,11.85,0.0,0.0,0.0,-6.828,-0.064,-1.163,-3.706,-0.163,0.0,3.168,8.336,2.036,1354.8,997.6,11133.3,2554.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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,0.0,19.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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.437,8.613,2.036,1354.8,997.6,11182.7,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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.438,8.613,2.036,1354.8,997.6,11182.6,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.xml,33.61,33.61,33.61,33.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.401,1.162,6.771,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.296,9.074,0.662,2.892,0.0,0.0,0.0,2069.0,3252.8,3252.8,0.0,19.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.057,-0.453,-0.05,2.715,-0.028,-1.397,11.85,0.0,0.0,0.0,-6.838,-0.063,-1.17,-3.747,-0.164,0.0,3.204,8.628,2.036,1354.8,997.6,11182.2,2566.0,0.0,0.0,24000.0,0.0,6.8,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.722,55.722,33.436,33.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,6.745,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,6.634,0.614,0.0,0.0,0.0,0.0,2094.2,3386.2,3386.2,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.9,53.9,21.421,21.421,32.479,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.157,0.0,13.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.16,0.0,0.0,9.099,2.376,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.745,3.645,0.513,7.514,0.631,10.106,-12.669,0.0,0.0,0.0,8.166,-0.067,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.0,852.3,9358.0,2147.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 @@ -104,8 +104,8 @@ base-dhw-tank-heat-pump-uef.xml,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0 base-dhw-tank-heat-pump-with-solar-fraction.xml,51.774,51.774,27.728,27.728,24.047,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.062,0.757,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.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.519,0.0,13.145,9.108,0.603,0.0,5.92,0.0,0.0,1856.4,3135.7,3135.7,25.408,18.877,0.0,3.543,3.64,0.512,7.52,0.629,10.078,-12.705,0.0,0.0,0.0,8.33,-0.054,4.8,0.0,0.728,0.0,5.165,-7.514,-2.501,0.0,-0.009,-0.426,-0.047,2.793,-0.017,-1.3,11.708,0.0,0.0,0.0,-6.161,-0.051,-1.126,-3.666,-0.159,0.0,2.942,6.881,2.009,474.2,349.2,3821.8,877.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-with-solar.xml,51.285,51.285,28.322,28.322,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.394,0.836,1.109,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.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,14.538,9.022,1.967,0.0,8.046,0.0,0.0,1896.1,3141.1,3141.1,25.085,19.317,0.0,3.556,3.646,0.513,7.539,0.63,10.092,-12.686,0.0,0.0,0.0,8.338,-0.056,4.806,0.0,0.729,0.0,4.959,-8.421,-2.498,0.0,-0.042,-0.449,-0.05,2.725,-0.024,-1.374,11.727,0.0,0.0,0.0,-6.263,-0.052,-1.153,-3.893,-0.164,0.0,3.186,8.558,2.011,1354.4,997.3,11681.5,2680.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.xml,56.198,56.198,29.584,29.584,26.613,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.798,0.695,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.919,0.0,12.099,9.12,1.72,0.0,0.0,0.0,0.0,1874.8,3266.4,3266.4,23.533,19.025,0.0,3.526,3.638,0.512,7.512,0.627,10.061,-12.745,0.0,0.0,0.0,8.354,-0.048,4.795,0.0,0.727,0.0,5.628,-5.522,-2.509,0.0,0.026,-0.397,-0.042,2.889,-0.011,-1.216,11.668,0.0,0.0,0.0,-6.004,-0.044,-1.095,-3.485,-0.152,0.0,2.731,5.541,2.001,1354.8,997.6,10838.9,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.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5540.9,5540.9,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.148,35.148,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,2003.7,3403.2,3403.2,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,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-model-type-stratified-detailed-occupancy-stochastic.xml,58.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.3,5544.6,5544.6,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.147,35.147,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,1991.8,3400.6,3400.6,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,7.6,2.01,1354.8,997.6,10766.3,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.631,64.631,26.844,26.844,22.506,15.282,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.631,64.631,26.844,26.844,22.506,0.0,0.0,15.282,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.51,60.51,26.638,26.638,33.872,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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 @@ -125,7 +125,7 @@ base-enclosure-beds-4.xml,59.598,59.598,38.291,38.291,21.308,0.0,0.0,0.0,0.0,0.0 base-enclosure-beds-5.xml,61.195,61.195,40.856,40.856,20.34,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.558,0.875,12.384,0.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.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,19.047,0.0,15.027,12.694,0.613,0.0,0.0,0.0,0.0,2527.7,3848.9,3848.9,22.438,19.545,0.0,3.581,3.656,0.515,7.57,0.633,10.127,-12.669,0.0,0.0,0.0,8.363,-0.063,4.813,0.0,0.733,0.0,4.445,-10.517,-2.496,0.0,-0.071,-0.475,-0.053,2.644,-0.03,-1.447,11.744,0.0,0.0,0.0,-6.394,-0.059,-1.177,-4.059,-0.168,0.0,3.259,9.462,2.013,1770.0,1358.2,16181.1,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.121,74.121,36.244,36.244,37.877,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.467,0.855,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.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,14.804,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3550.3,3550.3,29.35,19.593,0.0,17.295,3.593,0.505,7.261,0.621,9.962,-12.802,0.0,0.0,0.0,7.769,-0.077,4.847,0.0,0.734,0.0,6.981,-9.069,-2.542,0.0,0.171,-0.316,-0.031,2.926,0.011,-0.954,11.611,0.0,0.0,0.0,-6.041,-0.067,-0.997,-3.569,-0.139,0.0,2.714,7.714,1.967,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.006,67.006,29.235,29.235,37.771,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.621,0.644,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.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,35.377,0.0,11.026,9.182,0.621,0.0,0.0,0.0,0.0,1765.2,3434.2,3434.2,29.151,21.511,0.0,3.488,3.657,0.0,0.0,0.673,9.524,-13.013,0.0,0.0,29.112,0.0,-0.21,2.054,0.0,0.788,0.0,7.866,-7.475,-1.576,0.0,0.417,-0.07,0.0,0.0,0.095,0.915,10.955,0.0,0.0,-7.98,0.0,-0.205,-0.258,-2.064,-0.085,0.0,2.681,5.729,1.071,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.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.8,2717.8,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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-garage.xml,58.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.7,2717.7,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -159,7 +159,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,56.858,56.858,35.907,35 base-foundation-conditioned-basement-wall-insulation.xml,56.81,56.81,35.28,35.28,21.529,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.913,0.719,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.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.161,0.0,12.44,9.075,0.615,0.0,0.0,0.0,0.0,2128.4,3541.7,3541.7,23.225,18.708,0.0,3.587,3.672,0.517,6.119,0.637,10.174,-12.694,0.0,0.0,0.0,8.986,-0.065,4.83,0.0,0.734,0.0,4.712,-8.91,-2.501,0.0,0.021,-0.403,-0.043,1.124,-0.012,-1.234,11.72,0.0,0.0,0.0,-6.447,-0.06,-1.117,-3.536,-0.159,0.0,2.872,7.868,2.009,1354.8,997.6,11171.5,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.743,46.743,28.73,28.73,18.013,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.467,0.625,9.211,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.856,0.0,10.662,9.182,0.615,0.0,0.0,0.0,0.0,1720.5,2369.3,2369.3,15.899,11.707,0.0,3.711,3.607,0.507,5.114,0.622,9.795,-12.66,0.0,0.0,0.0,10.013,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.042,-0.455,-0.051,1.813,-0.024,-1.171,11.693,0.0,0.0,0.0,-3.767,-0.048,-0.825,-3.657,-0.162,0.0,0.0,6.309,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.293,42.293,29.585,29.585,12.708,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.257,0.806,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.708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.897,0.0,13.759,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3028.7,3028.7,15.204,15.253,0.0,3.987,3.873,0.0,0.0,0.781,10.597,-11.184,0.0,0.0,5.313,0.0,-0.387,2.587,0.0,0.0,0.0,1.989,-4.616,-1.421,0.0,-0.127,-0.701,0.0,0.0,-0.009,-0.408,12.785,0.0,0.0,-0.674,0.0,-0.383,-0.558,-3.053,0.0,0.0,1.668,4.25,1.226,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.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,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-slab.xml,39.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.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.468,43.468,29.72,29.72,13.747,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.338,0.825,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.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.871,0.0,14.125,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.992,3.873,0.0,0.0,0.78,10.643,-11.238,0.0,0.0,5.935,0.0,-0.399,2.591,0.0,0.0,0.0,2.406,-4.632,-1.425,0.0,-0.103,-0.682,0.0,0.0,-0.006,-0.407,12.731,0.0,0.0,-0.574,0.0,-0.394,-0.546,-3.037,0.0,0.0,1.944,4.233,1.222,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.792,40.792,29.146,29.146,11.646,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.904,0.723,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.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.903,0.0,12.248,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2618.9,2618.9,14.652,13.98,0.0,3.98,3.841,0.0,0.0,0.77,10.6,-11.048,0.0,0.0,4.439,0.0,-0.412,2.588,0.0,0.0,0.0,1.777,-4.589,-1.411,0.0,-0.105,-0.658,0.0,0.0,0.018,-0.387,12.921,0.0,0.0,-2.075,0.0,-0.408,-0.564,-2.892,0.0,0.0,1.149,4.277,1.237,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.429,48.429,28.801,28.801,19.628,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.572,0.643,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.371,0.0,10.91,9.126,0.639,0.0,0.0,0.0,0.0,1722.9,2460.7,2460.7,16.593,12.553,0.0,3.739,3.636,0.0,0.0,0.637,9.325,-12.477,0.0,0.0,14.533,0.0,-0.047,2.468,0.0,0.0,0.0,2.551,-4.777,-1.481,0.0,0.067,-0.435,0.0,0.0,-0.014,-0.416,11.491,0.0,0.0,-2.75,0.0,-0.046,-0.513,-2.855,0.0,0.0,1.316,4.089,1.166,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 @@ -196,7 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,35.667,35.667,35.667,35.667,0.0,0.0, base-hvac-central-ac-only-1-speed.xml,35.68,35.68,35.68,35.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.235,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3509.2,3509.2,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.09,34.09,34.09,34.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071,0.682,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.991,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3085.8,3085.8,0.0,19.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.071,-0.454,-0.05,2.711,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.709,-0.165,0.0,3.501,8.008,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.64,33.64,33.64,33.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189,0.114,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.956,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3511.1,3511.1,0.0,17.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.072,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.712,-0.165,0.0,3.503,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682,0.264,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.78,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.3,2899.3,0.0,18.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.341,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.683,0.264,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.781,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.5,2899.5,0.0,18.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.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.342,8.008,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.39,47.39,47.39,47.39,0.0,0.0,0.0,0.0,0.0,0.0,9.543,1.748,0.309,0.031,4.329,1.138,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,22.335,0.34,13.981,9.075,0.615,0.0,0.0,0.0,0.0,7195.9,3544.8,7195.9,25.253,19.042,0.0,3.497,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.335,-8.906,-2.499,0.0,-0.039,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.209,58.209,36.58,36.58,21.629,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.022,0.908,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.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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2102.1,2714.4,2714.4,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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,51.983,51.983,41.322,41.322,10.661,0.0,0.0,0.0,0.0,0.0,5.246,0.493,0.0,0.93,3.357,1.004,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,10.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,22.828,11.057,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3243.5,3608.2,24.193,16.253,0.0,3.47,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.86,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,53.543,53.543,30.861,30.861,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,56.21,56.21,56.21,56.21,0.0,0.0,0.0,0.0,0.0,0.0,20.503,0.368,0.0,0.0,4.247,0.8,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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,7897.8,3369.1,7897.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.154,52.154,52.154,52.154,0.0,0.0,0.0,0.0,0.0,0.0,21.293,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,8283.1,1637.3,8283.1,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.722,56.722,34.436,34.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.116,0.66,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.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,20.87,0.0,14.312,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3115.3,3115.3,23.032,19.58,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.052,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.827,-0.163,0.0,3.503,7.874,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.953,55.953,33.667,33.667,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.176,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.9,2924.9,23.032,19.212,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.424,7.874,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.953,55.953,33.668,33.668,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.177,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.7,2924.7,23.032,19.21,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.425,7.874,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.99,37.99,30.507,30.507,7.483,0.0,0.0,0.0,0.0,0.0,0.0,0.195,0.0,0.0,0.0,0.0,9.036,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.072,0.0,0.0,9.075,0.635,0.0,0.0,0.0,0.0,2085.2,1636.2,2085.2,18.154,0.0,0.0,2.843,2.786,0.39,5.36,0.411,7.452,-12.563,0.0,0.0,0.0,5.495,-0.053,3.476,0.0,0.572,0.0,1.818,-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,11171.5,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.451,58.451,30.861,30.861,27.59,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.468,58.468,35.00 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.737,57.737,34.277,34.277,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.332,0.37,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,23.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.862,0.0,15.952,9.075,0.615,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.153,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.136,-0.446,-0.049,2.733,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.058,-1.148,-3.837,-0.163,0.0,5.223,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.9,54.9,30.73,30.73,24.17,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.692,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2091.6,1637.3,2091.6,25.358,0.0,0.0,3.487,3.648,0.513,7.518,0.632,10.11,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,6.859,-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,42.348,42.348,42.348,42.348,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.569,0.0,0.0,3.533,0.899,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,20.77,0.0,13.454,9.075,0.615,0.0,0.0,0.0,0.0,3720.9,2983.5,3720.9,23.178,17.47,0.0,3.56,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.729,0.0,4.732,-8.906,-2.499,0.0,-0.017,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.827,-0.163,0.0,2.633,7.872,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.789,33.789,33.789,33.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.191,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.287,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.6,2951.6,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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.792,8.008,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.79,33.79,33.79,33.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.191,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.288,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.8,2951.8,0.0,14.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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.793,8.008,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.313,41.313,41.313,41.313,0.0,0.0,0.0,0.0,0.0,0.0,8.082,0.201,0.121,0.005,2.519,0.091,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,19.457,0.126,12.148,9.075,0.615,0.0,0.0,0.0,0.0,4873.7,2788.6,4873.7,19.228,14.089,0.0,3.606,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.39,-8.906,-2.499,0.0,0.037,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.315,7.872,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.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.024,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.516,8.008,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-ducted.xml,33.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.023,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.515,8.008,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.885,32.885,32.885,32.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2664.7,2664.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.023,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2503.8,2503.8,0.0,11.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.036,-0.455,-0.05,2.71,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.409,32.409,32.409,32.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.027,0.044,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.521,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2369.0,2369.0,0.0,13.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.705,-0.165,0.0,0.996,8.008,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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.413,48.413,36.149,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.929,38.929,38.929,38.929,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.036,0.0,0.0,1.887,0.003,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,16.192,0.0,10.855,9.075,0.615,0.0,0.0,0.0,0.0,3979.6,2668.0,3979.6,16.439,11.895,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.422,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6589.4,4004.5,6589.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.423,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6587.4,4004.5,6587.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.673,19.673,19.673,19.673,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.543,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.334,0.0,0.0,0.0,0.0,1272.9,1085.0,1272.9,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.9,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.741,50.741,50.741,50.741,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,4.243,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,2924.2,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.792,54.792,34.536,34.536,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243,0.0,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,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2019.6,2924.2,2924.2,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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 ff3f02147..6fb7ec8cb 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,1637.42,144.0,958.12,0.0,1102.12,144. base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1186.01,144.0,1042.01,0.0,1186.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1057.68,144.0,610.85,0.0,754.85,144.0,158.83,302.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-laundry-room.xml,1030.47,144.0,604.09,0.0,748.09,144.0,138.38,282.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.73,144.0,1124.31,0.0,1268.31,144.0,212.42,356.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.03,144.0,999.9,0.0,1143.9,144.0,56.13,200.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-bldgtype-mf-unit-shared-mechvent.xml,1321.42,144.0,994.58,0.0,1138.58,144.0,38.84,182.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-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.98,144.0,1124.25,0.0,1268.25,144.0,213.73,357.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 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.11,144.0,1001.78,0.0,1145.78,144.0,54.33,198.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1319.28,144.0,995.3,0.0,1139.3,144.0,35.98,179.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-bldgtype-mf-unit-shared-pv.xml,355.63,144.0,958.12,-897.25,204.88,144.0,6.75,150.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1071.77,144.0,644.87,0.0,788.87,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,0.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,1031.55,144.0,604.65,0.0,748.65,144.0,138.9,282.9,0.0,0.0,0.0,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 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,1452.99,144.0,1308.99,0.0,1452.99,0. base-hvac-central-ac-only-1-speed.xml,1453.45,144.0,1309.45,0.0,1453.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.xml,1395.13,144.0,1251.13,0.0,1395.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed-detailed-performance.xml,1378.61,144.0,1234.61,0.0,1378.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,1365.54,144.0,1221.54,0.0,1365.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-central-ac-only-var-speed.xml,1365.55,144.0,1221.55,0.0,1365.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1883.25,144.0,1739.25,0.0,1883.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-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,1917.47,144.0,1516.54,0.0,1660.54,144.0,112.93,256.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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,1616.84,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2206.93,144.0,2062.93,0.0,2206.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,2058.09,144.0,1914.09,0.0,2058.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-2-speed.xml,1787.91,144.0,1263.83,0.0,1407.83,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1759.68,144.0,1235.6,0.0,1379.6,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1759.69,144.0,1235.61,0.0,1379.61,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.89,144.0,1119.62,0.0,1263.62,144.0,79.27,223.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-hvac-furnace-gas-only-pilot.xml,1712.88,144.0,1132.61,0.0,1276.61,144.0,292.27,436.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-hvac-furnace-gas-only.xml,1660.89,144.0,1132.61,0.0,1276.61,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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1821.33,144.0,1284. base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1794.5,144.0,1257.98,0.0,1401.98,144.0,248.52,392.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-hvac-install-quality-furnace-gas-only.xml,1671.83,144.0,1127.79,0.0,1271.79,144.0,256.04,400.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-hvac-install-quality-ground-to-air-heat-pump.xml,1698.18,144.0,1554.18,0.0,1698.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.08,144.0,1240.08,0.0,1384.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-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.11,144.0,1240.11,0.0,1384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1660.19,144.0,1516.19,0.0,1660.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-hvac-mini-split-air-conditioner-only-ducted.xml,1360.38,144.0,1216.38,0.0,1360.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-mini-split-air-conditioner-only-ducted.xml,1360.37,144.0,1216.37,0.0,1360.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1350.91,144.0,1206.91,0.0,1350.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.75,144.0,1219.75,0.0,1363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1333.41,144.0,1189.41,0.0,1333.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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1899.61,144.0,1326.69,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1572.7,144.0,1428.7,0.0,1572.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 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1544.05,144.0,1400.05,0.0,1544.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-mini-split-heat-pump-ductless.xml,1544.05,144.0,1400.05,0.0,1544.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-multiple.xml,2492.92,144.0,1907.21,0.0,2051.21,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2492.93,144.0,1907.22,0.0,2051.22,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2514.22,144.0,2370.22,0.0,2514.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-ptac-with-heating-electricity.xml,2006.2,144.0,1862.2,0.0,2006.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-ptac-with-heating-natural-gas.xml,1770.06,144.0,1267.49,0.0,1411.49,144.0,214.57,358.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 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index 286ed2852..f9d84fd0f 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,35.6,35.6,35.6,35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0. base-location-miami-fl.xml,34.751,34.751,34.751,34.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.058,2.686,4.876,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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,44.892,4.634,0.552,0.0,0.0,0.0,0.0,2083.3,2402.8,2402.8,0.0,13.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.037,0.606,0.0,0.0,0.312,4.537,19.646,0.0,0.0,0.0,5.599,-0.004,-0.201,-2.929,-0.001,0.0,0.681,13.136,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.512,38.512,38.511,38.511,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.355,2.921,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,52.977,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3307.2,3307.2,0.564,18.415,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.766,1.406,0.0,0.0,0.804,6.879,24.223,0.0,0.0,0.0,7.021,-0.479,0.014,-3.281,0.117,0.0,0.95,11.527,2.372,1354.8,997.6,8260.5,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,36.932,36.932,27.395,27.395,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.775,0.511,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,8.421,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2663.0,2663.0,8.448,14.118,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.217,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.279,-0.746,0.0,0.0,0.003,-0.6,10.358,0.0,0.0,-2.866,0.0,-0.439,-0.339,-2.898,-0.248,0.0,0.534,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.399,79.399,37.588,37.588,41.811,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.0,0.0,4.061,0.746,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.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,39.159,0.0,12.895,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3770.9,3770.9,32.383,21.475,0.0,3.51,3.724,0.524,7.442,0.656,10.396,-12.846,0.0,0.0,0.0,8.145,-0.118,5.506,0.0,15.102,0.0,8.577,-9.186,-2.572,0.0,0.169,-0.24,-0.02,3.025,0.036,-0.659,11.568,0.0,0.0,0.0,-5.919,-0.114,-0.996,-3.03,-3.486,0.0,3.102,7.599,1.938,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-balanced.xml,78.588,78.588,37.575,37.575,41.013,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.061,0.746,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.412,0.0,12.902,9.075,0.62,0.0,0.0,0.0,0.0,2205.1,3756.3,3756.3,32.326,21.466,0.0,3.505,3.714,0.523,7.454,0.653,10.364,-12.828,0.0,0.0,0.0,8.178,-0.112,4.886,0.0,15.062,0.0,8.438,-9.161,-2.566,0.0,0.155,-0.254,-0.022,3.026,0.032,-0.703,11.586,0.0,0.0,0.0,-5.901,-0.108,-0.908,-3.049,-3.541,0.0,3.097,7.623,1.944,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.774,59.774,35.804,35.804,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.211,0.791,9.018,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.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,13.723,9.075,0.615,0.0,0.0,0.0,0.0,2184.9,3585.7,3585.7,24.906,20.499,0.0,3.547,3.643,0.513,7.528,0.63,10.092,-12.692,0.0,0.0,0.0,8.338,-0.059,4.321,0.0,2.474,0.0,5.172,-8.912,-2.501,0.0,-0.022,-0.434,-0.048,2.771,-0.019,-1.317,11.721,0.0,0.0,0.0,-6.192,-0.055,-1.025,-3.732,-0.678,0.0,3.064,7.868,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,18787.0,5329.0,7037.0,0.0,207.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.752,72.752,37.5,37.5,35.253,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.712,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,33.017,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.4,3636.4,3636.4,29.389,21.234,0.0,3.488,3.663,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.072,1.506,0.0,13.873,0.0,7.366,-9.006,-2.523,0.0,0.058,-0.349,-0.036,2.95,0.006,-1.027,11.663,0.0,0.0,0.0,-5.928,-0.068,-0.25,-3.306,-3.208,0.0,3.126,7.776,1.987,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,72.858,72.858,38.447,38.447,34.411,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,4.857,0.859,9.021,0.0,0.0,4.51,0.0,0.334,1.867,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.762,0.0,10.241,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.1,2937.1,21.242,13.424,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.317,-0.075,1.506,0.0,13.749,0.0,0.0,-9.003,-2.522,0.0,0.144,-0.351,-0.036,2.948,0.005,-1.028,11.674,0.0,0.0,0.0,-5.932,-0.071,-0.25,-3.298,-3.176,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.127,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2028.9,2119.8,0.0,18.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.158,-0.347,-0.034,3.018,-0.001,-1.07,11.85,0.0,0.0,0.0,-6.52,-0.058,-0.253,-3.067,-3.054,0.0,0.645,8.013,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,69.956,69.956,36.141,36.141,33.815,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.054,0.747,9.022,0.0,0.0,4.51,0.0,0.334,0.484,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,31.67,0.0,12.938,9.075,0.62,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.219,0.0,3.52,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.085,1.917,0.0,12.485,0.0,7.091,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.014,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.248,-3.126,-3.977,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.082,72.082,36.169,36.169,35.913,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.47,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.1,3634.9,3634.9,29.39,21.223,0.0,3.496,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.509,0.0,14.436,0.0,7.481,-9.041,-2.532,0.0,0.089,-0.32,-0.031,2.991,0.013,-0.934,11.639,0.0,0.0,0.0,-5.882,-0.073,-0.241,-3.187,-3.822,0.0,3.072,7.742,1.978,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,73.974,73.974,37.444,37.444,36.53,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,4.101,0.757,9.021,0.0,0.0,4.51,0.0,0.334,1.687,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,34.214,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.215,0.0,3.493,3.707,0.522,7.473,0.652,10.345,-12.783,0.0,0.0,0.0,8.216,-0.117,1.52,0.0,14.064,0.0,8.497,-9.107,-2.551,0.0,0.161,-0.288,-0.027,2.968,0.024,-0.808,11.63,0.0,0.0,0.0,-5.968,-0.113,-0.229,-3.173,-2.985,0.0,2.407,7.676,1.959,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,64.818,64.818,37.58,37.58,27.237,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.508,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.349,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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,64.821,64.821,37.58,37.58,27.241,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.511,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.35,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.909,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.093,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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-cfis-airflow-fraction-zero.xml,72.825,72.825,37.499,37.499,35.325,0.0,0.0,0.0,0.0,0.0,0.0,0.583,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.711,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.085,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.3,3637.4,3637.4,29.395,21.237,0.0,3.488,3.662,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.071,1.561,0.0,13.874,0.0,7.379,-9.006,-2.523,0.0,0.059,-0.349,-0.035,2.951,0.006,-1.026,11.663,0.0,0.0,0.0,-5.926,-0.067,-0.257,-3.305,-3.207,0.0,3.126,7.776,1.987,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,72.932,72.932,38.446,38.446,34.485,0.0,0.0,0.0,0.0,0.0,0.0,0.569,0.0,0.0,4.857,0.858,9.021,0.0,0.0,4.51,0.0,0.334,1.865,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.818,0.0,10.24,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.6,2937.6,21.249,13.433,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.318,-0.074,1.56,0.0,13.75,0.0,0.0,-9.003,-2.522,0.0,0.145,-0.351,-0.036,2.949,0.005,-1.027,11.674,0.0,0.0,0.0,-5.93,-0.071,-0.258,-3.296,-3.175,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.126,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2029.6,2119.8,0.0,18.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,-0.347,-0.034,3.019,-0.001,-1.069,11.85,0.0,0.0,0.0,-6.519,-0.058,-0.26,-3.066,-3.053,0.0,0.645,8.013,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.503,70.503,36.144,36.144,34.359,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.052,0.746,9.022,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,32.18,0.0,12.924,9.075,0.62,0.0,0.0,0.0,0.0,2132.3,3634.9,3634.9,29.397,21.223,0.0,3.516,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.086,2.299,0.0,12.513,0.0,7.194,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.015,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.262,-3.126,-3.978,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.155,72.155,36.17,36.17,35.985,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.469,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,33.703,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.2,3634.9,3634.9,29.396,21.226,0.0,3.497,3.673,0.517,7.491,0.641,10.214,-12.776,0.0,0.0,0.0,8.3,-0.077,1.564,0.0,14.439,0.0,7.494,-9.043,-2.532,0.0,0.09,-0.319,-0.031,2.991,0.014,-0.931,11.637,0.0,0.0,0.0,-5.882,-0.073,-0.248,-3.185,-3.818,0.0,3.073,7.74,1.977,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.043,74.043,37.444,37.444,36.599,0.0,0.0,0.0,0.0,0.0,0.0,0.604,0.0,0.0,4.101,0.756,9.021,0.0,0.0,4.51,0.0,0.334,1.686,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2175.2,3634.9,3634.9,29.395,21.219,0.0,3.493,3.707,0.522,7.474,0.652,10.347,-12.789,0.0,0.0,0.0,8.221,-0.117,1.575,0.0,14.069,0.0,8.507,-9.111,-2.552,0.0,0.161,-0.288,-0.027,2.97,0.024,-0.806,11.624,0.0,0.0,0.0,-5.961,-0.113,-0.235,-3.172,-2.98,0.0,2.408,7.672,1.958,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,64.045,64.045,37.571,37.571,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,13.849,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.289,19.837,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.671,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.049,64.049,37.571,37.571,26.478,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.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,0.0,0.0,24.797,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.291,19.838,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.911,0.0,5.672,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.842,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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,64.816,64.816,37.581,37.581,27.235,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.506,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.4,3567.4,25.348,20.019,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.904,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.836,0.0,3.135,7.852,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,64.819,64.819,37.581,37.581,27.238,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.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,25.509,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.5,3567.5,25.349,20.02,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.135,7.852,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.519,80.519,37.994,37.994,42.525,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.359,0.638,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,39.829,0.0,11.036,9.075,0.623,0.0,0.0,0.0,17.0,2271.7,3978.8,3978.8,35.903,23.182,0.0,3.191,3.72,0.523,7.484,0.654,10.365,-12.799,0.0,0.0,0.0,8.264,-0.112,3.854,0.0,9.575,0.0,16.45,-9.116,-2.555,0.0,0.122,-0.176,-0.011,3.258,0.05,-0.49,11.614,0.0,0.0,0.0,-5.538,-0.107,-0.584,0.0,-2.064,-9.14,4.551,7.671,1.955,1354.8,997.6,11171.6,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.203,72.203,36.644,36.644,35.559,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,4.105,0.758,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.559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,0.0,13.124,9.075,0.619,0.0,0.0,0.0,0.0,2161.4,3664.9,3664.9,29.255,21.263,0.0,3.496,3.671,0.516,7.491,0.64,10.21,-12.765,0.0,0.0,0.0,8.304,-0.08,1.509,0.0,14.164,0.0,7.413,-9.037,-2.53,0.0,0.085,-0.323,-0.032,2.988,0.013,-0.938,11.648,0.0,0.0,0.0,-5.883,-0.076,-0.241,-3.192,-3.668,0.0,3.107,7.746,1.979,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,64.043,64.043,37.571,37.571,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.288,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.906,0.0,5.671,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.817,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.046,64.046,37.571,37.571,26.475,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.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,24.794,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.289,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.672,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.908,80.908,37.992,37.992,42.916,0.0,0.0,0.0,0.0,0.0,0.0,0.705,0.0,0.0,4.351,0.636,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,40.198,0.0,11.008,9.075,0.623,0.0,0.0,0.0,16.0,2268.6,3975.9,3975.9,36.155,23.176,0.0,3.186,3.72,0.523,7.481,0.654,10.367,-12.797,0.0,0.0,0.0,8.257,-0.113,4.106,0.0,9.57,0.0,16.596,-9.12,-2.557,0.0,0.124,-0.175,-0.011,3.259,0.051,-0.484,11.616,0.0,0.0,0.0,-5.54,-0.108,-0.59,0.0,-2.06,-9.155,4.541,7.667,1.952,1354.8,997.6,11171.6,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.276,72.276,36.645,36.645,35.631,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,4.105,0.758,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.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,33.371,0.0,13.123,9.075,0.619,0.0,0.0,0.0,0.0,2161.7,3664.9,3664.9,29.261,21.267,0.0,3.498,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.564,0.0,14.169,0.0,7.427,-9.041,-2.532,0.0,0.087,-0.321,-0.031,2.99,0.013,-0.935,11.639,0.0,0.0,0.0,-5.883,-0.073,-0.248,-3.191,-3.662,0.0,3.108,7.742,1.978,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.506,56.506,34.04,34.04,22.465,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,2.345,0.349,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.675,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.039,0.0,5.929,9.075,0.624,0.0,0.0,0.0,0.0,2119.4,3330.5,3330.5,23.032,15.879,0.0,3.553,3.643,0.513,7.548,0.63,10.093,-12.683,0.0,0.0,0.0,8.448,-0.057,4.805,0.0,0.729,0.0,4.875,-8.905,-2.499,0.0,0.166,-0.229,-0.018,3.367,0.031,-0.704,11.73,0.0,0.0,0.0,-5.266,-0.053,-0.948,0.0,-0.13,-13.009,1.634,7.883,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,0.729,35.707,-21.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-57.264,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.188,43.837,31.372,12.021,31.816,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.141,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.352,0.0,0.509,31.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,29.781,0.0,5.079,10.472,0.697,0.0,9.068,0.0,0.0,2428.2,2923.3,2923.3,26.046,14.897,0.0,3.497,3.692,0.519,7.466,1.12,10.331,-12.811,0.0,0.0,0.0,8.262,-0.098,1.533,0.0,15.089,0.0,2.758,-9.292,-2.56,0.0,0.755,-0.059,0.006,3.521,-0.186,-0.214,11.602,0.0,0.0,0.0,-5.113,-0.094,-0.189,0.0,-3.299,-11.827,0.418,8.621,1.95,1610.4,1574.2,10321.5,3637.4,2.899,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-defaults.xml,63.533,44.181,31.397,12.045,32.136,0.0,0.0,0.0,0.0,0.0,0.0,0.53,0.0,0.0,2.144,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.139,0.0,0.0,1.092,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.352,0.0,0.509,32.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,0.0,0.0,30.08,0.0,5.09,10.472,0.697,0.0,9.069,0.0,0.0,2429.5,2929.0,2929.0,26.181,14.941,0.0,3.5,3.695,0.519,7.462,1.121,10.341,-12.814,0.0,0.0,0.0,8.251,-0.1,1.512,0.0,15.392,0.0,2.785,-9.299,-2.562,0.0,0.761,-0.055,0.007,3.521,-0.185,-0.2,11.599,0.0,0.0,0.0,-5.118,-0.096,-0.184,0.0,-3.35,-11.787,0.419,8.613,1.948,1610.4,1574.2,10321.5,3637.5,2.894,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-misc-emissions.xml,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.728,68.538,37.442,29.253,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.695,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -65,7 +65,7 @@ base-residents-0.xml,41.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,100.904,100.904,51.844,51.844,41.154,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2581.2,4359.9,4359.9,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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,79.85,79.85,49.418,49.418,22.526,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2382.9,4091.7,4091.7,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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.631,52.631,28.242,28.242,24.389,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.933,0.726,3.888,0.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.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.841,0.0,12.74,3.562,0.616,0.0,0.0,0.0,0.0,1659.2,3186.1,3186.1,23.634,18.192,0.0,3.531,3.633,0.511,7.496,0.629,10.079,-12.698,0.0,0.0,0.0,8.301,-0.064,4.803,0.0,0.727,0.0,5.255,-7.189,-2.504,0.0,0.003,-0.415,-0.045,2.827,-0.013,-1.246,11.715,0.0,0.0,0.0,-6.109,-0.06,-1.114,-3.587,-0.158,0.0,2.892,6.197,2.006,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,18787.0,5329.0,7037.0,0.0,207.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.279,49.028,39.741,19.49,29.538,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.247,0.327,6.919,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.125,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.402,29.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,27.648,0.0,5.459,18.165,0.646,0.0,11.901,0.0,0.0,3043.8,3169.5,3169.5,25.599,15.294,0.0,3.801,3.697,0.52,7.525,0.646,10.274,-12.772,0.0,0.0,0.0,8.383,-0.078,1.526,0.0,15.016,0.0,2.564,-11.192,-2.539,0.0,0.286,-0.128,-0.004,3.482,0.059,-0.375,11.641,0.0,0.0,0.0,-5.144,-0.074,-0.202,0.0,-3.462,-12.604,0.447,10.463,1.971,2592.1,2706.5,20695.6,5541.4,1.874,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.618,49.367,39.765,19.513,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.492,0.0,0.0,2.249,0.328,6.919,0.0,0.326,4.51,0.0,0.334,1.139,0.0,0.0,1.12,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.402,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.943,0.0,5.465,18.165,0.646,0.0,11.901,0.0,0.0,3045.2,3175.2,3175.2,25.734,15.337,0.0,3.804,3.7,0.521,7.522,0.647,10.284,-12.779,0.0,0.0,0.0,8.377,-0.08,1.505,0.0,15.32,0.0,2.592,-11.205,-2.542,0.0,0.291,-0.124,-0.003,3.483,0.06,-0.36,11.634,0.0,0.0,0.0,-5.143,-0.076,-0.198,0.0,-3.513,-12.561,0.448,10.45,1.968,2592.1,2706.5,20695.4,5541.3,1.873,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,59.371,59.371,35.954,35.954,23.417,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.421,0.836,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.529,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.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,21.928,0.0,14.458,9.053,0.639,0.0,0.0,0.333,1.0,9422.1,10694.0,10694.0,37.366,22.431,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.34,-0.062,5.307,0.0,0.78,0.0,5.114,-8.97,-2.51,0.0,-0.156,-0.472,-0.054,2.75,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.247,-0.058,-1.254,-3.683,-0.172,0.0,3.305,8.307,2.0,1354.7,998.0,11252.4,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.264,33.264,28.415,28.415,4.849,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.106,0.523,7.326,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.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,4.542,0.0,9.14,7.3,0.562,0.0,0.0,0.5,0.5,9397.2,10430.4,10430.4,41.543,22.03,0.0,2.613,2.46,0.344,4.288,0.335,6.49,-12.497,0.0,0.0,0.0,3.717,-0.101,3.385,0.0,0.384,0.0,1.014,-6.566,-1.596,0.0,-0.196,-0.552,-0.065,2.495,-0.053,-1.664,11.861,0.0,0.0,0.0,-7.407,-0.056,-1.323,-6.195,-0.206,0.0,2.188,8.45,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.184,42.184,34.117,34.117,8.067,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.117,0.526,9.053,0.0,0.0,4.51,0.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.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,7.554,0.0,9.185,9.053,0.672,0.0,0.0,0.0,0.5,9393.8,10433.4,10433.4,31.865,22.032,0.0,2.915,2.807,0.393,5.404,0.421,7.516,-12.492,0.0,0.0,0.0,5.535,-0.056,3.86,0.0,0.581,0.0,1.734,-8.86,-2.486,0.0,-0.199,-0.555,-0.065,2.499,-0.054,-1.674,11.861,0.0,0.0,0.0,-7.338,-0.055,-1.325,-6.213,-0.206,0.0,2.197,8.45,2.023,1354.7,998.0,11253.8,2582.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 @@ -91,25 +91,25 @@ base-simcontrol-timestep-30-mins.xml,58.376,58.376,35.774,35.774,22.602,0.0,0.0, base.xml,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.116,86.116,46.815,46.815,39.301,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.649,4.302,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.255,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.047,0.0,50.461,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.2,6551.2,37.693,42.27,0.495,2.0,7.304,0.422,0.0,0.983,7.167,-4.983,0.0,0.0,0.485,1.293,-0.284,4.307,0.0,5.164,0.0,3.188,-6.732,-2.918,0.562,1.985,3.714,0.306,0.0,0.234,1.592,11.482,0.0,0.0,0.521,6.825,-0.27,-0.41,-1.893,-0.751,0.0,10.689,11.618,4.463,2104.5,2144.0,14468.7,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.872,67.872,40.648,40.648,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.617,3.35,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.739,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.138,0.0,39.922,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.1,5237.1,23.852,29.589,0.0,2.552,5.064,0.0,0.0,0.846,5.728,-4.089,0.0,0.0,0.0,1.814,-0.159,1.581,0.0,3.794,0.0,1.353,-5.041,-2.476,0.0,3.071,2.787,0.0,0.0,0.413,0.378,8.65,0.0,0.0,0.0,8.439,-0.152,-0.184,-1.38,-0.646,0.0,5.87,8.961,3.906,1610.9,1574.7,9989.4,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.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.636,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,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.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.105,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,-0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,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 +house003.xml,68.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.635,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.311,136.311,75.785,75.785,60.526,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,29.582,9.335,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.377,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.887,0.0,109.161,8.985,3.512,0.0,0.0,0.0,101.0,3134.8,7528.2,7528.2,54.659,51.885,0.127,5.508,11.302,0.0,0.0,1.239,13.616,-5.791,0.0,0.0,0.0,3.101,-0.776,5.015,0.0,6.224,0.0,7.051,-7.184,-3.854,0.197,6.682,11.631,0.0,0.0,0.51,7.415,17.81,0.0,0.0,0.0,18.784,-0.763,1.041,-0.0,1.806,0.0,21.485,15.173,7.709,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,94.722,94.722,53.326,53.326,41.396,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.385,5.087,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.194,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.243,0.0,60.811,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.177,0.0,3.051,8.217,0.269,0.0,1.36,9.436,-6.696,0.0,0.0,0.398,1.318,-0.376,5.064,0.0,5.092,0.0,4.319,-6.822,-3.611,0.0,2.972,4.257,0.212,0.0,0.272,2.338,15.363,0.0,0.0,0.414,7.509,-0.359,-0.486,-2.37,-0.74,0.0,14.575,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,138.965,138.965,31.659,31.659,107.305,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,2.86,0.318,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.455,0.0,20.139,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.419,0.0,7.457,13.084,3.28,0.0,0.0,0.0,0.0,1987.1,2448.9,2448.9,40.493,14.948,0.0,4.264,22.276,1.991,37.139,1.864,17.627,-9.441,0.0,0.0,0.0,9.279,-0.324,9.531,0.0,4.369,0.0,0.0,-14.534,-6.438,0.0,0.178,-0.772,-0.043,2.878,-0.083,-0.527,4.335,0.0,0.0,0.0,-3.889,-0.323,-0.507,-1.556,-0.068,0.0,0.0,5.684,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 +house006.xml,138.036,138.036,31.67,31.67,106.366,0.0,0.0,0.0,0.0,0.0,0.0,1.847,0.0,0.0,2.873,0.336,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,80.517,0.0,20.139,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,77.515,0.0,7.514,13.084,3.279,0.0,0.0,0.0,0.0,1983.7,2445.8,2445.8,40.336,14.906,0.0,4.263,22.269,1.99,37.145,1.863,17.627,-9.418,0.0,0.0,0.0,9.269,-0.329,8.591,0.0,4.368,0.0,0.0,-14.513,-6.429,0.0,0.176,-0.786,-0.044,2.868,-0.084,-0.532,4.358,0.0,0.0,0.0,-3.902,-0.328,-0.438,-1.566,-0.071,0.0,0.0,5.704,2.258,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.5,138.5,33.805,33.805,104.695,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.461,0.368,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.025,0.0,23.284,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.643,0.0,5.505,15.632,3.271,0.0,0.0,0.0,0.0,2191.9,2549.4,2549.4,39.657,13.483,0.0,4.727,23.697,4.449,10.125,1.499,18.833,-9.353,0.0,0.0,0.076,11.551,-0.37,6.119,0.0,20.828,0.0,2.861,-17.176,-7.736,0.0,0.209,-0.676,-0.049,0.583,-0.044,-0.299,4.596,0.0,0.0,-0.009,-3.997,-0.365,-0.186,-1.321,-1.869,0.0,0.103,6.367,2.562,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,182.78,182.78,39.105,39.105,143.675,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.55,0.517,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.237,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,103.874,0.0,10.042,18.129,3.215,0.0,0.0,0.0,0.0,2472.9,3404.2,3404.2,54.892,20.555,0.0,7.246,27.501,4.711,24.32,1.195,21.293,-7.816,0.0,0.0,1.287,17.857,-0.395,18.343,0.0,6.388,0.0,7.879,-18.613,-8.163,0.0,0.301,-1.114,-0.06,1.661,-0.088,-0.405,5.412,0.0,0.0,-0.107,-2.764,-0.395,-0.976,-1.758,-0.276,0.0,0.528,7.341,2.842,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 +house008.xml,181.679,181.679,39.095,39.095,142.585,0.0,0.0,0.0,0.0,0.0,0.0,2.451,0.0,0.0,3.562,0.519,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,109.146,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,102.846,0.0,10.107,18.129,3.215,0.0,0.0,0.0,0.0,2469.0,3392.1,3392.1,54.827,20.5,0.0,7.245,27.503,4.712,24.328,1.196,21.3,-7.8,0.0,0.0,1.291,17.853,-0.401,17.335,0.0,6.389,0.0,7.809,-18.6,-8.157,0.0,0.299,-1.123,-0.061,1.655,-0.088,-0.404,5.429,0.0,0.0,-0.108,-2.775,-0.401,-0.898,-1.768,-0.277,0.0,0.531,7.354,2.848,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.654,153.654,33.965,33.965,119.688,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.377,0.28,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.011,0.0,23.291,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.814,0.0,5.253,15.632,3.277,0.0,0.0,0.0,0.0,2226.3,2666.4,2666.4,44.142,14.378,0.0,5.112,28.424,4.32,13.051,2.253,18.888,-8.183,0.0,0.0,0.266,15.634,-0.399,8.745,0.0,21.441,0.0,0.0,-17.433,-7.835,0.0,0.249,-0.68,-0.028,0.733,-0.074,-0.173,4.596,0.0,0.0,-0.029,-4.105,-0.395,-0.254,-1.234,-1.787,0.0,0.0,6.089,2.436,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.314,153.314,37.472,37.472,115.842,0.0,0.0,0.0,0.0,0.0,0.0,1.851,0.0,0.0,2.842,0.26,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.403,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,77.649,0.0,7.136,18.129,3.215,0.0,0.0,0.0,0.0,2408.7,2856.5,2856.5,45.335,15.794,0.876,4.938,25.516,4.913,9.777,1.267,22.969,-9.186,0.0,0.0,0.927,11.38,-0.398,19.585,0.0,6.404,0.0,4.88,-18.639,-8.157,0.024,0.219,-0.74,-0.091,0.56,-0.073,-0.734,5.162,0.0,0.0,-0.048,-4.186,-0.395,-1.005,-1.642,-0.259,0.0,0.328,7.297,2.829,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,45.111,45.111,45.111,45.111,0.0,0.0,0.0,0.0,0.0,0.0,6.969,0.634,0.121,0.006,8.431,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.727,0.128,26.024,9.325,1.124,0.0,0.0,0.0,328.0,5019.5,3217.4,5019.5,18.28,15.961,0.0,2.692,5.468,0.0,0.0,1.635,3.459,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.014,-6.006,-2.08,0.0,1.647,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.657,8.877,2.825,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 +house010.xml,152.218,152.218,37.463,37.463,114.756,0.0,0.0,0.0,0.0,0.0,0.0,1.826,0.0,0.0,2.854,0.262,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,81.317,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,76.626,0.0,7.2,18.129,3.215,0.0,0.0,0.0,0.0,2404.9,2846.0,2846.0,45.267,15.744,0.876,4.938,25.514,4.914,9.777,1.267,22.965,-9.158,0.0,0.0,0.93,11.367,-0.406,18.564,0.0,6.403,0.0,4.821,-18.604,-8.14,0.023,0.217,-0.756,-0.094,0.555,-0.074,-0.747,5.189,0.0,0.0,-0.049,-4.206,-0.403,-0.935,-1.655,-0.263,0.0,0.33,7.332,2.846,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,45.217,45.217,45.217,45.217,0.0,0.0,0.0,0.0,0.0,0.0,7.036,0.674,0.121,0.006,8.427,2.316,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.911,0.127,26.021,9.325,1.124,0.0,0.0,0.0,327.0,5018.6,3217.7,5018.6,18.277,15.962,0.0,2.684,5.468,0.0,0.0,1.635,3.46,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.207,-6.006,-2.08,0.0,1.649,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.653,8.877,2.825,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.803,35.803,35.803,35.803,0.0,0.0,0.0,0.0,0.0,0.0,4.73,0.25,0.0,0.0,5.875,1.487,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.971,0.0,16.321,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.21,0.0,2.376,4.763,0.0,0.0,0.628,2.683,-1.833,0.0,0.0,2.037,0.0,-0.252,1.65,0.0,4.361,0.0,0.323,-4.819,-1.944,0.0,1.718,1.086,0.0,0.0,-0.036,0.466,3.509,0.0,0.0,1.565,0.0,-0.251,-0.162,-0.281,-0.741,0.0,0.275,6.805,2.434,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.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.528,31.528,31.528,31.528,0.0,0.0,0.0,0.0,0.0,0.0,3.334,0.189,0.006,0.0,4.236,1.384,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.395,0.006,16.446,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2222.1,2948.4,10.984,10.44,0.0,1.701,3.694,0.0,0.0,0.584,3.025,-2.479,0.0,0.0,2.205,0.0,-0.244,1.726,0.0,1.117,0.0,1.412,-3.76,-1.618,0.0,1.132,0.542,0.0,0.0,-0.07,0.539,4.748,0.0,0.0,0.603,0.0,-0.244,-0.251,-0.387,-0.261,0.0,1.645,6.108,2.435,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 -house015.xml,30.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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 +house013.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.632,31.632,31.632,31.632,0.0,0.0,0.0,0.0,0.0,0.0,3.416,0.195,0.006,0.0,4.248,1.387,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.622,0.006,16.43,6.85,0.597,0.0,0.0,0.0,0.0,2984.8,2234.9,2984.8,11.108,10.497,0.0,1.703,3.702,0.0,0.0,0.585,3.034,-2.492,0.0,0.0,2.208,0.0,-0.242,1.94,0.0,1.119,0.0,1.451,-3.784,-1.631,0.0,1.135,0.554,0.0,0.0,-0.068,0.551,4.735,0.0,0.0,0.612,0.0,-0.242,-0.268,-0.384,-0.256,0.0,1.648,6.085,2.422,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 +house015.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.136,61.136,39.63,39.63,0.0,0.0,21.506,0.0,0.0,0.0,7.619,0.555,0.187,0.004,2.854,0.93,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.318,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.712,0.191,11.025,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3520.6,7549.9,43.059,18.675,0.0,4.42,10.83,0.617,5.691,0.298,7.708,-7.897,0.0,0.0,0.0,6.759,-0.021,5.727,0.0,3.865,0.0,0.0,-8.639,-4.771,0.0,-0.308,-0.75,-0.015,2.995,-0.044,-0.958,11.998,0.0,0.0,0.0,-8.643,-0.023,-1.318,-2.077,-0.984,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.688,91.688,27.773,27.773,63.915,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.4,0.594,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.803,0.0,18.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,41.964,0.0,9.725,11.141,3.425,0.0,0.0,151.0,94.0,1729.6,3570.0,3570.0,60.335,19.525,0.0,5.431,14.637,0.652,10.66,0.362,7.454,-9.321,0.0,0.0,0.719,4.37,0.008,19.78,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.106,-0.864,-0.015,4.795,-0.058,-1.113,7.472,0.0,0.0,-0.002,-4.724,0.009,-2.647,-1.647,-0.25,0.0,0.0,7.229,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,35.934,35.934,35.934,35.934,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.209,0.0,0.0,2.471,0.743,7.875,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.691,0.0,9.098,7.32,0.553,0.0,0.0,0.0,0.0,4617.7,2659.0,4617.7,19.992,10.862,0.0,4.566,4.624,0.0,0.0,0.276,3.697,-3.619,0.0,0.0,2.169,0.0,-0.02,2.615,0.0,2.09,0.0,1.848,-7.06,-2.597,0.0,-0.485,-0.765,0.0,0.0,-0.093,-1.304,4.336,0.0,0.0,0.02,0.0,-0.015,-0.746,-1.171,-0.721,0.0,1.219,6.864,2.164,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 house019.xml,130.259,130.259,51.668,51.668,78.591,0.0,0.0,0.0,0.0,0.0,0.0,1.131,0.0,0.0,11.151,3.607,9.726,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.816,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.7,0.0,43.304,7.894,1.826,0.0,0.0,193.0,266.0,2783.7,6251.1,6636.8,84.769,45.696,0.0,11.388,44.785,0.65,5.02,1.921,16.412,-14.196,0.0,0.0,0.0,5.959,-0.039,8.896,0.0,1.87,0.0,0.0,-10.31,-5.205,0.0,2.991,10.178,0.15,2.871,0.274,1.618,17.036,0.0,0.0,0.0,-4.227,-0.027,-0.15,-0.558,0.025,0.0,0.0,8.085,3.718,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,116.949,116.949,56.177,56.177,0.0,0.0,60.771,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.779,2.675,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.623,0.0,18.918,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.577,0.0,32.258,10.477,4.229,0.0,0.0,0.0,0.0,2703.5,6612.3,6612.3,31.214,31.937,0.908,11.001,10.555,1.131,9.76,0.631,15.142,-15.17,0.0,0.0,0.0,7.487,-0.04,15.235,0.0,0.837,0.0,0.0,-15.243,-7.022,0.249,0.223,0.285,0.064,6.486,0.018,-2.386,20.699,0.0,0.0,0.0,-6.534,-0.031,-2.604,-3.113,-0.191,0.0,0.0,13.513,5.728,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,3130.0,0.0,2330.0,800.0 -house021.xml,156.827,156.827,48.021,48.021,108.806,0.0,0.0,0.0,0.0,0.0,0.0,2.012,0.0,0.0,8.046,1.413,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.758,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2798.0,4687.4,4687.4,81.275,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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 +house021.xml,156.827,156.827,48.017,48.017,108.81,0.0,0.0,0.0,0.0,0.0,0.0,2.009,0.0,0.0,8.045,1.414,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.762,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2797.4,4687.2,4687.2,81.276,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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.942,137.942,48.641,48.641,0.0,89.301,0.0,0.0,0.0,0.0,0.0,2.221,0.0,0.0,8.642,0.872,12.472,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.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,73.302,0.0,18.701,10.989,1.482,0.0,0.0,184.0,120.0,2976.2,5355.4,5441.2,90.789,27.294,3.683,3.758,20.619,0.0,0.0,1.487,16.607,-13.137,0.0,0.0,14.695,0.0,-0.264,37.703,0.0,1.156,0.0,0.0,-9.561,-4.29,1.118,0.18,0.677,0.0,0.0,-0.116,-1.377,11.45,0.0,0.0,2.123,0.0,-0.255,-2.589,-1.167,-0.068,0.0,0.0,6.159,2.4,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,138.13,138.13,62.979,62.979,0.0,75.152,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.805,0.745,19.998,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.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,62.742,0.0,15.9,17.1,2.77,0.0,0.0,0.0,0.0,4239.1,4671.5,4833.4,62.489,20.562,0.0,10.21,21.491,1.201,16.448,0.85,9.987,-7.812,0.0,0.0,0.0,6.18,-0.035,23.704,0.0,1.638,0.0,0.0,-15.576,-5.907,0.0,-0.166,-0.965,-0.011,6.021,-0.112,-1.017,9.141,0.0,0.0,0.0,-5.972,-0.012,-2.63,-1.377,-0.31,0.0,0.0,10.082,3.312,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.27,129.27,43.791,43.791,0.0,85.479,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.314,0.475,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.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,0.0,15.506,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3558.1,3601.4,72.07,17.437,0.0,7.18,30.082,0.0,0.0,0.682,7.228,-7.897,0.0,0.0,5.182,0.0,-0.107,25.401,0.0,1.837,0.0,11.769,-8.641,-2.539,0.0,0.598,1.303,0.0,0.0,-0.039,-0.282,6.002,0.0,0.0,0.551,0.0,-0.1,-1.421,-0.661,-0.192,0.0,2.906,5.522,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 @@ -129,13 +129,13 @@ house037.xml,88.497,88.497,21.781,21.781,0.0,66.716,0.0,0.0,0.0,0.0,0.0,0.181,0. house038.xml,125.312,125.312,51.035,51.035,74.277,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.663,2.592,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.246,0.0,24.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,40.194,0.0,30.749,14.715,4.601,0.0,0.0,0.0,214.0,2455.6,5668.8,5727.5,48.331,27.398,0.0,3.653,14.884,0.651,4.463,0.81,12.433,-10.431,0.0,0.0,1.862,2.347,-0.047,22.487,0.002,0.595,0.0,0.0,-10.149,-3.873,0.0,0.847,2.607,0.141,2.251,0.018,0.927,12.753,0.0,0.0,0.337,-0.578,-0.035,-0.567,-0.343,0.005,0.0,0.0,8.627,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.915,99.915,24.039,24.039,75.876,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.147,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.189,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.915,0.0,0.0,14.272,1.137,0.0,0.0,0.0,0.0,1709.3,1463.6,1709.3,50.061,0.0,0.0,14.206,5.385,0.0,0.0,2.508,16.121,-13.538,0.0,0.0,14.028,0.0,-0.041,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.0,5211.5,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.645,101.645,23.521,23.521,78.124,0.0,0.0,0.0,0.0,0.0,0.0,1.305,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.742,0.0,17.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.224,0.0,0.0,8.002,5.526,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.269,5.618,22.289,0.0,4.298,2.095,12.884,-12.513,0.0,0.0,2.035,3.393,-0.099,19.744,0.0,0.612,0.0,0.0,-10.092,-4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,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.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.222,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.8,4659.8,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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 +house041.xml,258.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.221,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.5,4659.5,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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.113,231.113,39.974,39.974,191.139,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.695,0.059,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.693,0.0,24.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,163.898,0.0,2.43,15.632,3.233,0.0,0.0,0.0,0.0,2758.4,3129.4,3129.4,88.149,18.993,0.0,9.173,39.851,4.013,43.724,2.65,34.226,-19.417,0.0,0.0,2.449,14.541,-0.353,56.288,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.234,-1.359,-0.05,2.949,-0.141,-2.88,5.799,0.0,0.0,-0.257,-4.864,-0.349,-2.683,-1.152,-0.137,0.0,0.0,5.47,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.415,158.415,29.874,29.874,128.541,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.863,0.096,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.634,0.0,19.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.475,0.0,2.502,13.084,2.212,0.0,0.0,0.0,0.0,1987.9,2776.6,2776.6,54.557,13.333,0.0,3.168,23.192,2.294,33.785,5.576,22.939,-10.01,0.0,0.0,0.549,9.933,-0.294,28.975,0.0,1.578,0.0,0.0,-14.405,-5.173,0.0,0.05,-0.758,-0.084,1.794,-0.334,-1.957,4.656,0.0,0.0,-0.067,-3.531,-0.293,-1.516,-1.039,-0.139,0.0,0.0,4.422,1.388,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.59,226.59,43.407,43.407,183.183,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,1.999,0.167,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.608,0.0,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.221,0.0,3.225,13.084,4.459,0.0,0.0,0.0,0.0,3093.0,3635.3,3635.3,80.998,18.664,4.37,6.899,36.503,9.234,19.262,2.757,18.187,-11.68,0.0,0.0,12.916,15.091,-0.489,61.981,0.0,1.436,0.0,0.0,-18.085,-10.282,0.257,0.47,-1.293,-0.091,1.238,-0.112,-0.738,5.621,0.0,0.0,-1.102,-4.765,-0.486,-2.584,-0.942,-0.097,0.0,0.0,5.245,2.672,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.253,152.253,35.023,35.023,117.23,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.235,0.254,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.766,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,3.509,13.084,4.372,0.0,0.0,0.0,0.0,2316.2,3032.1,3032.1,47.197,12.913,3.572,3.08,15.119,2.29,32.755,1.135,18.522,-12.224,1.044,-0.408,0.086,12.636,-0.246,20.645,0.0,10.934,0.0,0.0,-14.644,-7.017,0.003,0.019,-1.02,-0.114,1.097,-0.081,-1.351,6.243,-0.064,0.396,-0.012,-3.964,-0.245,-1.121,-1.85,-1.217,0.0,0.0,4.85,2.048,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,24.996,24.996,24.996,24.996,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.452,0.303,0.011,3.749,1.006,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.848,0.314,12.82,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.521,3.838,0.0,0.0,0.327,2.234,-1.649,0.0,0.0,-0.155,0.0,-0.302,7.966,0.0,0.378,0.0,2.782,-3.568,-0.482,0.0,1.272,2.536,0.0,0.0,0.024,0.778,2.451,0.0,0.0,-0.154,0.0,-0.301,-0.456,-0.233,0.019,0.0,1.784,4.603,0.548,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.667,20.667,14.38,14.38,6.287,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.505,0.001,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.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,6.111,0.0,1.505,4.203,0.0,0.0,0.0,0.0,0.0,873.4,944.4,944.4,4.758,2.576,0.0,-0.001,0.775,0.127,0.0,0.0,1.725,-0.559,0.0,0.0,0.0,1.381,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.106,0.033,0.0,0.0,-0.055,0.798,0.0,0.0,0.0,-1.094,-0.01,-0.223,-0.378,-1.355,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,90.99,90.99,39.568,39.568,51.422,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.735,3.736,0.0,0.0,0.0,3.691,0.085,0.498,3.032,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.486,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.723,0.0,52.088,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,1.023,2.631,12.009,0.0,0.0,0.803,4.611,-2.524,0.0,0.0,0.056,2.014,-0.564,6.791,0.0,4.189,0.0,6.413,-7.341,-1.494,1.32,0.99,9.262,0.0,0.0,0.563,3.668,4.27,0.0,0.0,0.075,10.064,-0.552,0.509,-0.641,1.936,0.0,7.002,11.649,2.197,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,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,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.685,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.253,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.687,7.21,0.0,0.0,0.0,2.958,9.864,0.0,0.0,0.0,3.486,-0.08,-0.045,-2.995,0.697,0.0,0.0,7.425,1.011,728.6,567.4,7487.1,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.544,51.544,21.856,21.856,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,1.919,0.325,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.773,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.163,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2814.7,2814.7,11.085,17.256,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.164,2.669,0.0,3.683,0.0,1.887,-10.202,-1.222,0.0,-0.258,-0.24,0.0,0.0,-0.372,0.345,4.091,0.0,0.0,-0.937,0.0,-0.162,-0.526,-2.496,-0.719,0.0,0.59,5.334,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 +house048.xml,91.199,91.199,39.596,39.596,51.604,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,12.758,3.743,0.0,0.0,0.0,3.691,0.085,0.498,3.027,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.667,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.87,0.0,52.14,7.253,2.657,0.0,0.0,0.0,0.0,1535.1,5475.6,5475.6,42.042,33.926,1.023,2.632,12.008,0.0,0.0,0.804,4.614,-2.524,0.0,0.0,0.056,2.011,-0.562,6.928,0.0,4.194,0.0,6.425,-7.347,-1.496,1.32,0.991,9.263,0.0,0.0,0.563,3.672,4.27,0.0,0.0,0.075,10.062,-0.55,0.545,-0.64,1.938,0.0,7.016,11.643,2.195,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,35.247,35.247,31.75,31.75,3.497,0.0,0.0,0.0,0.0,0.0,7.568,0.046,0.0,0.0,7.285,0.19,2.63,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.745,0.0,30.546,4.262,1.318,0.0,0.0,0.0,110.0,4630.6,2820.9,4630.6,13.099,15.914,0.0,1.364,4.348,0.0,0.0,0.0,4.223,-5.784,0.0,0.0,0.0,1.262,-0.079,2.475,0.0,1.842,0.0,0.0,-2.535,-0.461,0.0,1.679,7.191,0.0,0.0,0.0,2.931,9.884,0.0,0.0,0.0,3.484,-0.079,-0.123,-3.016,0.687,0.0,0.0,7.435,1.013,728.6,567.4,7487.3,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.162,51.162,21.863,21.863,29.299,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,1.93,0.329,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.383,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.026,0.0,5.214,8.572,0.0,0.0,0.0,0.0,0.0,1155.8,2801.9,2801.9,10.86,17.162,0.0,4.162,6.55,0.0,0.0,2.038,5.185,-4.132,0.0,0.0,4.908,0.0,-0.168,2.259,0.0,3.686,0.0,1.843,-10.183,-1.22,0.0,-0.26,-0.247,0.0,0.0,-0.375,0.337,4.104,0.0,0.0,-0.948,0.0,-0.167,-0.447,-2.518,-0.726,0.0,0.592,5.352,0.562,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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index f16101a85..c5d72a09e 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,4433.11,144.0,4289.11,0.0,4433.11,0.0,0.0,0.0,0.0, base-location-miami-fl.xml,1452.56,144.0,1308.56,0.0,1452.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-location-phoenix-az.xml,1633.82,144.0,1345.81,0.0,1489.81,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,1202.56,144.0,817.34,0.0,961.34,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,2110.41,144.0,1379.5,0.0,1523.5,144.0,442.91,586.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-balanced.xml,2101.48,144.0,1379.02,0.0,1523.02,144.0,434.46,578.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-bath-kitchen-fans.xml,1855.96,144.0,1314.04,0.0,1458.04,144.0,253.92,397.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-cfis-airflow-fraction-zero.xml,2037.69,144.0,1376.25,0.0,1520.25,144.0,373.44,517.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-cfis-airflow-fraction-zero.xml,2038.46,144.0,1376.25,0.0,1520.25,144.0,374.21,518.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,1392.16,144.0,1248.16,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1972.62,144.0,1326.41,0.0,1470.41,144.0,358.21,502.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,1995.87,144.0,1327.43,0.0,1471.43,144.0,380.44,524.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-cfis.xml,2049.19,144.0,1374.21,0.0,1518.21,144.0,386.98,530.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-mechvent-erv-atre-asre.xml,1955.74,144.0,1379.21,0.0,1523.21,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-mechvent-erv.xml,1955.78,144.0,1379.21,0.0,1523.21,144.0,288.57,432.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-cfis-evap-cooler-only-ducted.xml,1392.17,144.0,1248.17,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1978.47,144.0,1326.49,0.0,1470.49,144.0,363.98,507.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-mechvent-cfis-supplemental-fan-supply.xml,1996.66,144.0,1327.46,0.0,1471.46,144.0,381.2,525.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-mechvent-cfis.xml,2049.92,144.0,1374.21,0.0,1518.21,144.0,387.71,531.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1947.32,144.0,1378.87,0.0,1522.87,144.0,280.45,424.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-mechvent-erv.xml,1947.36,144.0,1378.87,0.0,1522.87,144.0,280.49,424.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-exhaust-rated-flow-rate.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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-hrv-asre.xml,1955.73,144.0,1379.22,0.0,1523.22,144.0,288.51,432.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-hrv.xml,1955.76,144.0,1379.22,0.0,1523.22,144.0,288.54,432.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-multiple.xml,2132.86,144.0,1394.38,0.0,1538.38,144.0,450.48,594.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-mechvent-supply.xml,2009.54,144.0,1344.85,0.0,1488.85,144.0,376.69,520.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1947.28,144.0,1378.86,0.0,1522.86,144.0,280.42,424.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-hrv.xml,1947.32,144.0,1378.86,0.0,1522.86,144.0,280.46,424.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-multiple.xml,2136.94,144.0,1394.31,0.0,1538.31,144.0,454.63,598.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-mechvent-supply.xml,2010.34,144.0,1344.89,0.0,1488.89,144.0,377.45,521.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-mechvent-whole-house-fan.xml,1775.28,144.0,1249.3,0.0,1393.3,144.0,237.98,381.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-misc-additional-properties.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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-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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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,674.29,108.0,777.89,-591.68,294.21,144.0,236.08,380.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,670.75,108.0,746.74,-564.08,290.67,144.0,236.08,380.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,635.35,108.0,702.47,-555.2,255.27,144.0,236.08,380.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 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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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 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,621.03,465.0,1255.78,-1476.89,243.89,132.0,245.14,377.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,84.04,465.0,1255.78,-2013.87,-293.1,132.0,245.14,377.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,-338.78,210.0,1255.78,-2181.7,-715.92,132.0,245.14,377.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,1788.92,144.0,1255.78,0.0,1399.78,144.0,245.14,389.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,1066.2,144.0,1151.27,-710.11,585.16,144.0,337.04,481.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-misc-defaults.xml,1070.49,144.0,1152.18,-710.11,586.07,144.0,340.42,484.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-misc-emissions.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-misc-generators-battery-scheduled.xml,2284.75,144.0,1373.35,0.0,1517.35,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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 @@ -65,7 +65,7 @@ base-residents-0.xml,917.12,144.0,268.49,0.0,412.49,144.0,360.63,504.63,0.0,0.0, base-residents-1-misc-loads-large-uncommon.xml,2776.92,144.0,1902.69,0.0,2046.69,144.0,435.96,579.96,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,2510.99,144.0,1813.66,0.0,1957.66,144.0,238.63,382.63,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,1582.86,144.0,1036.5,0.0,1180.5,144.0,258.36,402.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-residents-5.xml,1316.19,144.0,1458.42,-743.14,859.28,144.0,312.91,456.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-residents-5.xml,1320.39,144.0,1459.29,-743.14,860.14,144.0,316.25,460.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-all-10-mins.xml,1855.58,144.0,1319.52,0.0,1463.52,144.0,248.06,392.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-schedules-detailed-mixed-timesteps-power-outage.xml,1382.22,144.0,1042.85,0.0,1186.85,144.0,51.37,195.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps.xml,1625.55,144.0,1252.09,0.0,1396.09,144.0,85.46,229.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 @@ -92,24 +92,24 @@ base.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0 house001.xml,2408.68,144.0,1713.38,0.0,1857.38,144.0,407.3,551.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 house002.xml,2057.81,144.0,1487.66,0.0,1631.66,144.0,282.15,426.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 house003.xml,2049.34,144.0,1468.5,0.0,1612.5,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 -house004.xml,3685.65,144.0,2771.89,0.0,2915.89,144.0,625.76,769.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 +house004.xml,3688.92,144.0,2773.65,0.0,2917.65,144.0,627.27,771.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 house005.xml,2668.68,144.0,1951.66,0.0,2095.66,144.0,429.02,573.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 -house006.xml,2274.89,144.0,1177.55,0.0,1321.55,144.0,809.34,953.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 +house006.xml,2268.19,144.0,1177.93,0.0,1321.93,144.0,802.26,946.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 house007.xml,2335.01,144.0,1257.35,0.0,1401.35,144.0,789.66,933.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 -house008.xml,2826.13,144.0,1454.47,0.0,1598.47,144.0,1083.66,1227.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 +house008.xml,2817.53,144.0,1454.1,0.0,1598.1,144.0,1075.43,1219.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 house009.xml,2454.05,144.0,1263.31,0.0,1407.31,144.0,902.74,1046.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 -house010.xml,2555.49,144.0,1393.76,0.0,1537.76,144.0,873.73,1017.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 -house011.xml,1599.43,144.0,1455.43,0.0,1599.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 +house010.xml,2546.92,144.0,1393.39,0.0,1537.39,144.0,865.53,1009.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 +house011.xml,1602.84,144.0,1458.84,0.0,1602.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 house012.xml,1299.12,144.0,1155.12,0.0,1299.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 -house013.xml,1129.43,144.0,985.43,0.0,1129.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 -house014.xml,1161.2,144.0,1017.2,0.0,1161.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 -house015.xml,1129.43,144.0,985.43,0.0,1129.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 +house013.xml,1132.54,144.0,988.54,0.0,1132.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 +house014.xml,1164.54,144.0,1020.54,0.0,1164.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 +house015.xml,1132.54,144.0,988.54,0.0,1132.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 house016.xml,2697.33,144.0,1754.03,0.0,1898.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.3,799.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 house017.xml,2096.74,144.0,1013.86,0.0,1157.86,144.0,794.88,938.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 house018.xml,1734.45,144.0,1590.45,0.0,1734.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 house019.xml,3151.56,144.0,1886.16,0.0,2030.16,144.0,977.4,1121.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 house020.xml,4889.09,144.0,2486.43,0.0,2630.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.66,2258.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 -house021.xml,3394.18,144.0,1753.0,0.0,1897.0,144.0,1353.18,1497.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 +house021.xml,3394.09,144.0,1752.86,0.0,1896.86,144.0,1353.23,1497.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 house022.xml,5106.63,144.0,1775.67,0.0,1919.67,0.0,0.0,0.0,0.0,3186.96,3186.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 house023.xml,5125.06,144.0,2299.06,0.0,2443.06,0.0,0.0,0.0,0.0,2682.0,2682.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house024.xml,4793.18,144.0,1598.62,0.0,1742.62,0.0,0.0,0.0,0.0,3050.56,3050.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 @@ -129,13 +129,13 @@ house037.xml,3488.99,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2380.96,2380.96,0. house038.xml,3074.81,144.0,1863.06,0.0,2007.06,144.0,923.75,1067.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 house039.xml,2109.19,144.0,877.55,0.0,1021.55,144.0,943.64,1087.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 house040.xml,2118.23,144.0,858.63,0.0,1002.63,144.0,971.6,1115.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 -house041.xml,3632.64,144.0,1746.41,0.0,1890.41,144.0,1598.23,1742.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 +house041.xml,3632.63,144.0,1746.4,0.0,1890.4,144.0,1598.23,1742.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 house042.xml,3216.44,144.0,1486.79,0.0,1630.79,144.0,1441.65,1585.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 house043.xml,2368.64,144.0,1111.13,0.0,1255.13,144.0,969.51,1113.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 house044.xml,3284.12,144.0,1614.48,0.0,1758.48,144.0,1381.64,1525.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 house045.xml,2474.84,144.0,1302.64,0.0,1446.64,144.0,884.2,1028.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 house046.xml,950.44,144.0,806.44,0.0,950.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 house047.xml,990.8,144.0,636.48,0.0,780.48,144.0,66.32,210.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 -house048.xml,2269.05,144.0,1448.13,0.0,1592.13,144.0,532.92,676.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 -house049.xml,1485.34,144.0,1174.21,0.0,1318.21,144.0,23.13,167.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 -house050.xml,1242.72,144.0,652.08,0.0,796.08,144.0,302.64,446.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 +house048.xml,2271.97,144.0,1449.16,0.0,1593.16,144.0,534.81,678.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 +house049.xml,1477.13,144.0,1166.0,0.0,1310.0,144.0,23.13,167.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 +house050.xml,1238.98,144.0,652.31,0.0,796.31,144.0,298.67,442.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 From 3805c70087e9ce334d24dc6b34b9c761d01087cd Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 5 Jan 2024 23:02:15 -0700 Subject: [PATCH 04/35] Fix/simplify tests. --- workflow/tests/resnet_hers_test.rb | 36 ------------------------- workflow/tests/util.rb | 43 +++++++----------------------- 2 files changed, 10 insertions(+), 69 deletions(-) diff --git a/workflow/tests/resnet_hers_test.rb b/workflow/tests/resnet_hers_test.rb index bc181e06d..85167b389 100644 --- a/workflow/tests/resnet_hers_test.rb +++ b/workflow/tests/resnet_hers_test.rb @@ -77,42 +77,6 @@ def test_resnet_hers_reference_home_auto_generation end end - def test_resnet_hers_iad_home_auto_generation - test_name = 'RESNET_Test_Other_HERS_AutoGen_IAD_Home' - test_results_csv = File.absolute_path(File.join(@test_results_dir, "#{test_name}.csv")) - File.delete(test_results_csv) if File.exist? test_results_csv - - # Run simulations - all_results = {} - xmldir = File.join(File.dirname(__FILE__), 'RESNET_Tests/Other_HERS_AutoGen_IAD_Home') - Dir["#{xmldir}/*.xml"].sort.each do |xml| - out_xml = File.join(@test_files_dir, test_name, File.basename(xml), File.basename(xml)) - _run_ruleset(Constants.CalcTypeERIIndexAdjustmentDesign, xml, out_xml) - test_num = File.basename(xml)[0, 2].to_i - all_results[File.basename(xml)] = _get_iad_home_components(out_xml, test_num) - end - assert(all_results.size > 0) - - # Write results to csv - CSV.open(test_results_csv, 'w') do |csv| - csv << ['Component', 'Test 1 Results', 'Test 2 Results', 'Test 3 Results', 'Test 4 Results'] - all_results['01-L100.xml'].keys.each do |component| - csv << [component, - all_results['01-L100.xml'][component], - all_results['02-L100.xml'][component], - all_results['03-L304.xml'][component], - all_results['04-L324.xml'][component]] - end - end - puts "Wrote results to #{test_results_csv}." - - # Check results - all_results.each do |xml, results| - test_num = File.basename(xml)[0, 2].to_i - _check_iad_home_components(results, test_num) - end - end - def test_resnet_hers_method all_results = _test_resnet_hers_method('RESNET_Test_4.3_HERS_Method', 'RESNET_Tests/4.3_HERS_Method') diff --git a/workflow/tests/util.rb b/workflow/tests/util.rb index fed81fa38..83ba93f5f 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -869,26 +869,12 @@ def _check_reference_home_components(results, test_num, version) # Mechanical ventilation mv_kwh_yr = nil - if version == '2014' - if test_num == 1 - mv_kwh_yr = 0.0 - elsif test_num == 2 - mv_kwh_yr = 77.9 - elsif test_num == 3 - mv_kwh_yr = 140.4 - else - mv_kwh_yr = 379.1 - end - else - if test_num == 1 - mv_kwh_yr = 0.0 - elsif test_num == 2 - mv_kwh_yr = 223.9 - elsif test_num == 3 - mv_kwh_yr = 288.1 - else - mv_kwh_yr = 763.4 - end + if version == '2022' + mv_kwh_yr = { 1 => 0.0, 2 => 223.9, 3 => 288.1, 4 => 763.4 }[test_num] + elsif version == '2019' + mv_kwh_yr = { 1 => 0.0, 2 => 222.1, 3 => 288.1, 4 => 763.4 }[test_num] + elsif version == '2014' + mv_kwh_yr = { 1 => 0.0, 2 => 77.9, 3 => 140.4, 4 => 379.1 }[test_num] end assert_in_epsilon(mv_kwh_yr, results['Mechanical ventilation (kWh/y)'], epsilon) @@ -950,19 +936,10 @@ def _check_iad_home_components(results, test_num) end # Mechanical Ventilation - if test_num == 1 - assert_in_delta(66.4, results['Mechanical ventilation rate'], 0.2) - assert_in_delta(407, results['Mechanical ventilation'], 1.0) - elsif test_num == 2 - assert_in_delta(64.2, results['Mechanical ventilation rate'], 0.2) - assert_in_delta(394, results['Mechanical ventilation'], 1.0) - elsif test_num == 3 - assert_in_delta(53.3, results['Mechanical ventilation rate'], 0.2) - assert_in_delta(327, results['Mechanical ventilation'], 1.0) - elsif test_num == 4 - assert_in_delta(57.1, results['Mechanical ventilation rate'], 0.2) - assert_in_delta(350, results['Mechanical ventilation'], 1.0) - end + mv_cfm = { 1 => 66.4, 2 => 64.2, 3 => 53.3, 4 => 57.1 }[test_num] + mv_kwh = { 1 => 407, 2 => 394, 3 => 327, 4 => 350 }[test_num] + assert_in_delta(mv_cfm, results['Mechanical ventilation rate'], 0.2) + assert_in_delta(mv_kwh, results['Mechanical ventilation'], 1.0) # HVAC if (test_num == 1) || (test_num == 4) From 0a681d9e486ff644fc2e98c1382e939192e5ec05 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 6 Jan 2024 08:04:05 +0000 Subject: [PATCH 05/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 36 +- ...T_Test_4.2_HERS_AutoGen_Reference_Home.csv | 2 +- workflow/tests/base_results/real_homes.csv | 162 ++++----- workflow/tests/base_results/sample_files.csv | 344 +++++++++--------- 4 files changed, 272 insertions(+), 272 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 9b18b70e0..1b201273b 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,19 +1,19 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,66.52,66.52 -[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,72.07,72.07 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,67.53,67.53 -[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,61.5,61.5 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,61.87,61.87 -[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,58.3,58.3 -[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.01,51.01 -[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,47.72,47.72 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,55.87,55.87 -[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,72.67,72.67 -[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,80.23,80.23 -[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,70.01,70.01 -[SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.13,64.13 -[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,63.84,63.84 -[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,57.63,57.63 -[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.59,51.59 -[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.21,50.21 -[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,51.83,51.83 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.31,67.31 +[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,75.13,75.13 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,77.42,77.42 +[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.21,62.21 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.85,64.85 +[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,63.38,63.38 +[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.62,51.62 +[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.71,49.71 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,64.04,64.04 +[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.02,73.02 +[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.25,81.25 +[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.3,71.3 +[SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.24,64.24 +[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.12,64.12 +[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.25,58.25 +[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.64,51.64 +[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.47,50.47 +[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.46,52.46 diff --git a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv index 485e58c31..7a4324002 100644 --- a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv +++ b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv @@ -31,7 +31,7 @@ Air Distribution System Efficiency,0.8,0.8,0.8,0.8 Thermostat Type,manual,manual,manual,manual Heating thermostat settings,68,68,68,68 Cooling thermostat settings,78,78,78,78 -Mechanical ventilation (kWh/y),0.0,222.14,288.07,763.41 +Mechanical ventilation (kWh/y),0.0,223.88,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 e-Ratio,0.9999827,1.0000045,1.0000447,0.9999929 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index aeacca29c..3e3d097b9 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,82 +1,82 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -house001.xml,57.95,11.61,1.89,6.49,18.55,2.12,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.23338,66.7,5785.85,8086.16,1.0728,52.5,1.0,52.5,57.95,57.95,0.0,43.73,1.0,43.73,57.95,57.95,0.0,59.83,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.23338 -house002.xml,74.57,51.51,21.17,9.54,41.6,12.18,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462,75.61,13121.97,17649.0,0.9834,50.17,1.0,50.17,74.57,74.57,0.0,47.95,1.0,47.95,74.57,74.57,0.0,69.17,59.81,21.26,9.54,48.17,12.71,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462 -house003.xml,62.07,27.740000000000002,21.73,8.83,31.01,12.51,16.04,18.72,6.85,7.24,22.14,1.14,0.0,0.24283,73.1,9321.38,12847.74,0.9925,48.33,1.0,48.33,62.07,62.07,0.0,46.41,1.0,46.41,62.07,62.07,0.0,59.5,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.72,6.85,7.24,22.14,1.14,0.0,0.24283 -house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,55.84,1.0,55.84,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 -house005.xml,57.24,6.16,3.96,5.79,5.16,2.34,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,79.61,2687.5,3132.17,1.0778,48.71,1.0,48.71,57.24,57.24,0.0,43.34,1.0,43.34,57.24,57.24,0.0,58.42,5.54,4.01,5.79,4.72,2.34,12.13,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 -house006.xml,71.45,31.6,20.7,10.54,23.76,12.01,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395,72.79,10094.8,13613.09,1.0188,45.57,1.0,45.57,71.45,71.45,0.0,43.74,1.0,43.74,71.45,71.45,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 -house007.xml,74.99,18.98,4.42,8.85,16.03,2.58,9.88,12.28,0.62,8.48,14.96,1.35,0.0,0.23425,77.08,9212.14,11309.75,1.0567,55.66,1.0,55.66,74.99,74.99,0.0,45.64,1.0,45.64,74.99,74.99,0.0,76.92,17.58,4.49,8.85,14.92,2.59,9.88,12.28,0.62,8.48,14.96,1.35,0.0,0.23425 -house008.xml,62.76,96.31,10.32,13.22,153.46,6.78,22.25,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.48,24257.2,33946.37,0.9724,50.61,1.0,50.61,62.76,62.76,0.0,46.37,1.0,46.37,62.76,62.76,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 -house009.xml,61.78,19.3,42.07,8.99,30.92,25.17,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642,84.23,9889.65,11460.4,1.0245,48.31,1.0,48.31,61.78,61.78,0.0,45.36,1.0,45.36,61.78,61.78,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 -house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.6,1.0,48.6,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,56.53,11.99,6.25,7.89,19.19,4.53,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.27513,73.08,3440.31,4397.43,1.0706,52.02,1.0,52.02,56.53,56.53,0.0,48.76,1.0,48.76,56.53,56.53,0.0,59.51,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.27513 -house012.xml,52.09,34.67,2.59,11.63,29.51,1.47,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688,53.17,5525.34,9931.01,1.0463,51.43,1.0,51.43,52.09,52.09,0.0,44.07,1.0,44.07,52.09,52.09,0.0,48.05,40.72,2.44,11.63,34.43,1.45,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688 -house013.xml,58.67,12.04,1.84,10.35,8.85,0.88,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792,57.32,1695.06,2805.2,1.0542,52.73,1.0,52.73,58.67,58.67,0.0,47.6,1.0,47.6,58.67,58.67,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 -house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,47.49,1.0,47.49,54.98,54.98,0.0,45.43,1.0,45.43,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 -house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3423.91,1.1353,49.6,1.0,49.6,49.76,49.76,1.0,47.58,1.0,47.58,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 -house016.xml,51.52,0.58,72.46,5.61,0.52,39.17,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776,72.58,5977.7,7902.55,1.0422,50.86,1.0,50.86,51.52,51.52,0.0,48.75,1.0,48.75,51.52,51.52,0.0,51.34,0.64,72.69,5.61,0.56,39.35,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776 -house017.xml,68.61,20.27,5.69,10.95,32.33,3.82,18.88,36.65,1.37,9.12,15.89,0.48,0.0,0.20226,176.01,8138.21,4414.06,1.0475,51.8,1.0,51.8,68.61,68.61,0.0,47.44,1.0,47.44,68.61,68.61,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 -house018.xml,30.95,149.57,32.06,17.34,238.34,21.07,27.24,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635,98.5,24234.12,25668.97,0.9585,50.8,1.0,50.8,54.23,54.23,0.0,46.16,1.0,46.16,54.23,54.23,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 -house019.xml,63.49,97.19,10.14,13.22,155.04,6.84,22.25,98.39,2.01,15.29,29.84,4.58,0.0,0.1912,75.95,25465.55,34331.59,0.9766,51.14,1.0,51.14,63.49,63.49,0.0,46.55,1.0,46.55,63.49,63.49,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 -house020.xml,39.51,89.32,13.049999999999999,13.08,103.69999999999999,7.4799999999999995,14.11,92.53,5.1,13.08,33.48,3.62,0.0,0.25974,113.38,12980.85,11698.1,0.9787,56.06,1.0,56.06,82.85,82.85,0.0,51.81,1.0,51.81,82.85,82.85,0.0,71.83,101.98,12.68,13.08,117.84,7.33,14.12,92.53,5.1,13.08,33.48,3.62,0.0,0.25974 -house021.xml,59.56,54.01,8.13,15.33,86.06,5.55,24.64,49.14,4.04,17.78,19.62,2.69,0.0,0.2707,65.66,15954.7,23159.4,1.0493,52.74,1.0,52.74,59.56,59.56,0.0,47.59,1.0,47.59,59.56,59.56,0.0,55.45,61.76,7.89,15.33,98.41,5.57,24.65,49.14,4.04,17.78,19.62,2.69,0.0,0.2707 -house022.xml,54.04,0.44,54.0,4.5,0.44,29.67,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317,61.65,4084.1,6374.67,1.0392,50.58,1.0,50.58,54.04,54.04,0.0,48.32,1.0,48.32,54.04,54.04,0.0,53.83,0.5,54.21,4.5,0.48,29.83,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317 -house023.xml,71.81,16.26,39.74,6.02,11.92,22.66,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26099,73.67,7527.1,10159.44,1.0058,45.55,1.0,45.55,71.81,71.81,0.0,43.8,1.0,43.8,71.81,71.81,0.0,70.44,17.35,39.92,6.02,12.62,23.11,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26099 -house024.xml,67.53,21.44,45.24,8.99,34.35,27.14,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167,93.03,11542.23,12289.98,1.0095,52.36,1.0,52.36,67.53,67.53,0.0,49.3,1.0,49.3,67.53,67.53,0.0,64.61,24.53,45.77,8.99,39.3,28.37,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167 -house025.xml,8.93,106.68,19.34,12.54,78.8,10.26,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675,22.16,2849.46,13414.51,0.9584,50.84,1.0,50.84,55.98,55.98,0.0,45.75,1.0,45.75,55.98,55.98,0.0,49.61,120.66,19.44,12.54,88.72,10.33,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675 -house026.xml,64.79,11.54,29.77,7.52,18.49,18.03,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446,90.49,8023.42,8487.84,1.0447,46.64,1.0,46.64,64.79,64.79,0.0,44.15,1.0,44.15,64.79,64.79,0.0,62.98,12.86,29.98,7.52,20.6,18.56,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446 -house027.xml,65.43,15.57,37.87,7.53,24.94,22.66,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038,88.47,9329.28,10159.86,1.0379,51.44,1.0,51.44,65.43,65.43,0.0,48.39,1.0,48.39,65.43,65.43,0.0,64.19,16.63,38.04,7.53,26.64,23.1,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038 -house028.xml,65.17,22.26,48.57,10.42,16.11,28.38,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713,67.38,9163.01,13350.44,1.0187,44.36,1.0,44.36,65.17,65.17,0.0,42.63,1.0,42.63,65.17,65.17,0.0,62.47,25.52,49.13,10.42,18.3,29.56,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713 -house029.xml,60.83,21.98,47.59,8.98,35.230000000000004,28.939999999999998,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612,83.89,10850.88,12934.75,0.9999,48.82,1.0,48.82,60.83,60.83,0.0,45.96,1.0,45.96,60.83,60.83,0.0,58.09,25.35,48.16,8.98,40.620000000000005,30.28,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612 -house030.xml,59.1,28.09,57.900000000000006,10.42,45.0,35.03,17.92,27.27,19.15,9.28,27.93,0.75,0.0,0.2949,81.62,12678.07,15493.33,1.0026,49.63,1.0,49.63,59.1,59.1,0.0,46.56,1.0,46.56,59.1,59.1,0.0,56.33,32.18,58.61,10.42,51.55,36.650000000000006,17.94,27.27,19.15,9.28,27.93,0.75,0.0,0.2949 -house031.xml,55.38,120.63,19.59,14.54,89.16,10.37,17.33,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578,55.01,8016.93,14472.89,1.007,49.22,1.0,49.22,55.38,55.38,0.0,44.51,1.0,44.51,55.38,55.38,0.0,51.8,135.6,19.66,14.54,99.48,10.42,17.34,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578 -house032.xml,68.8,25.58,56.64,8.99,40.96,33.81,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822,101.64,14815.55,14311.08,1.0185,54.02,1.0,54.02,68.8,68.8,0.0,50.74,1.0,50.74,68.8,68.8,0.0,67.18,27.45,56.93,8.99,43.959999999999994,34.58,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822 -house033.xml,63.94,68.4,28.009999999999998,11.39,109.17,17.71,19.41,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328,90.45,20714.8,23623.44,0.9695,51.64,1.0,51.64,63.94,63.94,0.0,48.73,1.0,48.73,63.94,63.94,0.0,59.16,79.84,28.050000000000004,11.39,127.41,18.380000000000003,19.42,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328 -house034.xml,61.98,18.62,4.44,9.98,29.81,3.08,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697,151.78,5663.09,3627.53,1.0286,55.36,1.0,55.36,61.98,61.98,0.0,50.11,1.0,50.11,61.98,61.98,0.0,60.57,20.08,4.33,9.98,32.15,3.03,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697 -house035.xml,69.07,51.17,6.41,11.07,81.6,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233,79.02,17738.2,22531.58,0.9962,55.37,1.0,55.37,69.07,69.07,0.0,49.29,1.0,49.29,69.07,69.07,0.0,64.61,58.33,6.18,11.07,92.95,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233 -house036.xml,67.67,60.63,8.63,8.66,96.71,5.91,15.95,66.12,3.13,9.12,27.96,2.32,0.0,0.18716,78.83,18544.59,23999.4,0.9802,54.85,1.0,54.85,67.71,67.71,0.0,49.65,1.0,49.65,67.71,67.71,0.0,63.22,68.72,8.43,8.66,109.52,5.86,15.96,66.12,3.13,9.12,27.96,2.32,0.0,0.18716 -house037.xml,66.07,63.87,6.68,13.22,101.92,4.86,14.55,67.48,2.9,10.99,21.25,0.36,0.0,0.19298,77.1,18770.94,24085.88,1.0107,52.35,1.0,52.35,66.07,66.07,0.0,47.78,1.0,47.78,66.07,66.07,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 -house038.xml,64.1,38.51,39.78,9.93,34.58,22.43,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786,72.4,13680.87,19432.23,0.9724,46.91,1.0,46.91,64.1,64.1,0.0,44.97,1.0,44.97,64.1,64.1,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 -house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.59,11058.09,0.9975,53.02,1.0,53.02,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 -house040.xml,63.58,123.63,12.23,11.07,197.05,7.94,19.46,110.5,8.89,15.32,32.38,2.19,0.0,0.18417,74.69,28996.13,40565.52,0.957,52.29,1.0,52.29,63.58,63.58,0.0,49.75,1.0,49.75,63.58,63.58,0.0,58.9,139.5,11.9,11.07,222.28,7.7,19.47,110.5,8.89,15.32,32.38,2.19,0.0,0.18417 -house041.xml,77.69,24.75,8.16,12.54,39.48,5.2,20.94,27.24,3.89,20.39,23.5,0.0,0.0,0.13022,170.64,9245.97,5294.1,1.0235,52.61,1.0,52.61,77.69,77.69,0.0,46.6,1.0,46.6,77.69,77.69,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 -house042.xml,87.15,49.11,21.04,11.39,78.44,12.99,19.74,76.46,9.92,15.57,27.23,0.0,0.0,0.21961,112.81,20258.12,18000.96,0.9976,49.33,1.0,49.33,87.15,87.15,0.0,46.51,1.0,46.51,87.15,87.15,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 -house043.xml,-8.06,16.18,5.24,10.49,12.61,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,4227.22,1.035,49.97,1.0,49.97,37.56,37.56,1.0,45.18,1.0,45.18,37.56,37.56,1.0,35.59,16.33,5.24,10.49,12.71,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 -house044.xml,68.4,19.17,3.34,6.35,30.61,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,76.29,7589.41,9437.28,1.0541,51.71,1.0,51.71,68.4,68.4,0.0,48.12,1.0,48.12,68.4,68.4,0.0,67.03,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 -house045.xml,88.95,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.2203,100.18,25297.81,26306.02,0.9599,49.42,1.0,49.42,88.95,88.95,0.0,44.95,1.0,44.95,88.95,88.95,0.0,83.42,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.2203 -house046.xml,-4.7,74.24,12.05,12.94,61.78,6.78,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812,9.34,2613.32,28117.48,0.9951,49.36,1.0,49.36,37.03,37.03,1.0,43.97,1.0,43.97,37.03,37.03,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 -house047.xml,63.23,31.58,8.96,10.49,50.3,5.55,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941,167.05,10234.47,6100.31,1.0043,57.8,1.0,57.8,63.23,63.23,0.0,52.87,1.0,52.87,63.23,63.23,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 -house048.xml,65.57,1.75,66.15,5.61,2.8,37.95,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336,82.15,6660.44,7666.33,1.0575,50.53,1.0,50.53,65.57,65.57,0.0,45.98,1.0,45.98,65.57,65.57,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 -house049.xml,52.49,13.25,3.11,7.98,9.75,1.59,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328,90.14,2575.24,2717.62,1.0513,48.99,1.0,48.99,52.49,52.49,0.0,44.25,1.0,44.25,52.49,52.49,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 -house050.xml,87.03,20.22,4.93,11.92,32.24,3.23,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657,175.91,7320.82,4096.16,1.016,55.33,1.0,55.33,87.03,87.03,0.0,50.31,1.0,50.31,87.03,87.03,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 -house051.xml,52.71,13.23,2.6,9.98,9.83,1.36,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,87.95,2716.29,3016.42,1.0239,49.21,1.0,49.21,52.71,52.71,0.0,44.49,1.0,44.49,52.71,52.71,0.0,52.94,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 -house052.xml,58.35,13.0,1.65,10.35,9.47,0.79,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.03,1785.27,2858.28,1.0581,52.61,1.0,52.61,58.35,58.35,0.0,47.76,1.0,47.76,58.35,58.35,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 -house053.xml,70.44,20.37,4.77,11.92,32.48,3.16,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633,173.11,7155.62,4063.44,1.0173,55.13,1.0,55.13,70.44,70.44,0.0,50.18,1.0,50.18,70.44,70.44,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 -house054.xml,61.99,3.24,120.66999999999999,7.76,5.17,69.56,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458,71.07,9706.46,13356.76,1.0226,49.57,1.0,49.57,61.99,61.99,0.0,44.94,1.0,44.94,61.99,61.99,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 -house055.xml,63.28,1.76,65.5,5.61,2.82,37.48,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869,75.58,6114.41,7632.05,1.06,48.73,1.0,48.73,63.28,63.28,0.0,44.29,1.0,44.29,63.28,63.28,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 -house056.xml,62.28,24.84,5.16,11.92,39.77,3.46,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029,158.04,7040.57,4407.3,1.0108,54.43,1.0,54.43,62.28,62.28,0.0,49.51,1.0,49.51,62.28,62.28,0.0,58.66,29.5,4.89,11.92,47.21,3.35,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029 -house057.xml,81.4,17.87,4.12,9.98,28.48,2.82,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957,138.95,5007.3,3553.18,1.0142,57.56,1.0,57.56,81.4,81.4,0.0,53.06,1.0,53.06,81.4,81.4,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 -house058.xml,64.18,3.15,82.79,6.7,5.04,47.89,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359,78.95,7750.97,9697.19,1.0124,50.39,1.0,50.39,64.18,64.18,0.0,45.78,1.0,45.78,64.18,64.18,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 -house059.xml,55.57,7.23,2.94,7.98,5.69,1.48,15.03,2.68,0.45,6.95,14.27,0.12,0.0,0.1901,105.06,2423.83,2149.28,1.0734,50.59,1.0,50.59,55.57,55.57,0.0,46.45,1.0,46.45,55.57,55.57,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 -house060.xml,69.74,30.94,33.66,11.51,49.52,20.259999999999998,19.93,38.8,11.84,13.8,27.47,0.0,0.0,0.23113,87.03,15130.83,17200.83,1.0107,49.49,1.0,49.49,69.74,69.74,0.0,46.0,1.0,46.0,69.74,69.74,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 -house061.xml,62.17,6.28,2.98,5.79,10.01,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.22056,88.13,2933.83,3109.03,1.0707,57.07,1.0,57.07,62.17,62.17,0.0,48.57,1.0,48.57,62.17,62.17,0.0,63.72,5.55,3.01,5.79,8.86,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.22056 -house062.xml,72.76,10.05,8.9,5.19,7.75,5.21,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,73.34,4568.17,5851.76,1.0644,48.43,1.0,48.43,72.76,72.76,0.0,45.05,1.0,45.05,72.76,72.76,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 -house063.xml,76.98,16.03,40.11,6.02,25.68,23.63,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386,103.28,10644.46,10249.0,1.0056,48.74,1.0,48.74,76.98,76.98,0.0,46.05,1.0,46.05,76.98,76.98,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 -house064.xml,69.19,14.04,32.38,6.02,22.49,19.14,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504,94.05,8345.52,8530.25,1.0402,53.32,1.0,53.32,69.19,69.19,0.0,50.15,1.0,50.15,69.19,69.19,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 -house065.xml,75.44,15.85,42.07,8.99,25.39,25.34,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282,101.18,11908.35,11366.76,1.0354,47.53,1.0,47.53,75.44,75.44,0.0,44.89,1.0,44.89,75.44,75.44,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 -house066.xml,73.48,11.48,30.96,7.53,8.53,18.05,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26236,74.91,6841.75,8710.75,1.0485,43.76,1.0,43.76,73.48,73.48,0.0,42.05,1.0,42.05,73.48,73.48,0.0,72.45,12.14,31.07,7.53,8.99,18.3,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26236 -house067.xml,59.64,14.72,37.06,7.53,23.59,22.18,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377,80.09,8276.84,9971.34,1.0364,48.22,1.0,48.22,59.64,59.64,0.0,45.58,1.0,45.58,59.64,59.64,0.0,58.28,15.94,37.25,7.53,25.54,22.68,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377 -house068.xml,72.38,24.09,51.46,7.53,38.59,30.799999999999997,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205,98.77,12961.61,13444.02,0.9761,49.65,1.0,49.65,72.38,72.38,0.0,46.76,1.0,46.76,72.38,72.38,0.0,69.03,27.68,52.08,7.53,44.33,32.29,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205 -house069.xml,72.82,25.35,46.64,7.53,40.61,27.61,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606,101.8,12484.1,12386.02,0.9901,55.32,1.0,55.32,72.82,72.82,0.0,52.18,1.0,52.18,72.82,72.82,0.0,69.19,28.93,47.26,7.53,46.35,29.06,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606 -house070.xml,46.87,86.89,24.62,11.78,64.42,13.82,13.09,22.13,3.04,8.99,35.8,0.44,0.0,0.20124,48.56,7865.44,17039.44,0.9507,50.88,1.0,50.88,46.87,46.87,1.0,45.95,1.0,45.95,46.87,46.87,0.0,43.1,101.96,24.23,11.78,75.85,14.38,13.1,22.13,3.04,8.99,35.8,0.44,0.0,0.20124 -house071.xml,75.23,19.68,8.68,9.86,15.690000000000001,4.96,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659,76.59,4716.43,5856.16,1.0516,51.01,1.0,51.01,75.23,75.23,0.0,46.49,1.0,46.49,75.23,75.23,0.0,71.86,22.35,8.57,9.86,17.85,5.04,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659 -house072.xml,60.56,87.41000000000001,1.17,10.46,136.96,1.73,18.75,86.44,0.94,11.49,21.11,0.58,0.0,0.22812,154.44,15962.65,10513.94,0.9831,55.3,1.0,55.3,60.56,60.56,0.0,49.0,1.0,49.0,60.56,60.56,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 -house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,49.15,1.0,49.15,54.01,54.01,0.0,46.71,1.0,46.71,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 -house074.xml,72.11,14.01,33.42,7.53,10.24,19.53,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424,73.85,7213.24,9275.58,1.053,43.58,1.0,43.58,72.11,72.11,0.0,42.0,1.0,42.0,72.11,72.11,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 -house075.xml,64.51,31.57,15.71,11.39,50.45,9.98,19.41,31.46,5.23,18.51,17.85,0.0,0.0,0.21678,85.62,11409.83,12849.2,1.0372,46.15,1.0,46.15,64.51,64.51,0.0,43.51,1.0,43.51,64.51,64.51,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 -house076.xml,61.95,8.2,4.74,5.79,13.07,3.49,12.15,9.05,2.09,7.24,10.13,0.71,0.0,0.19781,104.31,3884.22,3501.59,1.0634,51.55,1.0,51.55,61.95,61.95,0.0,44.92,1.0,44.92,61.95,61.95,0.0,63.45,7.43,4.79,5.79,11.85,3.47,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.19781 -house077.xml,70.62,12.23,4.78,8.66,19.53,3.61,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.22402,75.14,7455.6,9221.07,1.0761,53.89,1.0,53.89,70.62,70.62,0.0,42.62,1.0,42.62,70.62,70.62,0.0,74.09,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.22402 -house078.xml,57.2,29.42,57.21,8.99,47.13,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.92,11821.67,15174.41,0.9872,53.11,1.0,53.11,57.2,57.2,0.0,50.03,1.0,50.03,57.2,57.2,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 -house079.xml,49.37,44.96,2.88,10.35,31.580000000000002,1.43,12.36,12.95,0.1,3.25,22.67,0.0,0.0,0.21664,49.4,2723.01,5675.52,0.9713,54.91,1.0,54.91,49.37,49.37,1.0,50.5,1.0,50.5,49.37,49.37,1.0,45.53,53.54,2.51,10.35,37.2,1.27,12.36,12.95,0.1,3.25,22.67,0.0,0.0,0.21664 -house080.xml,41.1,31.17,63.31,8.99,22.73,37.19,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981,42.93,7014.45,16794.21,0.973,45.82,1.0,45.82,41.1,41.1,1.0,44.28,1.0,44.28,41.1,41.1,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 -house081.xml,65.34,5.01,4.37,5.6,4.46,2.55,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813,67.33,3200.73,4178.61,1.1376,42.01,1.0,42.01,65.34,65.34,0.0,40.64,1.0,40.64,65.34,65.34,0.0,65.04,5.14,4.36,5.6,4.56,2.56,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813 +house001.xml,63.39,9.09,2.02,6.49,14.53,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.19095,71.92,5785.85,7594.67,1.0592,59.11,1.0,59.11,63.39,63.39,0.0,48.42,1.0,48.42,63.39,63.39,0.0,59.83,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.23338 +house002.xml,74.57,51.51,21.17,9.54,41.6,12.18,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462,75.61,13121.97,17649.0,0.9834,50.67,1.0,50.67,74.57,74.57,0.0,48.26,1.0,48.26,74.57,74.57,0.0,69.17,59.81,21.26,9.54,48.17,12.71,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462 +house003.xml,62.77,27.310000000000002,21.75,8.83,30.62,12.45,16.04,18.97,6.86,7.24,22.14,1.19,0.0,0.24283,73.9,9376.08,12782.0,0.9925,49.07,1.0,49.07,62.77,62.77,0.0,47.15,1.0,47.15,62.77,62.77,0.0,59.5,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.72,6.85,7.24,22.14,1.14,0.0,0.24283 +house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,56.17,1.0,56.17,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 +house005.xml,61.43,4.76,3.99,5.79,4.16,2.28,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,84.89,2687.5,2937.29,1.0778,50.04,1.0,50.04,61.43,61.43,0.0,46.24,1.0,46.24,61.43,61.43,0.0,58.42,5.54,4.01,5.79,4.72,2.34,12.13,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 +house006.xml,71.4,31.58,20.72,10.54,23.74,12.02,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395,72.73,10094.8,13623.99,1.0188,45.67,1.0,45.67,71.4,71.4,0.0,43.8,1.0,43.8,71.4,71.4,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 +house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,49.49,1.0,49.49,77.04,77.04,0.0,73.9,17.58,4.49,8.85,14.92,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 +house008.xml,62.72,96.27,10.33,13.22,153.4,6.79,22.26,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.42,24257.2,33975.74,0.9724,51.34,1.0,51.34,62.72,62.72,0.0,46.37,1.0,46.37,62.72,62.72,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 +house009.xml,62.21,19.29,42.09,8.99,30.91,25.18,16.38,16.78,13.53,12.35,23.29,0.64,0.0,0.28642,84.89,9976.47,11470.79,1.0245,48.51,1.0,48.51,62.21,62.21,0.0,45.45,1.0,45.45,62.21,62.21,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 +house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.52,1.0,48.52,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 +house011.xml,62.04,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.24264,79.39,3440.31,4080.5,1.062,57.18,1.0,57.18,62.04,62.04,0.0,53.52,1.0,53.52,62.04,62.04,0.0,59.51,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.27513 +house012.xml,52.09,34.67,2.59,11.63,29.51,1.47,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688,53.17,5525.34,9931.01,1.0463,51.68,1.0,51.68,52.09,52.09,1.0,44.07,1.0,44.07,52.09,52.09,0.0,48.05,40.72,2.44,11.63,34.43,1.45,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688 +house013.xml,58.87,12.03,1.85,10.35,8.85,0.88,11.96,6.61,0.18,3.38,13.97,0.66,0.0,0.16792,57.5,1700.72,2805.93,1.0542,52.81,1.0,52.81,58.87,58.87,0.0,47.6,1.0,47.6,58.87,58.87,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 +house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,48.05,1.0,48.05,54.98,54.98,0.0,45.72,1.0,45.72,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 +house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3424.1,1.1353,49.61,1.0,49.61,49.76,49.76,1.0,47.58,1.0,47.58,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 +house016.xml,51.52,0.58,72.46,5.61,0.52,39.17,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776,72.58,5977.7,7902.55,1.0422,50.9,1.0,50.9,51.52,51.52,0.0,48.75,1.0,48.75,51.52,51.52,0.0,51.34,0.64,72.69,5.61,0.56,39.35,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776 +house017.xml,69.06,20.26,5.69,10.95,32.32,3.82,18.88,37.14,1.36,9.12,15.89,0.5,0.0,0.20226,177.48,8210.66,4416.32,1.0475,52.34,1.0,52.34,69.06,69.06,0.0,47.44,1.0,47.44,69.06,69.06,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 +house018.xml,30.9,149.43,32.13,17.34,238.12,21.1,27.24,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635,98.29,24234.19,25723.6,0.9585,50.88,1.0,50.88,54.13,54.13,0.0,46.91,1.0,46.91,54.13,54.13,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 +house019.xml,63.49,97.19,10.14,13.22,155.04,6.84,22.25,98.39,2.01,15.29,29.84,4.58,0.0,0.1912,75.95,25465.55,34331.59,0.9766,51.79,1.0,51.79,63.49,63.49,0.0,46.55,1.0,46.55,63.49,63.49,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 +house020.xml,39.51,89.32,13.049999999999999,13.08,103.69999999999999,7.4799999999999995,14.11,92.53,5.1,13.08,33.48,3.62,0.0,0.25974,113.38,12980.85,11698.11,0.9787,56.0,1.0,56.0,82.85,82.85,0.0,51.81,1.0,51.81,82.85,82.85,0.0,71.83,101.98,12.68,13.08,117.84,7.33,14.12,92.53,5.1,13.08,33.48,3.62,0.0,0.25974 +house021.xml,59.56,54.01,8.13,15.33,86.06,5.55,24.64,49.14,4.04,17.78,19.62,2.69,0.0,0.2707,65.66,15954.7,23159.41,1.0493,52.96,1.0,52.96,59.56,59.56,0.0,47.59,1.0,47.59,59.56,59.56,0.0,55.45,61.76,7.89,15.33,98.41,5.57,24.65,49.14,4.04,17.78,19.62,2.69,0.0,0.2707 +house022.xml,54.04,0.44,54.0,4.5,0.44,29.67,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317,61.65,4084.1,6374.67,1.0392,50.63,1.0,50.63,54.04,54.04,0.0,48.32,1.0,48.32,54.04,54.04,0.0,53.83,0.5,54.21,4.5,0.48,29.83,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317 +house023.xml,72.54,16.25,39.75,6.02,11.91,22.67,7.25,7.55,14.61,5.84,18.89,4.03,0.0,0.26097,74.37,7604.15,10165.52,1.0058,45.66,1.0,45.66,72.54,72.54,0.0,43.84,1.0,43.84,72.54,72.54,0.0,70.44,17.35,39.92,6.02,12.62,23.11,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26097 +house024.xml,68.65,21.42,45.28,8.99,34.32,27.15,16.06,23.31,14.67,12.52,23.96,4.56,0.0,0.27167,94.51,11747.92,12313.61,1.0095,52.65,1.0,52.65,68.65,68.65,0.0,49.53,1.0,49.53,68.65,68.65,0.0,64.61,24.53,45.77,8.99,39.3,28.37,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167 +house025.xml,8.93,106.68,19.34,12.54,78.8,10.26,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675,22.16,2849.46,13414.51,0.9584,50.76,1.0,50.76,55.98,55.98,0.0,45.75,1.0,45.75,55.98,55.98,0.0,49.61,120.66,19.44,12.54,88.72,10.33,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675 +house026.xml,65.09,11.54,29.78,7.52,18.48,18.04,14.1,10.24,10.18,14.24,19.05,0.49,0.0,0.21446,90.96,8072.18,8495.08,1.0447,46.98,1.0,46.98,65.09,65.09,0.0,44.3,1.0,44.3,65.09,65.09,0.0,62.98,12.86,29.98,7.52,20.6,18.56,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446 +house027.xml,66.46,15.56,37.88,7.53,24.92,22.66,14.43,16.07,12.48,11.69,19.74,3.79,0.0,0.3038,89.93,9491.44,10169.34,1.0379,51.57,1.0,51.57,66.46,66.46,0.0,48.49,1.0,48.49,66.46,66.46,0.0,64.19,16.63,38.04,7.53,26.64,23.1,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038 +house028.xml,65.7,22.24,48.59,10.42,16.11,28.39,11.66,9.26,16.86,8.78,25.84,0.79,0.0,0.28713,67.84,9235.16,13363.8,1.0187,44.54,1.0,44.54,65.7,65.7,0.0,42.71,1.0,42.71,65.7,65.7,0.0,62.47,25.52,49.13,10.42,18.3,29.56,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713 +house029.xml,61.37,21.98,47.61,8.98,35.21,28.96,16.06,22.049999999999997,14.55,9.36,26.67,0.7,0.0,0.25612,84.75,10975.39,12950.95,0.9999,49.11,1.0,49.11,61.37,61.37,0.0,46.08,1.0,46.08,61.37,61.37,0.0,58.09,25.35,48.16,8.98,40.620000000000005,30.28,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612 +house030.xml,59.7,28.060000000000002,57.93,10.42,44.97,35.04,17.92,28.060000000000002,19.330000000000002,9.28,27.93,0.84,0.0,0.2949,82.55,12838.92,15512.7,1.0026,49.92,1.0,49.92,59.7,59.7,0.0,46.69,1.0,46.69,59.7,59.7,0.0,56.33,32.18,58.61,10.42,51.55,36.650000000000006,17.94,27.27,19.15,9.28,27.93,0.75,0.0,0.2949 +house031.xml,55.38,120.63,19.59,14.54,89.16,10.37,17.33,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578,55.01,8016.93,14472.89,1.007,49.16,1.0,49.16,55.38,55.38,0.0,44.51,1.0,44.51,55.38,55.38,0.0,51.8,135.6,19.66,14.54,99.48,10.42,17.34,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578 +house032.xml,70.54,25.560000000000002,56.67,8.99,40.93,33.83,16.33,27.94,20.28,13.07,26.02,5.63,0.0,0.26822,104.24,15216.27,14331.82,1.0185,54.23,1.0,54.23,70.54,70.54,0.0,50.91,1.0,50.91,70.54,70.54,0.0,67.18,27.45,56.93,8.99,43.959999999999994,34.58,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822 +house033.xml,63.94,68.4,28.009999999999998,11.39,109.17,17.71,19.41,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328,90.45,20714.8,23623.44,0.9695,52.19,1.0,52.19,63.94,63.94,0.0,49.01,1.0,49.01,63.94,63.94,0.0,59.16,79.84,28.050000000000004,11.39,127.41,18.380000000000003,19.42,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328 +house034.xml,61.98,18.62,4.44,9.98,29.81,3.08,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697,151.78,5663.09,3627.53,1.0286,55.5,1.0,55.5,61.98,61.98,0.0,50.11,1.0,50.11,61.98,61.98,0.0,60.57,20.08,4.33,9.98,32.15,3.03,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697 +house035.xml,69.95,51.14,6.42,11.07,81.55,4.72,12.39,66.79,2.09,10.02,20.06,0.52,0.0,0.19233,80.05,17985.25,22552.33,0.9962,55.73,1.0,55.73,69.95,69.95,0.0,49.29,1.0,49.29,69.95,69.95,0.0,64.61,58.33,6.18,11.07,92.95,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233 +house036.xml,67.96,60.62,8.64,8.66,96.7,5.91,15.95,66.61,3.14,9.12,27.96,2.37,0.0,0.18716,79.2,18635.16,24004.98,0.9802,55.3,1.0,55.3,68.0,68.0,0.0,49.65,1.0,49.65,68.0,68.0,0.0,63.22,68.72,8.43,8.66,109.52,5.86,15.96,66.12,3.13,9.12,27.96,2.32,0.0,0.18716 +house037.xml,66.92,63.84,6.69,13.22,101.87,4.86,14.55,69.19,2.89,10.99,21.25,0.42,0.0,0.19298,78.12,19037.66,24109.56,1.0107,52.73,1.0,52.73,66.92,66.92,0.0,47.78,1.0,47.78,66.92,66.92,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 +house038.xml,64.68,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.759999999999998,11.940000000000001,12.25,27.65,0.92,0.0,0.26786,72.94,13801.57,19459.29,0.9724,47.09,1.0,47.09,64.68,64.68,0.0,45.07,1.0,45.07,64.68,64.68,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 +house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.61,11058.09,0.9975,53.95,1.0,53.95,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 +house040.xml,63.71,123.78,12.18,11.07,197.29,7.91,19.46,110.5,8.89,15.32,32.38,2.19,0.0,0.18417,74.9,28996.13,40455.67,0.957,52.94,1.0,52.94,63.71,63.71,0.0,49.83,1.0,49.83,63.71,63.71,0.0,58.9,139.5,11.9,11.07,222.28,7.7,19.47,110.5,8.89,15.32,32.38,2.19,0.0,0.18417 +house041.xml,77.69,24.75,8.16,12.54,39.48,5.2,20.94,27.24,3.89,20.39,23.5,0.0,0.0,0.13022,170.64,9245.97,5294.1,1.0235,52.71,1.0,52.71,77.69,77.69,0.0,46.6,1.0,46.6,77.69,77.69,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 +house042.xml,87.15,49.11,21.04,11.39,78.44,12.99,19.74,76.46,9.92,15.57,27.23,0.0,0.0,0.21961,112.81,20258.12,18000.96,0.9976,49.74,1.0,49.74,87.15,87.15,0.0,46.7,1.0,46.7,87.15,87.15,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 +house043.xml,-8.69,12.18,5.33,10.49,9.82,2.8,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3965.98,1.035,53.67,1.0,53.67,40.5,40.5,1.0,48.87,1.0,48.87,40.5,40.5,1.0,35.59,16.33,5.24,10.49,12.71,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 +house044.xml,69.14,18.71,3.36,6.35,29.88,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.1,7589.41,9337.78,1.0541,52.4,1.0,52.4,69.14,69.14,0.0,48.7,1.0,48.7,69.14,69.14,0.0,67.03,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 +house045.xml,88.94,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001,100.18,25297.81,26306.02,0.96,49.32,1.0,49.32,88.94,88.94,0.0,45.51,1.0,45.51,88.94,88.94,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 +house046.xml,-4.7,74.24,12.05,12.94,61.78,6.78,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812,9.34,2613.32,28117.48,0.9951,49.94,1.0,49.94,37.03,37.03,1.0,43.97,1.0,43.97,37.03,37.03,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 +house047.xml,63.58,31.57,8.97,10.49,50.29,5.55,11.81,44.22,2.29,2.71,21.15,0.37,0.0,0.20941,168.44,10324.13,6103.19,1.0043,58.16,1.0,58.16,63.58,63.58,0.0,52.87,1.0,52.87,63.58,63.58,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 +house048.xml,65.99,1.74,66.18,5.61,2.79,37.96,10.95,0.62,25.32,7.59,19.73,0.79,0.0,0.3336,82.63,6709.33,7678.16,1.0575,50.57,1.0,50.57,65.99,65.99,0.0,46.01,1.0,46.01,65.99,65.99,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 +house049.xml,52.49,13.25,3.11,7.98,9.75,1.59,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328,90.14,2575.24,2717.62,1.0513,49.08,1.0,49.08,52.49,52.49,0.0,44.25,1.0,44.25,52.49,52.49,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 +house050.xml,87.17,20.22,4.93,11.92,32.23,3.23,21.36,14.61,2.8,15.61,22.99,14.05,0.0,0.1657,176.1,7329.31,4096.47,1.016,55.55,1.0,55.55,87.17,87.17,0.0,50.31,1.0,50.31,87.17,87.17,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 +house051.xml,55.45,10.5,2.82,9.98,8.02,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.29,2716.29,2874.32,1.0239,51.79,1.0,51.79,55.45,55.45,0.0,47.18,1.0,47.18,55.45,55.45,0.0,52.94,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 +house052.xml,59.11,12.31,1.71,10.35,9.04,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.7,1785.27,2826.25,1.0581,53.38,1.0,53.38,59.11,59.11,0.0,48.51,1.0,48.51,59.11,59.11,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 +house053.xml,70.94,20.36,4.77,11.92,32.46,3.16,21.32,21.16,2.02,14.94,22.57,0.96,0.0,0.16633,175.03,7240.7,4066.51,1.0173,55.4,1.0,55.4,70.94,70.94,0.0,50.18,1.0,50.18,70.94,70.94,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 +house054.xml,62.17,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.69,43.620000000000005,6.47,28.18,1.52,0.0,0.33458,71.29,9742.93,13364.6,1.0226,49.65,1.0,49.65,62.17,62.17,0.0,44.99,1.0,44.99,62.17,62.17,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 +house055.xml,63.35,1.76,65.51,5.61,2.82,37.48,10.68,1.21,24.25,5.91,18.6,1.03,0.0,0.33869,75.68,6123.88,7633.91,1.06,48.76,1.0,48.76,63.35,63.35,0.0,44.32,1.0,44.32,63.35,63.35,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 +house056.xml,62.58,24.84,5.16,11.92,39.76,3.47,20.93,21.64,1.91,11.91,24.34,2.69,0.0,0.20029,159.04,7087.45,4408.92,1.0108,54.78,1.0,54.78,62.58,62.58,0.0,49.51,1.0,49.51,62.58,62.58,0.0,58.66,29.5,4.89,11.92,47.21,3.35,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029 +house057.xml,82.68,17.86,4.12,9.98,28.47,2.82,11.54,16.12,2.93,3.24,19.13,12.04,0.0,0.15957,140.44,5064.26,3555.53,1.0142,57.81,1.0,57.81,82.68,82.68,0.0,53.06,1.0,53.06,82.68,82.68,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 +house058.xml,64.48,3.14,82.82,6.7,5.03,47.9,12.51,1.6,29.31,10.89,21.41,0.99,0.0,0.33359,79.35,7798.01,9707.3,1.0124,50.47,1.0,50.47,64.48,64.48,0.0,45.84,1.0,45.84,64.48,64.48,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 +house059.xml,55.68,7.23,2.94,7.98,5.69,1.48,15.03,2.72,0.45,6.95,14.27,0.13,0.0,0.1901,105.15,2426.76,2150.04,1.0734,50.65,1.0,50.65,55.68,55.68,0.0,46.45,1.0,46.45,55.68,55.68,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 +house060.xml,69.74,30.94,33.66,11.51,49.52,20.259999999999998,19.93,38.8,11.84,13.8,27.47,0.0,0.0,0.23113,87.03,15130.83,17200.83,1.0107,49.65,1.0,49.65,69.74,69.74,0.0,46.07,1.0,46.07,69.74,69.74,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 +house061.xml,66.9,4.56,3.06,5.79,7.27,1.78,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.18253,93.97,2933.83,2950.35,1.0583,62.89,1.0,62.89,66.9,66.9,0.0,53.03,1.0,53.03,66.9,66.9,0.0,63.72,5.55,3.01,5.79,8.86,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.22056 +house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.7,1.0,49.7,74.3,74.3,0.0,46.15,1.0,46.15,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 +house063.xml,77.83,16.03,40.12,6.02,25.67,23.63,12.48,21.79,15.83,9.48,20.91,4.23,0.0,0.25386,104.51,10777.22,10255.08,1.0056,48.88,1.0,48.88,77.83,77.83,0.0,46.1,1.0,46.1,77.83,77.83,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 +house064.xml,70.44,14.03,32.39,6.02,22.48,19.15,12.18,17.09,12.27,8.4,16.88,2.42,0.0,0.27504,95.85,8514.99,8539.93,1.0402,53.48,1.0,53.48,70.44,70.44,0.0,50.28,1.0,50.28,70.44,70.44,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 +house065.xml,76.06,15.85,42.08,8.99,25.39,25.35,16.33,23.05,16.23,12.28,24.39,4.77,0.0,0.25282,102.08,12019.78,11372.24,1.0354,47.62,1.0,47.62,76.06,76.06,0.0,44.93,1.0,44.93,76.06,76.06,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 +house066.xml,73.85,11.48,30.97,7.53,8.53,18.05,8.76,5.78,12.48,6.43,17.87,3.62,0.0,0.26235,75.25,6874.5,8713.07,1.0485,43.81,1.0,43.81,73.85,73.85,0.0,42.07,1.0,42.07,73.85,73.85,0.0,72.46,12.14,31.07,7.53,8.99,18.3,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26235 +house067.xml,60.03,14.72,37.07,7.53,23.58,22.18,14.12,14.92,12.57,7.79,19.7,0.58,0.0,0.29377,80.7,8346.3,9979.28,1.0364,48.39,1.0,48.39,60.03,60.03,0.0,45.65,1.0,45.65,60.03,60.03,0.0,58.28,15.94,37.25,7.53,25.54,22.68,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377 +house068.xml,74.29,24.08,51.49,7.53,38.56,30.810000000000002,14.45,27.7,17.33,10.92,26.97,6.51,0.0,0.25205,101.42,13326.16,13461.98,0.9761,49.98,1.0,49.98,74.29,74.29,0.0,46.9,1.0,46.9,74.29,74.29,0.0,69.03,27.68,52.08,7.53,44.33,32.29,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205 +house069.xml,72.7,25.32,46.68,7.53,40.57,27.63,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606,101.58,12484.1,12412.93,0.9901,55.81,1.0,55.81,72.7,72.7,0.0,52.57,1.0,52.57,72.7,72.7,0.0,69.19,28.93,47.26,7.53,46.35,29.06,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606 +house070.xml,47.24,86.86,24.63,11.78,64.39,13.83,13.09,22.59,3.05,8.99,35.8,0.47,0.0,0.20124,48.88,7923.62,17051.82,0.9507,51.81,1.0,51.81,47.24,47.24,1.0,45.95,1.0,45.95,47.24,47.24,0.0,43.1,101.96,24.23,11.78,75.85,14.38,13.1,22.13,3.04,8.99,35.8,0.44,0.0,0.20124 +house071.xml,75.17,19.67,8.69,9.86,15.690000000000001,4.96,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659,76.52,4716.43,5861.41,1.0516,51.41,1.0,51.41,75.17,75.17,0.0,46.49,1.0,46.49,75.17,75.17,0.0,71.86,22.35,8.57,9.86,17.85,5.04,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659 +house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.49,21.11,0.6,0.0,0.22812,155.31,16055.81,10515.45,0.9831,55.95,1.0,55.95,60.86,60.86,0.0,49.0,1.0,49.0,60.86,60.86,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 +house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,50.07,1.0,50.07,54.01,54.01,0.0,47.26,1.0,47.26,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 +house074.xml,72.27,14.0,33.43,7.53,10.24,19.53,8.68,6.23,13.35,6.54,21.4,0.83,0.0,0.24424,73.99,7229.3,9278.57,1.053,43.73,1.0,43.73,72.27,72.27,0.0,42.07,1.0,42.07,72.27,72.27,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 +house075.xml,64.51,31.57,15.71,11.39,50.45,9.98,19.41,31.46,5.23,18.51,17.85,0.0,0.0,0.21678,85.62,11409.83,12849.2,1.0372,46.34,1.0,46.34,64.51,64.51,0.0,43.59,1.0,43.59,64.51,64.51,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 +house076.xml,65.93,6.59,4.86,5.79,10.51,3.47,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.15851,110.05,3884.22,3359.52,1.0506,52.89,1.0,52.89,65.93,65.93,0.0,48.33,1.0,48.33,65.93,65.93,0.0,63.45,7.43,4.79,5.79,11.85,3.47,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.19781 +house077.xml,78.35,8.63,5.1,8.66,13.78,3.66,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.18443,83.24,7461.65,8438.43,1.0623,56.49,1.0,56.49,78.35,78.35,0.0,47.85,1.0,47.85,78.35,78.35,0.0,74.09,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.22402 +house078.xml,57.17,29.41,57.23,8.99,47.12,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.87,11821.67,15183.26,0.9872,53.43,1.0,53.43,57.17,57.17,0.0,50.27,1.0,50.27,57.17,57.17,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 +house079.xml,49.4,44.96,2.88,10.35,31.580000000000002,1.43,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664,49.42,2724.63,5675.52,0.9713,55.85,1.0,55.85,49.4,49.4,1.0,50.5,1.0,50.5,49.4,49.4,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 +house080.xml,41.1,31.17,63.31,8.99,22.73,37.19,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981,42.93,7014.45,16794.21,0.973,46.21,1.0,46.21,41.1,41.1,1.0,44.48,1.0,44.48,41.1,41.1,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 +house081.xml,65.34,5.01,4.37,5.6,4.46,2.55,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813,67.33,3200.73,4178.61,1.1376,42.01,1.0,42.01,65.34,65.34,0.0,40.63,1.0,40.63,65.34,65.34,0.0,65.04,5.14,4.36,5.6,4.56,2.56,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index bece9ef05..c65d66215 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -1,175 +1,175 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -base-appliances-dehumidifier-ief-portable.xml,66.92,9.33,26.8,7.53,14.89,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332,70.31,5715.81,7575.66,1.0731,48.13,1.0,48.13,66.92,66.92,0.0,46.58,1.0,46.58,66.92,66.92,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 -base-appliances-dehumidifier-ief-whole-home.xml,66.91,9.33,26.79,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332,70.3,5715.51,7576.38,1.0731,48.21,1.0,48.21,66.91,66.91,0.0,46.79,1.0,46.79,66.91,66.91,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 -base-appliances-dehumidifier-multiple.xml,66.91,9.37,26.82,7.53,14.91,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332,70.32,5715.43,7573.95,1.0731,47.97,1.0,47.97,66.91,66.91,0.0,46.23,1.0,46.23,66.91,66.91,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-dehumidifier.xml,66.9,9.33,26.8,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332,70.29,5714.36,7575.66,1.0731,48.13,1.0,48.13,66.9,66.9,0.0,46.58,1.0,46.58,66.9,66.9,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-gas.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,160.0,8882.55,5495.15,1.0103,57.1,1.0,57.1,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-modified.xml,79.23,29.51,8.31,10.49,47.03,5.17,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149,153.62,8530.54,5495.15,1.0105,56.54,1.0,56.54,79.23,79.23,0.0,51.03,1.0,51.03,79.23,79.23,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 -base-appliances-none.xml,80.28,29.51,8.31,10.49,47.03,5.17,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149,154.47,8578.12,5495.15,1.0105,56.27,1.0,56.27,80.28,80.28,0.0,50.8,1.0,50.8,80.28,80.28,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 -base-appliances-oil.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,164.26,9119.04,5495.15,1.0103,57.1,1.0,57.1,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-propane.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,162.67,9030.96,5495.15,1.0103,57.1,1.0,57.1,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-wood.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,,,,,57.1,1.0,57.1,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-atticroof-cathedral.xml,71.87,32.31,8.49,10.49,51.46,5.18,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844,137.53,7901.53,5691.51,1.0094,55.25,1.0,55.25,71.87,71.87,0.0,51.23,1.0,51.23,71.87,71.87,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 -base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.09,1.0,57.09,74.48,74.48,0.0,51.31,1.0,51.31,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 -base-atticroof-flat.xml,71.36,29.29,8.56,10.49,46.65,5.24,11.52,32.1,3.91,9.02,21.28,0.0,0.0,0.19801,134.6,7461.77,5491.72,1.0094,56.25,1.0,56.25,71.36,71.36,0.0,50.79,1.0,50.79,71.36,71.36,0.0,67.8,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 -base-atticroof-radiant-barrier.xml,72.95,9.39,26.65,7.53,15.05,15.84,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811,78.77,6304.3,7545.78,1.0606,46.9,1.0,46.9,72.95,72.95,0.0,44.08,1.0,44.08,72.95,72.95,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 -base-atticroof-unvented-insulated-roof.xml,74.09,29.51,8.31,10.49,47.03,5.17,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867,142.76,7914.64,5495.15,1.0089,56.27,1.0,56.27,74.09,74.09,0.0,50.8,1.0,50.8,74.09,74.09,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 -base-atticroof-vented.xml,76.41,30.04,8.11,10.49,47.87,5.07,11.83,38.4,4.34,9.19,21.28,0.0,0.0,0.22173,150.12,8415.24,5547.13,1.0106,57.04,1.0,57.04,76.41,76.41,0.0,51.7,1.0,51.7,76.41,76.41,0.0,72.54,34.14,8.05,10.49,54.39,5.05,11.83,38.4,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,68.25,10.3,5.08,10.49,16.47,3.5,11.52,10.92,2.41,9.57,13.08,0.0,0.0,0.22983,102.76,3626.8,3233.08,1.0916,65.38,1.0,65.38,68.25,68.25,0.0,55.53,1.0,55.53,68.25,68.25,0.0,70.74,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-location-portland-or.xml,67.95,5.03,3.12,9.98,8.05,2.28,11.0,1.72,2.26,9.1,13.08,0.0,0.0,0.19715,75.04,2227.55,2753.44,1.0781,61.56,1.0,61.56,67.95,67.95,0.0,49.45,1.0,49.45,67.95,67.95,0.0,70.14,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.19715 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,65.8,7.66,5.74,10.49,12.53,3.81,11.51,3.08,3.77,9.55,13.08,0.0,0.0,0.23817,73.7,2572.23,3187.06,1.0951,57.94,1.0,57.94,65.8,65.8,0.0,48.57,1.0,48.57,65.8,65.8,0.0,68.05,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,66.06,7.66,5.74,10.49,12.53,3.81,11.51,3.3,3.77,9.55,13.08,0.0,0.0,0.23817,74.46,2598.87,3187.06,1.0951,58.08,1.0,58.08,66.06,66.06,0.0,48.66,1.0,48.66,66.06,66.06,0.0,68.32,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,65.84,7.66,5.74,10.49,12.53,3.81,11.51,3.11,3.77,9.55,13.08,0.0,0.0,0.23817,73.63,2569.58,3187.06,1.0951,58.08,1.0,58.08,65.84,65.84,0.0,48.66,1.0,48.66,65.84,65.84,0.0,68.09,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,65.38,7.66,5.74,10.49,11.7,3.81,11.51,2.58,3.77,9.55,13.08,0.0,0.0,0.23395,71.46,2489.93,3187.06,1.0933,57.14,1.0,57.14,65.38,67.53,0.0,48.25,1.0,48.25,65.38,67.53,0.0,67.59,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.23395 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,65.11,7.66,5.74,10.49,12.2,3.81,11.51,4.22,2.89,9.55,13.08,0.0,0.0,0.23023,76.8,2672.41,3187.06,1.0918,62.58,1.0,62.58,65.11,65.11,0.0,49.53,1.0,49.53,65.11,65.11,0.0,67.33,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,66.89,7.66,5.74,10.49,12.2,3.81,11.51,4.22,3.41,9.55,13.08,0.0,0.0,0.23023,77.91,2710.95,3187.06,1.0918,63.04,1.0,63.04,66.89,66.89,0.0,49.96,1.0,49.96,66.89,66.89,0.0,69.17,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,65.65,7.66,5.74,10.49,12.2,3.81,11.51,4.22,3.04,9.55,13.08,0.0,0.0,0.23023,77.13,2683.72,3187.06,1.0918,63.04,1.0,63.04,65.65,65.65,0.0,49.96,1.0,49.96,65.65,65.65,0.0,67.88,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,75.53,7.66,5.74,10.49,12.2,3.81,11.51,4.22,5.95,9.55,13.08,0.0,0.0,0.23023,83.19,2894.79,3187.06,1.0918,66.12,1.0,66.12,75.53,75.53,0.0,52.8,1.0,52.8,75.53,75.53,0.0,78.18,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,66.5,7.66,5.74,10.49,12.2,3.81,11.51,4.22,3.29,9.55,13.08,0.0,0.0,0.23023,77.68,2702.85,3187.06,1.0918,62.71,1.0,62.71,66.5,66.5,0.0,49.64,1.0,49.64,66.5,66.5,0.0,68.77,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-generator.xml,61.17,7.66,5.74,10.49,12.25,3.79,11.51,2.88,3.02,9.55,13.08,0.0,0.0,0.22983,131.66,4437.89,3087.97,1.0916,56.34,1.0,56.34,63.43,63.43,0.0,46.96,1.0,46.96,63.43,63.43,0.0,63.25,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,72.44,7.66,5.74,10.49,6.45,2.94,11.51,2.18,3.89,9.55,13.08,0.0,0.0,0.22719,69.02,2324.06,3087.97,1.0905,64.07,1.0,64.07,72.44,72.44,0.0,54.29,1.0,54.29,72.44,72.44,0.0,74.67,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.22719 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,63.02,7.28,5.91,10.5,11.64,3.87,18.22,2.7,3.08,14.5,13.08,0.0,0.0,0.22953,113.56,3836.06,3094.93,1.0915,50.11,1.0,50.11,63.02,63.02,0.0,42.32,1.0,42.32,63.02,63.02,0.0,65.14,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-laundry-room.xml,60.13,7.28,5.91,10.49,11.64,3.87,18.22,3.06,2.93,12.33,13.08,0.0,0.0,0.22953,105.36,3558.78,3094.66,1.0915,50.11,1.0,50.11,60.13,60.13,0.0,42.32,1.0,42.32,60.13,60.13,0.0,62.15,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,69.95,7.54,5.82,10.49,12.05,3.83,11.51,0.7,3.42,9.54,13.08,1.5,0.0,0.22983,85.21,2913.88,3132.55,1.0916,56.34,1.0,56.34,69.95,69.95,0.0,46.96,1.0,46.96,69.95,69.95,0.0,72.28,6.14,5.96,10.49,9.82,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.22983 -base-bldgtype-mf-unit-shared-mechvent.xml,65.74,7.54,5.82,10.49,12.05,3.83,11.51,2.65,3.04,9.55,13.08,1.5,0.0,0.22983,75.49,2581.48,3132.55,1.0916,56.34,1.0,56.34,65.74,65.74,0.0,46.96,1.0,46.96,65.74,65.74,0.0,67.93,6.14,5.96,10.49,9.82,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.22983 -base-bldgtype-mf-unit-shared-pv.xml,5.6,7.66,5.74,10.49,12.25,3.79,11.51,2.88,3.02,9.55,13.08,0.0,0.0,0.22983,24.14,813.67,3087.97,1.0916,56.34,1.0,56.34,63.43,63.43,0.0,46.96,1.0,46.96,63.43,63.43,0.0,62.1,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,61.77,7.07,6.1,10.49,11.31,3.96,18.21,2.95,2.99,13.43,13.08,0.0,0.0,0.22953,107.86,3635.34,3087.97,1.0915,50.94,1.0,50.94,61.77,61.77,0.0,43.1,1.0,43.1,61.77,61.77,0.0,63.81,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-water-heater.xml,60.33,7.07,6.1,10.49,11.31,3.96,18.21,2.95,2.99,12.33,13.08,0.0,0.0,0.22953,105.24,3547.12,3087.97,1.0915,50.1,1.0,50.1,60.33,60.33,0.0,42.4,1.0,42.4,60.33,60.33,0.0,62.33,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit.xml,63.43,7.66,5.74,10.49,12.25,3.79,11.51,2.88,3.02,9.55,13.08,0.0,0.0,0.22983,73.84,2489.05,3087.97,1.0916,56.34,1.0,56.34,63.43,63.43,0.0,46.96,1.0,46.96,63.43,63.43,0.0,65.59,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-sfa-unit.xml,74.57,18.97,5.71,10.49,30.24,3.84,11.52,23.76,3.23,9.29,17.18,0.0,0.0,0.22149,133.18,5891.1,4259.48,1.0385,55.11,1.0,55.11,74.57,74.57,0.0,49.87,1.0,49.87,74.57,74.57,0.0,72.7,20.46,5.67,10.49,32.62,3.83,11.53,23.76,3.23,9.29,17.18,0.0,0.0,0.22149 -base-dhw-combi-tankless.xml,64.49,28.79,8.58,10.49,47.16,5.33,18.31,32.17,4.64,10.29,21.28,0.0,0.0,0.23006,146.05,8340.47,5648.96,1.011,54.87,1.0,54.87,64.49,64.49,0.0,49.53,1.0,49.53,64.49,64.49,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 -base-dhw-desuperheater.xml,83.18,29.51,8.31,10.49,47.0,5.2,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185,160.23,9146.86,5648.96,1.0106,71.12,1.0,71.12,83.18,83.18,0.0,62.0,1.0,62.0,83.18,83.18,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 -base-dhw-dwhr.xml,75.5,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149,149.25,8287.82,5495.15,1.0105,56.27,1.0,56.27,75.5,75.5,0.0,50.8,1.0,50.8,75.5,75.5,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 -base-dhw-indirect-standbyloss.xml,68.34,28.71,8.61,10.49,47.04,5.35,18.65,30.49,4.92,14.07,21.28,0.0,0.0,0.22512,151.38,8668.97,5665.98,1.0107,54.87,1.0,54.87,68.34,68.34,0.0,49.53,1.0,49.53,68.34,68.34,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 -base-dhw-jacket-gas.xml,78.34,28.71,8.61,10.49,45.75,5.31,18.65,37.69,5.04,14.23,21.28,0.0,0.0,0.21632,174.62,9725.04,5512.62,1.0103,53.94,1.0,53.94,78.34,78.34,0.0,48.26,1.0,48.26,78.34,78.34,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 -base-dhw-jacket-hpwh.xml,74.23,29.04,8.49,10.49,46.27,5.25,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148,154.72,8672.64,5549.67,1.0101,56.58,1.0,56.58,74.23,74.23,0.0,51.07,1.0,51.07,74.23,74.23,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 -base-dhw-jacket-indirect.xml,67.25,28.71,8.61,10.49,47.04,5.35,18.65,30.97,4.84,13.1,21.28,0.0,0.0,0.22512,150.02,8591.33,5665.98,1.0107,54.87,1.0,54.87,67.25,67.25,0.0,49.53,1.0,49.53,67.25,67.25,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 -base-dhw-low-flow-fixtures.xml,77.94,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149,152.21,8452.36,5495.15,1.0105,56.27,1.0,56.27,77.94,77.94,0.0,50.8,1.0,50.8,77.94,77.94,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 -base-dhw-multiple.xml,67.49,29.51,8.31,10.5,48.31,5.2,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306,130.34,7444.44,5649.43,1.011,61.28,1.0,61.28,67.49,67.49,0.0,55.83,1.0,55.83,67.49,67.49,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 -base-dhw-none.xml,82.56,28.79,8.58,10.49,45.88,5.3,18.31,37.17,5.11,18.31,22.38,0.0,0.0,0.22122,186.22,10340.75,5495.15,1.0105,61.23,1.0,61.23,82.56,82.56,0.0,56.36,1.0,56.36,82.56,82.56,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 -base-dhw-recirc-demand.xml,78.15,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149,152.45,8465.52,5495.15,1.0105,56.27,1.0,56.27,78.15,78.15,0.0,50.8,1.0,50.8,78.15,78.15,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 -base-dhw-solar-fraction.xml,71.36,29.51,8.31,10.49,47.03,5.17,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149,144.76,8038.65,5495.15,1.0105,56.27,1.0,56.27,71.36,71.36,0.0,50.8,1.0,50.8,71.36,71.36,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 -base-dhw-solar-indirect-flat-plate.xml,69.54,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149,141.21,7841.31,5495.15,1.0105,56.27,1.0,56.27,69.54,69.54,0.0,50.8,1.0,50.8,69.54,69.54,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 -base-dhw-tank-elec-uef.xml,78.22,29.59,8.28,10.49,47.15,5.15,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302,152.71,8468.01,5486.95,1.0106,56.5,1.0,56.5,78.22,78.22,0.0,50.97,1.0,50.97,78.22,78.22,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 -base-dhw-tank-gas-uef.xml,78.17,28.95,8.52,10.49,46.13,5.27,17.66,37.56,5.05,14.75,21.28,0.0,0.0,0.23059,176.36,9783.13,5486.95,1.011,53.94,1.0,53.94,78.17,78.17,0.0,48.26,1.0,48.26,78.17,78.17,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 -base-dhw-tank-heat-pump-uef.xml,73.35,29.36,8.37,10.49,46.79,5.2,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183,156.55,8719.84,5512.62,1.0104,56.3,1.0,56.3,73.35,73.35,0.0,50.84,1.0,50.84,73.35,73.35,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 -base-dhw-tank-oil.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,189.83,10572.36,5512.62,1.0103,53.94,1.0,53.94,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tank-wood.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,,,,,53.94,1.0,53.94,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tankless-electric-uef.xml,78.59,29.51,8.31,10.49,47.03,5.17,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149,153.8,8540.76,5495.15,1.0105,56.4,1.0,56.4,78.59,78.59,0.0,50.91,1.0,50.91,78.59,78.59,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 -base-dhw-tankless-gas-uef.xml,71.89,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,9.66,21.28,0.0,0.0,0.22122,166.21,9229.64,5495.15,1.0105,53.94,1.0,53.94,71.89,71.89,0.0,48.26,1.0,48.26,71.89,71.89,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 -base-dhw-tankless-propane.xml,74.22,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,11.2,21.28,0.0,0.0,0.22122,176.43,9797.08,5495.15,1.0105,53.94,1.0,53.94,74.22,74.22,0.0,48.26,1.0,48.26,74.22,74.22,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 -base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,55.95,1.0,55.95,76.62,76.62,0.0,51.17,1.0,51.17,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 -base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,55.69,1.0,55.69,76.85,76.85,0.0,50.87,1.0,50.87,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 -base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,57.79,1.0,57.79,82.95,82.95,0.0,52.84,1.0,52.84,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 -base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.01,1.0,57.01,80.46,80.46,0.0,51.75,1.0,51.75,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 -base-enclosure-beds-4.xml,76.14,29.69,8.62,12.54,47.33,5.33,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142,143.88,8510.11,5764.99,1.026,55.48,1.0,55.48,76.14,76.14,0.0,49.81,1.0,49.81,76.14,76.14,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 -base-enclosure-beds-5.xml,74.22,29.88,8.93,14.54,47.62,5.5,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134,136.28,8550.2,6024.72,1.0414,54.7,1.0,54.7,74.22,74.22,0.0,48.86,1.0,48.86,74.22,74.22,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 -base-enclosure-ceilingtypes.xml,88.62,29.51,8.31,10.49,47.03,5.17,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078,187.74,10354.9,5495.15,1.0037,56.15,1.0,56.15,88.62,88.62,0.0,50.69,1.0,50.69,88.62,88.62,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 -base-enclosure-floortypes.xml,96.84,19.32,7.11,10.49,30.85,4.53,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149,208.3,9113.48,4132.16,1.0588,54.68,1.0,54.68,96.84,96.84,0.0,49.36,1.0,49.36,96.84,96.84,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 -base-enclosure-garage.xml,77.35,29.47,6.84,10.49,46.97,4.45,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149,156.84,8685.46,5479.85,1.0105,56.92,1.0,56.92,77.35,77.35,0.0,51.3,1.0,51.3,77.35,77.35,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 -base-enclosure-infil-ach-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm50.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-ela.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-ach.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-cfm.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-overhangs.xml,78.06,29.51,8.31,10.49,47.03,5.17,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149,153.15,8504.35,5495.15,1.0105,56.27,1.0,56.27,78.06,78.06,0.0,50.8,1.0,50.8,78.06,78.06,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-skylights.xml,78.7,29.51,8.31,10.49,47.03,5.17,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166,149.68,8303.87,5495.15,1.0096,56.27,1.0,56.27,78.7,78.7,0.0,50.8,1.0,50.8,78.7,78.7,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 -base-enclosure-walltypes.xml,92.23,29.48,8.3,10.49,46.97,5.16,11.53,57.75,4.06,9.03,21.28,0.0,0.0,-0.04335,204.24,11204.22,5497.0,0.9979,56.4,1.0,56.4,92.23,92.23,0.0,50.91,1.0,50.91,92.23,92.23,0.0,87.56,33.56,8.24,10.49,53.46,5.14,11.53,57.75,4.06,9.03,21.28,0.0,0.0,-0.04335 -base-foundation-ambient.xml,79.94,19.32,7.11,10.49,30.85,4.53,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149,141.21,6178.12,4132.16,1.0588,54.88,1.0,54.88,79.94,79.94,0.0,49.58,1.0,49.58,79.94,79.94,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 -base-foundation-basement-garage.xml,75.58,26.74,7.06,10.49,42.6,4.52,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149,143.2,7231.75,4880.55,1.0347,55.14,1.0,55.14,75.58,75.58,0.0,50.06,1.0,50.06,75.58,75.58,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 -base-foundation-conditioned-basement-slab-insulation.xml,77.66,29.51,8.31,10.49,47.03,5.17,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149,149.31,8291.22,5495.15,1.0105,56.27,1.0,56.27,77.66,77.66,0.0,50.8,1.0,50.8,77.66,77.66,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 -base-foundation-conditioned-basement-wall-insulation.xml,78.25,28.09,7.95,10.49,44.76,4.99,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149,151.65,8266.99,5394.52,1.0105,57.21,1.0,57.21,78.25,78.25,0.0,51.58,1.0,51.58,78.25,78.25,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 -base-foundation-multiple.xml,73.17,19.04,6.51,10.49,30.42,4.25,11.67,20.35,5.01,9.17,15.13,0.0,0.0,0.22149,122.77,5322.92,4094.86,1.0588,54.4,1.0,54.4,73.17,73.17,0.0,48.97,1.0,48.97,73.17,73.17,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.35,5.01,9.17,15.13,0.0,0.0,0.22149 -base-foundation-slab.xml,65.76,20.75,6.58,10.49,33.09,4.28,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149,106.43,4691.58,4163.06,1.0588,54.0,1.0,54.0,65.76,65.76,0.0,48.9,1.0,48.9,65.76,65.76,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-assembly-r.xml,70.72,18.96,6.69,10.49,30.29,4.34,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149,117.84,5109.04,4094.68,1.0588,53.83,1.0,53.83,70.72,70.72,0.0,48.45,1.0,48.45,70.72,70.72,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-wall-insulation.xml,77.59,18.96,6.69,10.49,30.29,4.34,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149,144.13,6249.01,4094.68,1.0588,53.83,1.0,53.83,77.59,77.59,0.0,48.45,1.0,48.45,77.59,77.59,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement.xml,73.45,18.96,6.69,10.49,30.29,4.34,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149,123.51,5354.81,4094.68,1.0588,53.83,1.0,53.83,73.45,73.45,0.0,48.45,1.0,48.45,73.45,73.45,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unvented-crawlspace.xml,71.43,17.55,7.45,10.49,28.04,4.71,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149,114.08,4900.05,4056.7,1.0588,55.63,1.0,55.63,71.43,71.43,0.0,50.26,1.0,50.26,71.43,71.43,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace-above-grade.xml,73.64,17.59,7.35,10.49,28.09,4.65,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149,120.75,5184.23,4054.81,1.0588,55.77,1.0,55.77,73.64,73.64,0.0,50.41,1.0,50.41,73.64,73.64,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace.xml,73.26,17.55,7.45,10.49,28.04,4.71,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149,120.77,5187.51,4056.7,1.0588,55.63,1.0,55.63,73.26,73.26,0.0,50.26,1.0,50.26,73.26,73.26,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 -base-foundation-walkout-basement.xml,79.74,33.11,9.36,10.49,52.77,5.71,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149,161.69,9291.36,5792.15,0.9921,55.85,1.0,55.85,79.74,79.74,0.0,50.98,1.0,50.98,79.74,79.74,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137,162.4,9134.41,5565.81,1.0105,69.64,1.0,69.64,84.35,84.35,0.0,60.55,1.0,60.55,84.35,84.35,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.62,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902,84.74,4836.86,5648.96,1.0104,55.79,1.0,55.79,85.62,85.62,0.0,50.13,1.0,50.13,85.62,85.62,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.07,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198,83.35,4628.32,5495.15,1.0105,53.04,1.0,53.04,84.07,84.07,0.0,47.28,1.0,47.28,84.07,84.07,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.05,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198,83.31,4626.14,5495.15,1.0105,53.04,1.0,53.04,84.05,84.05,0.0,47.28,1.0,47.28,84.05,84.05,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed.xml,83.82,29.51,8.31,10.49,22.05,4.36,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198,83.1,4614.03,5495.15,1.0105,53.04,1.0,53.04,83.82,83.82,0.0,47.28,1.0,47.28,83.82,83.82,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-2-speed.xml,72.33,29.51,8.31,10.49,22.05,4.36,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198,73.55,4083.89,5495.15,1.0105,53.04,1.0,53.04,72.33,72.33,0.0,47.28,1.0,47.28,72.33,72.33,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-var-speed.xml,72.1,29.51,8.31,10.49,22.05,4.22,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969,73.91,4096.58,5484.97,1.0105,53.11,1.0,53.11,72.1,72.1,0.0,47.34,1.0,47.34,72.1,72.1,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 -base-hvac-boiler-elec-only.xml,98.64,29.51,8.31,10.49,22.92,5.2,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902,96.73,5521.07,5648.96,1.0104,55.79,1.0,55.79,98.64,98.64,0.0,50.13,1.0,50.13,98.64,98.64,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-boiler-gas-only.xml,71.31,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,131.3,7498.58,5648.96,1.011,56.85,1.0,56.85,71.31,71.31,0.0,51.67,1.0,51.67,71.31,71.31,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-oil-only.xml,71.32,29.51,8.31,10.49,48.31,5.2,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058,157.92,9018.63,5648.96,1.011,56.85,1.0,56.85,71.32,71.32,0.0,51.67,1.0,51.67,71.32,71.32,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-propane-only.xml,71.3,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,148.2,8463.62,5648.96,1.011,56.85,1.0,56.85,71.3,71.3,0.0,51.67,1.0,51.67,71.3,71.3,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-central-ac-only-1-speed-seer2.xml,84.8,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185,161.59,9224.46,5648.96,1.0106,71.12,1.0,71.12,84.8,84.8,0.0,62.0,1.0,62.0,84.8,84.8,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-1-speed.xml,84.82,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185,161.6,9225.32,5648.96,1.0106,71.12,1.0,71.12,84.82,84.82,0.0,62.0,1.0,62.0,84.82,84.82,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-2-speed.xml,82.53,29.51,8.31,10.49,47.0,5.2,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185,160.21,9145.67,5648.96,1.0106,71.12,1.0,71.12,82.53,82.53,0.0,62.0,1.0,62.0,82.53,82.53,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-var-speed.xml,81.51,29.51,8.31,10.49,47.0,5.05,11.53,43.74,3.29,9.02,21.28,0.0,0.0,0.22172,159.75,9102.1,5638.15,1.0106,71.15,1.0,71.15,81.51,81.51,0.0,62.03,1.0,62.03,81.51,81.51,0.0,77.37,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.29,9.02,21.28,0.0,0.0,0.22172 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.18,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902,85.03,4853.47,5648.96,1.0104,54.64,1.0,54.64,86.18,86.18,0.0,48.88,1.0,48.88,86.18,86.18,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 -base-hvac-dse.xml,78.18,29.51,8.31,10.49,47.03,5.17,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149,150.0,8329.47,5495.15,1.0105,56.27,1.0,56.27,78.18,78.18,0.0,50.8,1.0,50.8,78.18,78.18,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.78,29.52,8.31,10.49,31.7,4.36,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195,109.48,6079.06,5495.15,1.0105,53.04,1.0,53.04,80.78,80.78,0.0,47.28,1.0,47.28,80.78,80.78,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.07,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935,120.03,6664.7,5495.15,1.0104,53.04,1.0,53.04,80.07,80.07,0.0,47.28,1.0,47.28,80.07,80.07,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 -base-hvac-ducts-buried.xml,75.28,29.51,8.31,10.49,47.03,5.17,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149,144.76,8038.85,5495.15,1.0105,56.27,1.0,56.27,75.28,75.28,0.0,50.8,1.0,50.8,75.28,75.28,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 -base-hvac-ducts-leakage-cfm50.xml,76.63,29.51,8.31,10.49,47.03,5.17,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149,148.39,8240.02,5495.15,1.0105,56.27,1.0,56.27,76.63,76.63,0.0,50.8,1.0,50.8,76.63,76.63,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 -base-hvac-elec-resistance-only.xml,94.64,29.51,8.31,10.49,22.92,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902,93.1,5314.07,5648.96,1.0104,55.79,1.0,55.79,94.64,94.64,0.0,50.13,1.0,50.13,94.64,94.64,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-evap-cooler-only-ducted.xml,75.9,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185,156.01,8905.79,5648.96,1.0106,71.12,1.0,71.12,75.9,75.9,0.0,62.0,1.0,62.0,75.9,75.9,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 -base-hvac-evap-cooler-only.xml,75.74,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185,155.91,8900.38,5648.96,1.0106,71.12,1.0,71.12,75.74,75.74,0.0,62.0,1.0,62.0,75.74,75.74,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 -base-hvac-fireplace-wood-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.42,1.0,57.42,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-floor-furnace-propane-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,156.54,8936.5,5648.96,1.0106,57.42,1.0,57.42,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-furnace-elec-only.xml,110.77,29.51,8.31,10.49,22.92,5.2,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902,108.25,6178.56,5648.96,1.0104,55.79,1.0,55.79,110.77,110.77,0.0,50.13,1.0,50.13,110.77,110.77,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-furnace-gas-only.xml,78.37,29.51,8.31,10.49,47.0,5.2,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185,150.09,8568.33,5648.96,1.0106,57.42,1.0,57.42,78.37,78.37,0.0,52.05,1.0,52.05,78.37,78.37,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.25,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137,161.91,9106.79,5565.81,1.0105,69.64,1.0,69.64,83.25,83.25,0.0,60.55,1.0,60.55,83.25,83.25,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.21,29.51,8.31,10.49,22.92,5.2,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902,70.95,4049.95,5648.96,1.0104,55.79,1.0,55.79,71.21,71.21,0.0,50.13,1.0,50.13,71.21,71.21,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-ground-to-air-heat-pump.xml,68.82,29.51,8.31,10.49,22.05,4.36,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198,69.44,3855.92,5495.15,1.0105,53.04,1.0,53.04,68.82,68.82,0.0,47.28,1.0,47.28,68.82,68.82,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.34,29.51,8.31,10.49,22.05,4.36,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198,82.08,4557.71,5495.15,1.0105,53.04,1.0,53.04,82.34,82.34,0.0,47.28,1.0,47.28,82.34,82.34,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.38,29.51,8.31,10.49,47.03,5.17,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149,152.46,8466.12,5495.15,1.0105,56.27,1.0,56.27,77.38,77.38,0.0,50.8,1.0,50.8,77.38,77.38,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 -base-hvac-install-quality-ground-to-air-heat-pump.xml,67.33,29.51,8.31,10.49,22.05,4.36,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198,68.43,3799.72,5495.15,1.0105,53.04,1.0,53.04,67.33,67.33,0.0,47.28,1.0,47.28,67.33,67.33,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.34,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185,158.88,9069.96,5648.96,1.0106,71.12,1.0,71.12,80.34,80.34,0.0,62.0,1.0,62.0,80.34,80.34,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.08,29.51,8.31,10.49,22.05,4.36,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198,69.29,3847.67,5495.15,1.0105,53.04,1.0,53.04,67.08,67.08,0.0,47.28,1.0,47.28,67.08,67.08,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-air-conditioner-only-ducted.xml,80.6,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185,159.03,9078.59,5648.96,1.0106,71.12,1.0,71.12,80.6,80.6,0.0,62.0,1.0,62.0,80.6,80.6,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-air-conditioner-only-ductless.xml,79.79,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185,158.55,9051.28,5648.96,1.0106,71.12,1.0,71.12,79.79,79.79,0.0,62.0,1.0,62.0,79.79,79.79,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.49,29.51,8.29,10.49,47.0,4.24,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137,159.96,8997.14,5565.81,1.0105,69.64,1.0,69.64,79.49,79.49,0.0,60.55,1.0,60.55,79.49,79.49,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.09,29.51,8.31,10.49,22.92,5.2,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902,72.03,4111.18,5648.96,1.0104,55.79,1.0,55.79,72.09,72.09,0.0,50.13,1.0,50.13,72.09,72.09,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-mini-split-heat-pump-ducted.xml,67.42,29.51,8.31,10.49,22.05,4.36,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198,69.57,3863.24,5495.15,1.0105,53.04,1.0,53.04,67.42,67.42,0.0,47.28,1.0,47.28,67.42,67.42,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-heat-pump-ductless.xml,62.42,29.51,8.31,10.49,22.05,4.36,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198,65.21,3620.81,5495.15,1.0105,53.04,1.0,53.04,62.42,62.42,0.0,47.28,1.0,47.28,62.42,62.42,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 -base-hvac-multiple.xml,95.49,29.5,8.31,10.49,35.480000000000004,7.12,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189,136.55,8482.63,6150.07,1.0101,55.28,1.0,55.28,95.49,95.49,0.0,50.64,1.0,50.64,95.49,95.49,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 -base-hvac-none.xml,90.0,0.0,42.92,5.18,0.0,23.98,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415,,,,,69.5,1.0,69.5,90.0,90.0,0.0,62.72,1.0,62.72,90.0,90.0,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 -base-hvac-programmable-thermostat.xml,75.25,29.51,8.31,10.49,47.03,5.17,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149,146.42,8130.61,5495.15,1.0105,56.27,1.0,56.27,75.25,75.25,0.0,50.8,1.0,50.8,75.25,75.25,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 -base-hvac-ptac-with-heating-electricity.xml,93.55,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006,92.75,5182.77,5529.74,1.0105,52.95,1.0,52.95,93.55,93.55,0.0,47.17,1.0,47.17,93.55,93.55,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 -base-hvac-ptac-with-heating-natural-gas.xml,72.35,29.51,8.31,10.49,47.0,5.68,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194,138.82,7757.36,5529.74,1.0106,56.21,1.0,56.21,72.35,72.35,0.0,50.75,1.0,50.75,72.35,72.35,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-ptac.xml,80.34,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194,158.06,9077.51,5683.08,1.0106,71.06,1.0,71.06,80.34,80.34,0.0,61.95,1.0,61.95,80.34,80.34,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-pthp.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,52.95,1.0,52.95,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-only-ceer.xml,81.88,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9135.33,5683.08,1.0106,71.06,1.0,71.06,81.88,81.88,0.0,61.95,1.0,61.95,81.88,81.88,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-only.xml,81.87,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9134.8,5683.08,1.0106,71.06,1.0,71.06,81.87,81.87,0.0,61.95,1.0,61.95,81.87,81.87,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-with-heating.xml,95.34,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006,93.78,5240.07,5529.74,1.0105,52.95,1.0,52.95,95.34,95.34,0.0,47.17,1.0,47.17,95.34,95.34,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-with-reverse-cycle.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,52.95,1.0,52.95,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-space-heater-gas-only.xml,68.36,29.51,8.31,10.49,47.0,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185,120.46,6876.48,5648.96,1.0106,57.42,1.0,57.42,68.36,68.36,0.0,52.05,1.0,52.05,68.36,68.36,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-stove-wood-pellets-only.xml,76.25,29.51,8.31,10.49,47.0,5.2,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.42,1.0,57.42,76.25,76.25,0.0,52.05,1.0,52.05,76.25,76.25,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-undersized.xml,73.37,29.51,8.31,10.49,47.03,5.17,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149,139.53,7748.01,5495.15,1.0105,56.27,1.0,56.27,73.37,73.37,0.0,50.8,1.0,50.8,73.37,73.37,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 -base-hvac-wall-furnace-elec-only.xml,95.58,29.51,8.31,10.49,22.92,5.2,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902,93.99,5364.75,5648.96,1.0104,55.79,1.0,55.79,95.58,95.58,0.0,50.13,1.0,50.13,95.58,95.58,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 -base-lighting-ceiling-fans.xml,77.88,29.5,8.0,10.49,47.0,5.01,11.52,38.52,4.67,9.02,21.8,0.0,0.0,0.21919,151.51,8495.16,5548.98,1.0104,56.3,1.0,56.3,77.88,77.88,0.0,50.88,1.0,50.88,77.88,77.88,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 -base-location-baltimore-md.xml,68.24,20.19,10.68,9.61,32.31,6.71,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306,70.99,8820.06,11579.58,1.073,51.22,1.0,51.22,68.24,68.24,0.0,48.89,1.0,48.89,68.24,68.24,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 -base-location-capetown-zaf.xml,78.8,3.94,4.59,8.35,6.31,2.51,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223,,,,,50.45,1.0,50.45,78.8,78.8,0.0,48.27,1.0,48.27,78.8,78.8,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 -base-location-dallas-tx.xml,67.1,9.39,26.65,7.53,15.05,15.84,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332,70.54,5711.56,7545.78,1.0731,46.9,1.0,46.9,67.1,67.1,0.0,44.08,1.0,44.08,67.1,67.1,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 -base-location-duluth-mn.xml,71.85,44.99,1.76,13.08,71.67,1.98,14.52,57.05,2.38,11.43,15.13,0.0,0.0,0.25692,156.07,10524.16,6310.8,1.0686,54.0,1.0,54.0,71.85,71.85,0.0,47.1,1.0,47.1,71.85,71.85,0.0,67.5,50.07,1.61,13.08,79.77,1.92,14.52,57.05,2.38,11.43,15.13,0.0,0.0,0.25692 -base-location-helena-mt.xml,77.59,48.36,3.58,11.9,77.03,2.64,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296,199.29,11626.97,5772.96,1.0106,57.67,1.0,57.67,77.59,77.59,0.0,51.0,1.0,51.0,77.59,77.59,0.0,72.29,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 -base-location-honolulu-hi.xml,79.2,0.0,42.93,5.18,0.0,23.77,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335,,,,,62.46,1.0,62.46,79.2,79.2,0.0,41.38,1.0,41.38,79.2,79.2,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 -base-location-miami-fl.xml,75.69,0.05,41.23,5.34,0.08,24.09,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399,75.32,5834.28,7348.59,1.0541,63.28,1.0,63.28,75.69,75.69,0.0,43.36,1.0,43.36,75.69,75.69,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 -base-location-phoenix-az.xml,70.04,1.23,51.89,5.61,1.96,29.4,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826,70.31,4738.53,6265.71,1.0757,48.87,1.0,48.87,70.04,70.04,0.0,44.49,1.0,44.49,70.04,70.04,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 -base-location-portland-or.xml,74.86,12.85,3.42,9.98,20.58,2.47,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847,132.01,3966.72,2862.1,1.0498,66.24,1.0,66.24,74.86,74.86,0.0,50.01,1.0,50.01,74.86,74.86,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 -base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.27,1.0,56.27,82.2,82.2,0.0,50.8,1.0,50.8,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-airflow-fraction-zero.xml,78.87,29.25,8.42,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.89,8439.57,5571.66,1.0105,56.27,1.0,56.27,78.87,78.87,0.0,50.8,1.0,50.8,78.87,78.87,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.54,29.25,8.42,10.49,46.61,5.22,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149,143.04,8053.88,5571.66,1.0105,56.27,1.0,56.27,75.54,75.54,0.0,50.8,1.0,50.8,75.54,75.54,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 -base-mechvent-cfis.xml,79.78,29.25,8.42,10.49,46.61,5.22,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149,153.13,8622.06,5571.66,1.0105,56.27,1.0,56.27,79.78,79.78,0.0,50.8,1.0,50.8,79.78,79.78,0.0,75.79,33.33,8.36,10.49,53.09,5.2,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149 -base-mechvent-erv-atre-asre.xml,71.15,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149,124.05,7095.97,5660.33,1.0105,56.27,1.0,56.27,71.15,71.15,0.0,50.8,1.0,50.8,71.15,71.15,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-erv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149,124.06,7096.46,5660.33,1.0105,56.27,1.0,56.27,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-exhaust.xml,78.11,29.25,8.42,10.49,46.61,5.22,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149,150.81,8491.37,5571.66,1.0105,56.27,1.0,56.27,78.11,78.11,0.0,50.8,1.0,50.8,78.11,78.11,0.0,74.2,33.33,8.36,10.49,53.09,5.2,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149,124.05,7095.83,5660.33,1.0105,56.27,1.0,56.27,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.27,1.0,56.27,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-multiple.xml,81.93,29.06,8.5,10.49,46.32,6.16,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163,160.53,9204.91,5674.07,1.0106,57.02,1.0,57.02,81.93,81.93,0.0,51.55,1.0,51.55,81.93,81.93,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 -base-mechvent-supply.xml,77.85,29.25,8.42,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.3,8406.48,5571.66,1.0105,56.27,1.0,56.27,77.85,77.85,0.0,50.8,1.0,50.8,77.85,77.85,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-whole-house-fan.xml,76.48,29.51,8.31,10.49,47.03,5.17,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149,151.87,8433.6,5495.15,1.0105,56.27,1.0,56.27,76.48,76.48,0.0,50.8,1.0,50.8,76.48,76.48,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 -base-misc-generators.xml,76.33,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,192.73,10702.6,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-pv.xml,37.1,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,119.79,6652.11,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-appliances-dehumidifier-ief-portable.xml,66.92,9.33,26.8,7.53,14.89,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332,70.31,5715.81,7575.66,1.0731,48.17,1.0,48.17,66.92,66.92,0.0,46.6,1.0,46.6,66.92,66.92,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 +base-appliances-dehumidifier-ief-whole-home.xml,66.91,9.33,26.79,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332,70.3,5715.51,7576.38,1.0731,48.25,1.0,48.25,66.91,66.91,0.0,46.81,1.0,46.81,66.91,66.91,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 +base-appliances-dehumidifier-multiple.xml,66.91,9.37,26.82,7.53,14.91,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332,70.32,5715.43,7573.95,1.0731,48.02,1.0,48.02,66.91,66.91,0.0,46.25,1.0,46.25,66.91,66.91,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-dehumidifier.xml,66.9,9.33,26.8,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332,70.29,5714.36,7575.66,1.0731,48.17,1.0,48.17,66.9,66.9,0.0,46.6,1.0,46.6,66.9,66.9,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-gas.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,160.0,8882.55,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-modified.xml,79.23,29.51,8.31,10.49,47.03,5.17,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149,153.62,8530.54,5495.15,1.0105,56.77,1.0,56.77,79.23,79.23,0.0,51.03,1.0,51.03,79.23,79.23,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 +base-appliances-none.xml,80.28,29.51,8.31,10.49,47.03,5.17,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149,154.47,8578.12,5495.15,1.0105,56.51,1.0,56.51,80.28,80.28,0.0,50.8,1.0,50.8,80.28,80.28,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 +base-appliances-oil.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,164.26,9119.04,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-propane.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,162.67,9030.96,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-wood.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,,,,,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-atticroof-cathedral.xml,71.87,32.31,8.49,10.49,51.46,5.18,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844,137.53,7901.41,5691.51,1.0094,55.97,1.0,55.97,71.87,71.87,0.0,51.23,1.0,51.23,71.87,71.87,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 +base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.38,1.0,57.38,74.48,74.48,0.0,51.31,1.0,51.31,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 +base-atticroof-flat.xml,71.37,29.29,8.56,10.49,46.65,5.24,11.52,32.1,3.91,9.02,21.28,0.0,0.0,0.19801,134.61,7461.88,5491.72,1.0094,56.48,1.0,56.48,71.37,71.37,0.0,50.79,1.0,50.79,71.37,71.37,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 +base-atticroof-radiant-barrier.xml,72.95,9.39,26.65,7.53,15.05,15.84,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811,78.77,6304.3,7545.78,1.0606,46.94,1.0,46.94,72.95,72.95,0.0,44.1,1.0,44.1,72.95,72.95,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 +base-atticroof-unvented-insulated-roof.xml,74.09,29.51,8.31,10.49,47.03,5.17,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867,142.76,7914.63,5495.15,1.0089,56.51,1.0,56.51,74.09,74.09,0.0,50.8,1.0,50.8,74.09,74.09,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 +base-atticroof-vented.xml,76.42,30.04,8.11,10.49,47.87,5.07,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173,150.14,8416.16,5547.13,1.0106,57.26,1.0,57.26,76.42,76.42,0.0,51.7,1.0,51.7,76.42,76.42,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,73.45,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.19336,109.52,3626.8,3076.07,1.0765,71.15,1.0,71.15,73.45,73.45,0.0,60.33,1.0,60.33,73.45,73.45,0.0,70.74,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.22983 +base-bldgtype-mf-unit-location-portland-or.xml,71.84,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.16404,78.63,2227.55,2661.18,1.0646,65.68,1.0,65.68,71.84,71.84,0.0,52.67,1.0,52.67,71.84,71.84,0.0,70.14,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.19715 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,70.53,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.20242,78.41,2572.23,3036.78,1.0802,62.76,1.0,62.76,70.53,70.53,0.0,52.54,1.0,52.54,70.53,70.53,0.0,68.05,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.23817 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.81,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.20242,79.22,2598.87,3036.78,1.0802,62.92,1.0,62.92,70.81,70.81,0.0,52.64,1.0,52.64,70.81,70.81,0.0,68.32,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.23817 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.57,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.20242,78.33,2569.58,3036.78,1.0802,62.92,1.0,62.92,70.57,70.57,0.0,52.64,1.0,52.64,70.57,70.57,0.0,68.09,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.23817 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,70.01,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.19909,76.0,2489.93,3036.78,1.0789,61.7,1.0,61.7,70.01,71.48,0.0,52.12,1.0,52.12,70.01,71.48,0.0,67.59,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.23395 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.78,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.19374,81.73,2672.41,3036.78,1.0767,68.23,1.0,68.23,69.78,69.78,0.0,53.58,1.0,53.58,69.78,69.78,0.0,67.33,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.23023 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.7,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.19374,82.91,2710.95,3036.78,1.0767,68.73,1.0,68.73,71.7,71.7,0.0,54.05,1.0,54.05,71.7,71.7,0.0,69.17,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.23023 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,70.36,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.19374,82.08,2683.72,3036.78,1.0767,68.73,1.0,68.73,70.36,70.36,0.0,54.05,1.0,54.05,70.36,70.36,0.0,67.88,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.23023 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,81.09,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.19374,88.54,2894.79,3036.78,1.0767,72.05,1.0,72.05,81.09,81.09,0.0,57.15,1.0,57.15,81.09,81.09,0.0,78.18,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.23023 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,71.29,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.19374,82.66,2702.85,3036.78,1.0767,68.36,1.0,68.36,71.29,71.29,0.0,53.7,1.0,53.7,71.29,71.29,0.0,68.77,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.23023 +base-bldgtype-mf-unit-shared-generator.xml,65.56,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,140.0,4437.89,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,63.25,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,77.14,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.19322,73.32,2324.06,2944.68,1.0765,67.92,1.0,67.92,77.14,77.14,0.0,57.97,1.0,57.97,77.14,77.14,0.0,74.67,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.22719 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,67.5,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.19314,120.8,3836.06,2950.08,1.0764,54.33,1.0,54.33,67.5,67.5,0.0,45.76,1.0,45.76,67.5,67.5,0.0,65.14,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.22953 +base-bldgtype-mf-unit-shared-laundry-room.xml,64.39,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.19314,112.08,3558.78,2949.68,1.0764,54.33,1.0,54.33,64.39,64.39,0.0,45.76,1.0,45.76,64.39,64.39,0.0,62.15,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.22953 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,75.18,5.25,6.06,10.49,8.39,3.92,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.19336,90.36,2903.59,2984.78,1.0765,61.1,1.0,61.1,75.18,75.18,0.0,50.81,1.0,50.81,75.18,75.18,0.0,72.28,6.14,5.96,10.49,9.82,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.22983 +base-bldgtype-mf-unit-shared-mechvent.xml,70.26,5.25,6.06,10.49,8.39,3.92,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.19336,79.36,2550.1,2984.78,1.0765,61.1,1.0,61.1,70.26,70.26,0.0,50.81,1.0,50.81,70.26,70.26,0.0,67.93,6.14,5.96,10.49,9.82,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.22983 +base-bldgtype-mf-unit-shared-pv.xml,6.0,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,25.67,813.67,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,62.1,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,66.08,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.19314,114.69,3635.34,2944.68,1.0764,55.15,1.0,55.15,66.08,66.08,0.0,46.56,1.0,46.56,66.08,66.08,0.0,63.81,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.22953 +base-bldgtype-mf-unit-shared-water-heater.xml,64.54,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.19314,111.91,3547.12,2944.68,1.0764,54.26,1.0,54.26,64.54,64.54,0.0,45.8,1.0,45.8,64.54,64.54,0.0,62.33,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.22953 +base-bldgtype-mf-unit.xml,67.99,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,78.52,2489.05,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,65.59,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 +base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.43,1.0,56.43,76.14,76.14,0.0,51.03,1.0,51.03,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 +base-dhw-combi-tankless.xml,64.49,28.79,8.58,10.49,47.16,5.33,18.31,32.17,4.64,10.29,21.28,0.0,0.0,0.23006,146.05,8340.47,5648.96,1.011,55.08,1.0,55.08,64.49,64.49,0.0,49.53,1.0,49.53,64.49,64.49,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 +base-dhw-desuperheater.xml,83.18,29.51,8.31,10.49,47.0,5.2,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185,160.23,9146.86,5648.96,1.0106,71.49,1.0,71.49,83.18,83.18,0.0,62.0,1.0,62.0,83.18,83.18,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 +base-dhw-dwhr.xml,75.5,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149,149.25,8287.82,5495.15,1.0105,56.51,1.0,56.51,75.5,75.5,0.0,50.8,1.0,50.8,75.5,75.5,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 +base-dhw-indirect-standbyloss.xml,68.34,28.71,8.61,10.49,47.04,5.35,18.65,30.49,4.92,14.07,21.28,0.0,0.0,0.22512,151.38,8668.97,5665.98,1.0107,55.08,1.0,55.08,68.34,68.34,0.0,49.53,1.0,49.53,68.34,68.34,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 +base-dhw-jacket-gas.xml,78.34,28.71,8.61,10.49,45.75,5.31,18.65,37.69,5.04,14.23,21.28,0.0,0.0,0.21632,174.62,9725.04,5512.62,1.0103,54.17,1.0,54.17,78.34,78.34,0.0,48.26,1.0,48.26,78.34,78.34,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 +base-dhw-jacket-hpwh.xml,74.23,29.04,8.49,10.49,46.27,5.25,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148,154.72,8672.64,5549.67,1.0101,56.81,1.0,56.81,74.23,74.23,0.0,51.07,1.0,51.07,74.23,74.23,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 +base-dhw-jacket-indirect.xml,67.25,28.71,8.61,10.49,47.04,5.35,18.65,30.97,4.84,13.1,21.28,0.0,0.0,0.22512,150.02,8591.33,5665.98,1.0107,55.08,1.0,55.08,67.25,67.25,0.0,49.53,1.0,49.53,67.25,67.25,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 +base-dhw-low-flow-fixtures.xml,77.94,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149,152.21,8452.36,5495.15,1.0105,56.51,1.0,56.51,77.94,77.94,0.0,50.8,1.0,50.8,77.94,77.94,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 +base-dhw-multiple.xml,67.49,29.51,8.31,10.5,48.31,5.2,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306,130.34,7444.44,5649.43,1.011,61.5,1.0,61.5,67.49,67.49,0.0,55.83,1.0,55.83,67.49,67.49,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 +base-dhw-none.xml,82.56,28.79,8.58,10.49,45.88,5.3,18.31,37.17,5.11,18.31,22.38,0.0,0.0,0.22122,186.22,10340.75,5495.15,1.0105,61.46,1.0,61.46,82.56,82.56,0.0,56.36,1.0,56.36,82.56,82.56,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 +base-dhw-recirc-demand.xml,78.15,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149,152.45,8465.52,5495.15,1.0105,56.51,1.0,56.51,78.15,78.15,0.0,50.8,1.0,50.8,78.15,78.15,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 +base-dhw-solar-fraction.xml,71.36,29.51,8.31,10.49,47.03,5.17,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149,144.76,8038.65,5495.15,1.0105,56.51,1.0,56.51,71.36,71.36,0.0,50.8,1.0,50.8,71.36,71.36,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 +base-dhw-solar-indirect-flat-plate.xml,69.54,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149,141.21,7841.31,5495.15,1.0105,56.51,1.0,56.51,69.54,69.54,0.0,50.8,1.0,50.8,69.54,69.54,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 +base-dhw-tank-elec-uef.xml,78.22,29.59,8.28,10.49,47.15,5.15,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302,152.71,8468.01,5486.95,1.0106,56.73,1.0,56.73,78.22,78.22,0.0,50.97,1.0,50.97,78.22,78.22,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 +base-dhw-tank-gas-uef.xml,78.17,28.95,8.52,10.49,46.13,5.27,17.66,37.56,5.05,14.75,21.28,0.0,0.0,0.23059,176.36,9783.13,5486.95,1.011,54.17,1.0,54.17,78.17,78.17,0.0,48.26,1.0,48.26,78.17,78.17,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 +base-dhw-tank-heat-pump-uef.xml,73.35,29.36,8.37,10.49,46.79,5.2,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183,156.55,8719.84,5512.62,1.0104,56.53,1.0,56.53,73.35,73.35,0.0,50.84,1.0,50.84,73.35,73.35,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 +base-dhw-tank-oil.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,189.83,10572.36,5512.62,1.0103,54.17,1.0,54.17,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tank-wood.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,,,,,54.17,1.0,54.17,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tankless-electric-uef.xml,78.59,29.51,8.31,10.49,47.03,5.17,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149,153.8,8540.76,5495.15,1.0105,56.64,1.0,56.64,78.59,78.59,0.0,50.91,1.0,50.91,78.59,78.59,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 +base-dhw-tankless-gas-uef.xml,71.89,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,9.66,21.28,0.0,0.0,0.22122,166.21,9229.64,5495.15,1.0105,54.17,1.0,54.17,71.89,71.89,0.0,48.26,1.0,48.26,71.89,71.89,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 +base-dhw-tankless-propane.xml,74.22,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,11.2,21.28,0.0,0.0,0.22122,176.43,9797.08,5495.15,1.0105,54.17,1.0,54.17,74.22,74.22,0.0,48.26,1.0,48.26,74.22,74.22,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 +base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,56.39,1.0,56.39,76.62,76.62,0.0,51.17,1.0,51.17,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 +base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,56.2,1.0,56.2,76.85,76.85,0.0,50.87,1.0,50.87,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 +base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,58.11,1.0,58.11,82.95,82.95,0.0,52.84,1.0,52.84,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 +base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.28,1.0,57.28,80.46,80.46,0.0,51.75,1.0,51.75,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 +base-enclosure-beds-4.xml,76.14,29.69,8.62,12.54,47.33,5.33,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142,143.88,8510.11,5764.99,1.026,55.68,1.0,55.68,76.14,76.14,0.0,49.81,1.0,49.81,76.14,76.14,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 +base-enclosure-beds-5.xml,74.22,29.88,8.93,14.54,47.62,5.5,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134,136.28,8550.2,6024.65,1.0414,54.87,1.0,54.87,74.22,74.22,0.0,48.86,1.0,48.86,74.22,74.22,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 +base-enclosure-ceilingtypes.xml,88.62,29.51,8.31,10.49,47.03,5.17,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078,187.74,10354.9,5495.15,1.0037,56.39,1.0,56.39,88.62,88.62,0.0,50.69,1.0,50.69,88.62,88.62,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 +base-enclosure-floortypes.xml,96.84,19.32,7.11,10.49,30.85,4.53,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149,208.3,9113.48,4132.16,1.0588,54.77,1.0,54.77,96.84,96.84,0.0,49.36,1.0,49.36,96.84,96.84,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 +base-enclosure-garage.xml,77.35,29.47,6.84,10.49,46.97,4.45,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149,156.84,8685.46,5479.85,1.0105,57.15,1.0,57.15,77.35,77.35,0.0,51.3,1.0,51.3,77.35,77.35,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 +base-enclosure-infil-ach-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm50.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-ela.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-ach.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-cfm.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-overhangs.xml,78.06,29.51,8.31,10.49,47.03,5.17,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149,153.15,8504.35,5495.15,1.0105,56.51,1.0,56.51,78.06,78.06,0.0,50.8,1.0,50.8,78.06,78.06,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-skylights.xml,78.7,29.51,8.31,10.49,47.03,5.17,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166,149.68,8303.87,5495.15,1.0096,56.51,1.0,56.51,78.7,78.7,0.0,50.8,1.0,50.8,78.7,78.7,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 +base-enclosure-walltypes.xml,92.09,29.48,8.3,10.49,46.97,5.16,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335,204.13,11198.2,5497.0,0.9979,56.62,1.0,56.62,92.09,92.09,0.0,50.91,1.0,50.91,92.09,92.09,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 +base-foundation-ambient.xml,79.94,19.32,7.11,10.49,30.85,4.53,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149,141.21,6178.12,4132.16,1.0588,54.97,1.0,54.97,79.94,79.94,0.0,49.58,1.0,49.58,79.94,79.94,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 +base-foundation-basement-garage.xml,75.58,26.74,7.06,10.49,42.6,4.52,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149,143.2,7231.75,4880.55,1.0347,55.29,1.0,55.29,75.58,75.58,0.0,50.06,1.0,50.06,75.58,75.58,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 +base-foundation-conditioned-basement-slab-insulation.xml,77.66,29.51,8.31,10.49,47.03,5.17,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149,149.31,8291.22,5495.15,1.0105,56.51,1.0,56.51,77.66,77.66,0.0,50.8,1.0,50.8,77.66,77.66,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 +base-foundation-conditioned-basement-wall-insulation.xml,78.25,28.09,7.95,10.49,44.76,4.99,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149,151.65,8266.99,5394.52,1.0105,57.45,1.0,57.45,78.25,78.25,0.0,51.58,1.0,51.58,78.25,78.25,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 +base-foundation-multiple.xml,73.18,19.04,6.51,10.49,30.42,4.25,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149,122.78,5323.37,4094.86,1.0588,54.49,1.0,54.49,73.18,73.18,0.0,48.97,1.0,48.97,73.18,73.18,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 +base-foundation-slab.xml,65.76,20.75,6.58,10.49,33.09,4.28,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149,106.43,4691.57,4163.06,1.0588,54.08,1.0,54.08,65.76,65.76,0.0,48.9,1.0,48.9,65.76,65.76,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-assembly-r.xml,70.72,18.96,6.69,10.49,30.29,4.34,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149,117.84,5109.04,4094.68,1.0588,53.91,1.0,53.91,70.72,70.72,0.0,48.45,1.0,48.45,70.72,70.72,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-wall-insulation.xml,77.59,18.96,6.69,10.49,30.29,4.34,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149,144.13,6249.01,4094.68,1.0588,53.91,1.0,53.91,77.59,77.59,0.0,48.45,1.0,48.45,77.59,77.59,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement.xml,73.45,18.96,6.69,10.49,30.29,4.34,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149,123.49,5354.2,4094.68,1.0588,53.91,1.0,53.91,73.45,73.45,0.0,48.45,1.0,48.45,73.45,73.45,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unvented-crawlspace.xml,71.43,17.55,7.45,10.49,28.04,4.71,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149,114.08,4900.05,4056.7,1.0588,55.71,1.0,55.71,71.43,71.43,0.0,50.26,1.0,50.26,71.43,71.43,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace-above-grade.xml,73.64,17.59,7.35,10.49,28.09,4.65,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149,120.75,5184.23,4054.81,1.0588,55.86,1.0,55.86,73.64,73.64,0.0,50.41,1.0,50.41,73.64,73.64,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace.xml,73.26,17.55,7.45,10.49,28.04,4.71,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149,120.77,5187.51,4056.7,1.0588,55.71,1.0,55.71,73.26,73.26,0.0,50.26,1.0,50.26,73.26,73.26,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 +base-foundation-walkout-basement.xml,79.74,33.11,9.36,10.49,52.77,5.71,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149,161.69,9291.36,5792.15,0.9921,56.2,1.0,56.2,79.74,79.74,0.0,50.98,1.0,50.98,79.74,79.74,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137,162.4,9134.41,5565.81,1.0105,70.01,1.0,70.01,84.35,84.35,0.0,60.55,1.0,60.55,84.35,84.35,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.62,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902,84.74,4836.86,5648.96,1.0104,56.0,1.0,56.0,85.62,85.62,0.0,50.13,1.0,50.13,85.62,85.62,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.07,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198,83.35,4628.32,5495.15,1.0105,53.22,1.0,53.22,84.07,84.07,0.0,47.28,1.0,47.28,84.07,84.07,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.05,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198,83.31,4626.14,5495.15,1.0105,53.22,1.0,53.22,84.05,84.05,0.0,47.28,1.0,47.28,84.05,84.05,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed.xml,83.82,29.51,8.31,10.49,22.05,4.36,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198,83.1,4614.03,5495.15,1.0105,53.22,1.0,53.22,83.82,83.82,0.0,47.28,1.0,47.28,83.82,83.82,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-2-speed.xml,72.33,29.51,8.31,10.49,22.05,4.36,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198,73.55,4083.89,5495.15,1.0105,53.22,1.0,53.22,72.33,72.33,0.0,47.28,1.0,47.28,72.33,72.33,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-var-speed.xml,72.1,29.51,8.31,10.49,22.05,4.22,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969,73.91,4096.58,5484.97,1.0105,53.29,1.0,53.29,72.1,72.1,0.0,47.34,1.0,47.34,72.1,72.1,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 +base-hvac-boiler-elec-only.xml,98.64,29.51,8.31,10.49,22.92,5.2,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902,96.73,5521.07,5648.96,1.0104,56.0,1.0,56.0,98.64,98.64,0.0,50.13,1.0,50.13,98.64,98.64,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-boiler-gas-only.xml,71.31,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,131.3,7498.58,5648.96,1.011,57.08,1.0,57.08,71.31,71.31,0.0,51.67,1.0,51.67,71.31,71.31,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-oil-only.xml,71.32,29.51,8.31,10.49,48.31,5.2,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058,157.92,9018.63,5648.96,1.011,57.08,1.0,57.08,71.32,71.32,0.0,51.67,1.0,51.67,71.32,71.32,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-propane-only.xml,71.3,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,148.2,8463.62,5648.96,1.011,57.08,1.0,57.08,71.3,71.3,0.0,51.67,1.0,51.67,71.3,71.3,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-central-ac-only-1-speed-seer2.xml,84.8,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185,161.59,9224.46,5648.96,1.0106,71.49,1.0,71.49,84.8,84.8,0.0,62.0,1.0,62.0,84.8,84.8,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-1-speed.xml,84.82,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185,161.6,9225.32,5648.96,1.0106,71.49,1.0,71.49,84.82,84.82,0.0,62.0,1.0,62.0,84.82,84.82,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-2-speed.xml,82.53,29.51,8.31,10.49,47.0,5.2,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185,160.21,9145.67,5648.96,1.0106,71.49,1.0,71.49,82.53,82.53,0.0,62.0,1.0,62.0,82.53,82.53,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-var-speed.xml,81.48,29.51,8.31,10.49,47.0,5.05,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172,159.73,9101.14,5638.15,1.0106,71.52,1.0,71.52,81.48,81.48,0.0,62.03,1.0,62.03,81.48,81.48,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.18,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902,85.03,4853.47,5648.96,1.0104,54.85,1.0,54.85,86.18,86.18,0.0,48.88,1.0,48.88,86.18,86.18,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 +base-hvac-dse.xml,78.18,29.51,8.31,10.49,47.03,5.17,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149,150.0,8329.47,5495.15,1.0105,56.5,1.0,56.5,78.18,78.18,0.0,50.8,1.0,50.8,78.18,78.18,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.78,29.52,8.31,10.49,31.7,4.36,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195,109.48,6079.06,5495.15,1.0105,53.22,1.0,53.22,80.78,80.78,0.0,47.28,1.0,47.28,80.78,80.78,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.07,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935,120.03,6664.7,5495.15,1.0104,53.22,1.0,53.22,80.07,80.07,0.0,47.28,1.0,47.28,80.07,80.07,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 +base-hvac-ducts-buried.xml,75.28,29.51,8.31,10.49,47.03,5.17,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149,144.76,8038.85,5495.15,1.0105,56.51,1.0,56.51,75.28,75.28,0.0,50.8,1.0,50.8,75.28,75.28,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 +base-hvac-ducts-leakage-cfm50.xml,76.63,29.51,8.31,10.49,47.03,5.17,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149,148.39,8240.02,5495.15,1.0105,56.51,1.0,56.51,76.63,76.63,0.0,50.8,1.0,50.8,76.63,76.63,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 +base-hvac-elec-resistance-only.xml,94.64,29.51,8.31,10.49,22.92,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902,93.1,5314.07,5648.96,1.0104,56.0,1.0,56.0,94.64,94.64,0.0,50.13,1.0,50.13,94.64,94.64,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-evap-cooler-only-ducted.xml,75.9,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185,156.01,8905.79,5648.96,1.0106,71.49,1.0,71.49,75.9,75.9,0.0,62.0,1.0,62.0,75.9,75.9,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 +base-hvac-evap-cooler-only.xml,75.74,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185,155.91,8900.38,5648.96,1.0106,71.49,1.0,71.49,75.74,75.74,0.0,62.0,1.0,62.0,75.74,75.74,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 +base-hvac-fireplace-wood-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.65,1.0,57.65,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-floor-furnace-propane-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,156.54,8936.5,5648.96,1.0106,57.65,1.0,57.65,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-furnace-elec-only.xml,110.77,29.51,8.31,10.49,22.92,5.2,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902,108.25,6178.56,5648.96,1.0104,56.0,1.0,56.0,110.77,110.77,0.0,50.13,1.0,50.13,110.77,110.77,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-furnace-gas-only.xml,78.37,29.51,8.31,10.49,47.0,5.2,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185,150.09,8568.33,5648.96,1.0106,57.65,1.0,57.65,78.37,78.37,0.0,52.05,1.0,52.05,78.37,78.37,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.25,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137,161.91,9106.79,5565.81,1.0105,70.01,1.0,70.01,83.25,83.25,0.0,60.55,1.0,60.55,83.25,83.25,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.21,29.51,8.31,10.49,22.92,5.2,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902,70.95,4049.95,5648.96,1.0104,56.0,1.0,56.0,71.21,71.21,0.0,50.13,1.0,50.13,71.21,71.21,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-ground-to-air-heat-pump.xml,68.82,29.51,8.31,10.49,22.05,4.36,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198,69.44,3855.92,5495.15,1.0105,53.22,1.0,53.22,68.82,68.82,0.0,47.28,1.0,47.28,68.82,68.82,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.34,29.51,8.31,10.49,22.05,4.36,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198,82.08,4557.71,5495.15,1.0105,53.22,1.0,53.22,82.34,82.34,0.0,47.28,1.0,47.28,82.34,82.34,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.38,29.51,8.31,10.49,47.03,5.17,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149,152.46,8466.12,5495.15,1.0105,56.51,1.0,56.51,77.38,77.38,0.0,50.8,1.0,50.8,77.38,77.38,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 +base-hvac-install-quality-ground-to-air-heat-pump.xml,67.33,29.51,8.31,10.49,22.05,4.36,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198,68.43,3799.72,5495.15,1.0105,53.22,1.0,53.22,67.33,67.33,0.0,47.28,1.0,47.28,67.33,67.33,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.34,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185,158.88,9069.91,5648.96,1.0106,71.49,1.0,71.49,80.34,80.34,0.0,62.0,1.0,62.0,80.34,80.34,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.08,29.51,8.31,10.49,22.05,4.36,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198,69.29,3847.67,5495.15,1.0105,53.22,1.0,53.22,67.08,67.08,0.0,47.28,1.0,47.28,67.08,67.08,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-air-conditioner-only-ducted.xml,80.6,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185,159.03,9078.55,5648.96,1.0106,71.49,1.0,71.49,80.6,80.6,0.0,62.0,1.0,62.0,80.6,80.6,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-air-conditioner-only-ductless.xml,79.79,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185,158.55,9051.28,5648.96,1.0106,71.49,1.0,71.49,79.79,79.79,0.0,62.0,1.0,62.0,79.79,79.79,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.49,29.51,8.29,10.49,47.0,4.24,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137,159.96,8997.14,5565.81,1.0105,70.01,1.0,70.01,79.49,79.49,0.0,60.55,1.0,60.55,79.49,79.49,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.09,29.51,8.31,10.49,22.92,5.2,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902,72.03,4111.18,5648.96,1.0104,56.0,1.0,56.0,72.09,72.09,0.0,50.13,1.0,50.13,72.09,72.09,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-mini-split-heat-pump-ducted.xml,67.42,29.51,8.31,10.49,22.05,4.36,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198,69.57,3863.24,5495.15,1.0105,53.22,1.0,53.22,67.42,67.42,0.0,47.28,1.0,47.28,67.42,67.42,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-heat-pump-ductless.xml,62.42,29.51,8.31,10.49,22.05,4.36,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198,65.21,3620.81,5495.15,1.0105,53.22,1.0,53.22,62.42,62.42,0.0,47.28,1.0,47.28,62.42,62.42,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 +base-hvac-multiple.xml,95.49,29.5,8.31,10.49,35.480000000000004,7.12,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189,136.55,8482.63,6150.07,1.0101,55.48,1.0,55.48,95.49,95.49,0.0,50.64,1.0,50.64,95.49,95.49,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 +base-hvac-none.xml,90.0,0.0,42.92,5.18,0.0,23.98,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415,,,,,69.6,1.0,69.6,90.0,90.0,0.0,62.74,1.0,62.74,90.0,90.0,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 +base-hvac-programmable-thermostat.xml,75.25,29.51,8.31,10.49,47.03,5.17,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149,146.42,8130.61,5495.15,1.0105,56.51,1.0,56.51,75.25,75.25,0.0,50.8,1.0,50.8,75.25,75.25,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 +base-hvac-ptac-with-heating-electricity.xml,93.55,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006,92.75,5182.77,5529.74,1.0105,53.13,1.0,53.13,93.55,93.55,0.0,47.17,1.0,47.17,93.55,93.55,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 +base-hvac-ptac-with-heating-natural-gas.xml,72.35,29.51,8.31,10.49,47.0,5.68,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194,138.82,7757.36,5529.74,1.0106,56.44,1.0,56.44,72.35,72.35,0.0,50.75,1.0,50.75,72.35,72.35,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-ptac.xml,80.34,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194,158.06,9077.51,5683.08,1.0106,71.43,1.0,71.43,80.34,80.34,0.0,61.95,1.0,61.95,80.34,80.34,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-pthp.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,53.13,1.0,53.13,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-only-ceer.xml,81.88,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9135.33,5683.08,1.0106,71.43,1.0,71.43,81.88,81.88,0.0,61.95,1.0,61.95,81.88,81.88,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-only.xml,81.87,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9134.8,5683.08,1.0106,71.43,1.0,71.43,81.87,81.87,0.0,61.95,1.0,61.95,81.87,81.87,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-with-heating.xml,95.34,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006,93.78,5240.07,5529.74,1.0105,53.13,1.0,53.13,95.34,95.34,0.0,47.17,1.0,47.17,95.34,95.34,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-with-reverse-cycle.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,53.13,1.0,53.13,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-space-heater-gas-only.xml,68.36,29.51,8.31,10.49,47.0,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185,120.46,6876.48,5648.96,1.0106,57.65,1.0,57.65,68.36,68.36,0.0,52.05,1.0,52.05,68.36,68.36,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-stove-wood-pellets-only.xml,76.25,29.51,8.31,10.49,47.0,5.2,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.65,1.0,57.65,76.25,76.25,0.0,52.05,1.0,52.05,76.25,76.25,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-undersized.xml,73.37,29.51,8.31,10.49,47.03,5.17,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149,139.53,7748.01,5495.15,1.0105,56.51,1.0,56.51,73.37,73.37,0.0,50.8,1.0,50.8,73.37,73.37,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 +base-hvac-wall-furnace-elec-only.xml,95.58,29.51,8.31,10.49,22.92,5.2,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902,93.99,5364.75,5648.96,1.0104,56.0,1.0,56.0,95.58,95.58,0.0,50.13,1.0,50.13,95.58,95.58,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 +base-lighting-ceiling-fans.xml,77.88,29.5,8.0,10.49,47.0,5.01,11.52,38.52,4.67,9.02,21.8,0.0,0.0,0.21919,151.51,8495.16,5548.98,1.0104,56.53,1.0,56.53,77.88,77.88,0.0,50.88,1.0,50.88,77.88,77.88,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 +base-location-baltimore-md.xml,68.24,20.19,10.68,9.61,32.31,6.71,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306,70.99,8820.06,11579.58,1.073,51.29,1.0,51.29,68.24,68.24,0.0,48.91,1.0,48.91,68.24,68.24,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 +base-location-capetown-zaf.xml,78.8,3.94,4.59,8.35,6.31,2.51,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223,,,,,50.48,1.0,50.48,78.8,78.8,0.0,48.28,1.0,48.28,78.8,78.8,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 +base-location-dallas-tx.xml,67.1,9.39,26.65,7.53,15.05,15.84,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332,70.54,5711.56,7545.78,1.0731,46.94,1.0,46.94,67.1,67.1,0.0,44.1,1.0,44.1,67.1,67.1,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 +base-location-duluth-mn.xml,71.86,44.99,1.76,13.08,71.67,1.98,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692,156.08,10525.35,6310.8,1.0686,54.17,1.0,54.17,71.86,71.86,0.0,47.1,1.0,47.1,71.86,71.86,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 +base-location-helena-mt.xml,77.6,48.36,3.58,11.9,77.03,2.64,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296,199.29,11627.03,5772.96,1.0106,57.98,1.0,57.98,77.6,77.6,0.0,51.0,1.0,51.0,77.6,77.6,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 +base-location-honolulu-hi.xml,79.2,0.0,42.93,5.18,0.0,23.77,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335,,,,,62.57,1.0,62.57,79.2,79.2,0.0,41.39,1.0,41.39,79.2,79.2,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 +base-location-miami-fl.xml,75.69,0.05,41.23,5.34,0.08,24.09,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399,75.32,5834.28,7348.59,1.0541,63.34,1.0,63.34,75.69,75.69,0.0,43.37,1.0,43.37,75.69,75.69,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 +base-location-phoenix-az.xml,70.04,1.23,51.89,5.61,1.96,29.4,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826,70.31,4738.53,6265.71,1.0757,48.88,1.0,48.88,70.04,70.04,0.0,44.5,1.0,44.5,70.04,70.04,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 +base-location-portland-or.xml,74.85,12.85,3.42,9.98,20.58,2.47,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847,132.0,3966.42,2862.1,1.0498,66.31,1.0,66.31,74.85,74.85,0.0,50.01,1.0,50.01,74.85,74.85,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 +base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.51,1.0,56.51,82.2,82.2,0.0,50.8,1.0,50.8,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-cfis-airflow-fraction-zero.xml,78.85,29.25,8.43,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.85,8439.57,5573.33,1.0105,56.51,1.0,56.51,78.85,78.85,0.0,50.8,1.0,50.8,78.85,78.85,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-cfis-supplemental-fan-exhaust.xml,75.9,29.25,8.43,10.49,46.61,5.22,11.53,35.86,4.9,9.02,21.28,0.5,0.0,0.22149,144.33,8128.72,5573.33,1.0105,56.51,1.0,56.51,75.9,75.9,0.0,50.8,1.0,50.8,75.9,75.9,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 +base-mechvent-cfis.xml,79.76,29.25,8.43,10.49,46.61,5.22,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149,153.09,8622.06,5573.33,1.0105,56.51,1.0,56.51,79.76,79.76,0.0,50.8,1.0,50.8,79.76,79.76,0.0,75.79,33.33,8.36,10.49,53.09,5.2,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149 +base-mechvent-erv-atre-asre.xml,71.15,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149,124.05,7095.97,5660.33,1.0105,56.51,1.0,56.51,71.15,71.15,0.0,50.8,1.0,50.8,71.15,71.15,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-erv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149,124.06,7096.46,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-exhaust.xml,78.09,29.25,8.43,10.49,46.61,5.22,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149,150.77,8491.37,5573.33,1.0105,56.51,1.0,56.51,78.09,78.09,0.0,50.8,1.0,50.8,78.09,78.09,0.0,74.2,33.33,8.36,10.49,53.09,5.2,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149 +base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149,124.05,7095.83,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-multiple.xml,82.61,29.06,8.52,10.49,46.31,6.16,11.53,42.72,5.86,9.03,21.28,1.49,0.0,0.22163,162.64,9331.67,5677.62,1.0106,57.25,1.0,57.25,82.61,82.61,0.0,51.55,1.0,51.55,82.61,82.61,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 +base-mechvent-supply.xml,77.83,29.25,8.43,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.26,8406.48,5573.33,1.0105,56.51,1.0,56.51,77.83,77.83,0.0,50.8,1.0,50.8,77.83,77.83,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 +base-mechvent-whole-house-fan.xml,76.48,29.51,8.31,10.49,47.03,5.17,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149,151.87,8433.6,5495.15,1.0105,56.51,1.0,56.51,76.48,76.48,0.0,50.8,1.0,50.8,76.48,76.48,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 +base-misc-generators.xml,76.33,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,192.73,10702.6,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-pv.xml,37.1,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,119.79,6652.11,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 base-version-co2-2019ABCD.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022C.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -187,4 +187,4 @@ base-version-eri-2022C.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.0 base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.82,30.81,8.32,10.39,49.02,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.38,33.54,8.27,10.39,53.36,4.32,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.27,1.0,56.27,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 From 1ae692261ad838e4670f8dea3f0dae726412a26a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 9 Jan 2024 17:29:44 -0700 Subject: [PATCH 06/35] Bugfix, cleanup. Remove global infil variables. --- rulesets/resources/301ruleset.rb | 129 +++++++++++++---------------- rulesets/tests/test_ventilation.rb | 38 +++------ 2 files changed, 70 insertions(+), 97 deletions(-) diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index f129cfabb..f50cd3bfc 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -73,7 +73,7 @@ def self.apply_reference_home_ruleset(orig_hpxml, iecc_version: nil, is_all_elec set_enclosure_windows_reference(orig_bldg, new_bldg) set_enclosure_skylights_reference(orig_bldg, new_bldg) set_enclosure_doors_reference(orig_bldg, new_bldg) - set_enclosure_air_infiltration_reference(new_bldg) + set_enclosure_air_infiltration_reference(orig_bldg, new_bldg) # Systems set_systems_hvac_reference(orig_bldg, new_bldg, is_all_electric: is_all_electric) @@ -276,7 +276,6 @@ def self.set_summary_reference(orig_bldg, new_bldg) @nbeds = orig_bldg.building_construction.number_of_bedrooms @ncfl = orig_bldg.building_construction.number_of_conditioned_floors @ncfl_ag = orig_bldg.building_construction.number_of_conditioned_floors_above_grade - _sla, _ach50, _nach, @infil_volume, @infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) new_bldg.site.fuels = orig_bldg.site.fuels new_bldg.site.site_type = HPXML::SiteTypeSuburban @@ -296,7 +295,6 @@ def self.set_summary_rated(orig_bldg, new_bldg) @nbeds = orig_bldg.building_construction.number_of_bedrooms @ncfl = orig_bldg.building_construction.number_of_conditioned_floors @ncfl_ag = orig_bldg.building_construction.number_of_conditioned_floors_above_grade - _sla, _ach50, _nach, @infil_volume, @infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) new_bldg.site.fuels = orig_bldg.site.fuels new_bldg.site.site_type = HPXML::SiteTypeSuburban @@ -316,7 +314,6 @@ def self.set_summary_iad(orig_bldg, new_bldg) @nbeds = 3 @ncfl = 2.0 @ncfl_ag = 2.0 - @infil_volume = 20400.0 new_bldg.site.fuels = orig_bldg.site.fuels new_bldg.site.site_type = HPXML::SiteTypeSuburban @@ -341,53 +338,37 @@ def self.set_climate(orig_bldg, new_bldg) @is_southern_hemisphere = (@weather.header.Latitude < 0) end - def self.set_enclosure_air_infiltration_reference(new_bldg) - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022C') - @infil_a_ext = 1.0 - else - @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) - end - + def self.set_enclosure_air_infiltration_reference(orig_bldg, new_bldg) + _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) sla = 0.00036 - ach50 = Airflow.get_infiltration_ACH50_from_SLA(sla, 0.65, @cfa, @infil_volume) + ach50 = Airflow.get_infiltration_ACH50_from_SLA(sla, 0.65, @cfa, infil_volume) new_bldg.air_infiltration_measurements.add(id: 'Infiltration_ACH50', house_pressure: 50, unit_of_measure: HPXML::UnitsACH, air_leakage: ach50.round(2), - infiltration_volume: @infil_volume, - infiltration_height: @infil_height, + infiltration_volume: infil_volume, + infiltration_height: infil_height, infiltration_type: HPXML::InfiltrationTypeUnitExterior, - a_ext: @infil_a_ext.round(3)) + a_ext: 1.0) end def self.set_enclosure_air_infiltration_rated(orig_bldg, new_bldg) - @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) - - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') - if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type - _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - cfm50 = ach50 * @infil_volume / 60.0 - tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() - if cfm50 / tot_cb_area > 0.30 - @infil_a_ext = 1.0 - end - end - end - - ach50 = calc_rated_home_infiltration_ach50(orig_bldg) + _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + a_ext = calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) + ach50 = calc_rated_home_infiltration_ach50(orig_bldg, a_ext) new_bldg.air_infiltration_measurements.add(id: 'AirInfiltrationMeasurement', house_pressure: 50, unit_of_measure: HPXML::UnitsACH, air_leakage: ach50.round(2), - infiltration_volume: @infil_volume, - infiltration_height: @infil_height, + infiltration_volume: infil_volume, + infiltration_height: infil_height, infiltration_type: HPXML::InfiltrationTypeUnitExterior, - a_ext: @infil_a_ext.round(3)) + a_ext: a_ext.round(3)) end def self.set_enclosure_air_infiltration_iad(new_bldg) - @infil_height = new_bldg.inferred_infiltration_height(@infil_volume) - @infil_a_ext = calc_mech_vent_Aext_ratio(new_bldg) + infil_volume = 20400 + infil_height = new_bldg.inferred_infiltration_height(infil_volume) if ['1A', '1B', '1C', '2A', '2B', '2C'].include? @iecc_zone ach50 = 5.0 @@ -398,10 +379,10 @@ def self.set_enclosure_air_infiltration_iad(new_bldg) house_pressure: 50, unit_of_measure: HPXML::UnitsACH, air_leakage: ach50, - infiltration_volume: @infil_volume, - infiltration_height: @infil_height, + infiltration_volume: infil_volume, + infiltration_height: infil_height, infiltration_type: HPXML::InfiltrationTypeUnitExterior, - a_ext: @infil_a_ext.round(3)) + a_ext: 1.0) end def self.set_enclosure_attics_reference(orig_bldg, new_bldg) @@ -1475,7 +1456,8 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ q_fan_airflow = (0.01 * @cfa) + (7.5 * (@nbeds + 1)) else q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) - q_fan_airflow = calc_mech_vent_q_fan(q_tot, ref_sla, true, 0.0) # cfm for airflow + infil_height = new_bldg.air_infiltration_measurements[0].infiltration_height + q_fan_airflow = calc_mech_vent_qfan(q_tot, ref_sla, true, 0.0, 1.0, infil_height) # cfm for airflow end mech_vent_fans = orig_bldg.ventilation_fans.select { |f| f.used_for_whole_building_ventilation } @@ -1646,15 +1628,9 @@ def self.set_systems_mechanical_ventilation_iad(new_bldg) q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) # Calculate fan cfm - sla = nil - new_bldg.air_infiltration_measurements.each do |new_infil_measurement| - next unless (new_infil_measurement.unit_of_measure == HPXML::UnitsACH) && (new_infil_measurement.house_pressure == 50) - - ach50 = new_infil_measurement.air_leakage - sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, @infil_volume) - break - end - q_fan = calc_mech_vent_q_fan(q_tot, sla, true, 0.0) + _sla, ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(new_bldg, @cfa, @weather) + sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, infil_volume) + q_fan = calc_mech_vent_qfan(q_tot, sla, true, 0.0, 1.0, infil_height) fan_power_w = 0.70 * q_fan new_bldg.ventilation_fans.add(id: 'MechanicalVentilation', @@ -2461,10 +2437,9 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) return q_fans end - def self.calc_rated_home_infiltration_ach50(orig_bldg) - _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - - ach50 *= @infil_a_ext + def self.calc_rated_home_infiltration_ach50(orig_bldg, a_ext) + _sla, ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + ach50 *= a_ext # Apply min Natural ACH? min_nach = nil @@ -2474,15 +2449,15 @@ def self.calc_rated_home_infiltration_ach50(orig_bldg) elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') has_non_exhaust_systems = (mech_vent_fans.select { |f| f.fan_type != HPXML::MechVentTypeExhaust }.size > 0) mech_vent_fans.each do |orig_vent_fan| - if orig_vent_fan.flow_rate_not_tested || ((@infil_a_ext < 0.5) && !has_non_exhaust_systems) + if orig_vent_fan.flow_rate_not_tested || ((a_ext < 0.5) && !has_non_exhaust_systems) min_nach = 0.30 end end end if not min_nach.nil? - min_sla = Airflow.get_infiltration_SLA_from_ACH(min_nach, @infil_height, @weather) - min_ach50 = Airflow.get_infiltration_ACH50_from_SLA(min_sla, 0.65, @cfa, @infil_volume) + min_sla = Airflow.get_infiltration_SLA_from_ACH(min_nach, infil_height, @weather) + min_ach50 = Airflow.get_infiltration_ACH50_from_SLA(min_sla, 0.65, @cfa, infil_volume) if ach50 < min_ach50 ach50 = min_ach50 end @@ -2548,31 +2523,45 @@ def self.get_mech_vent_imbal_properties(mech_vent_fans) return is_balanced, frac_imbal end + def self.calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) + if @bldg_type == HPXML::ResidentialTypeSFD + return 1.0 + end + + tot_cb_area, ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + a_ext = ext_cb_area / tot_cb_area + + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type + _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + cfm50 = ach50 * infil_volume / 60.0 + tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + if cfm50 / tot_cb_area > 0.30 + a_ext = 1.0 + end + end + end + + return a_ext + end + def self.calc_rated_home_qfan(orig_bldg, is_balanced, frac_imbal) - ach50 = calc_rated_home_infiltration_ach50(orig_bldg) - sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, @infil_volume) + _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + a_ext = calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) + ach50 = calc_rated_home_infiltration_ach50(orig_bldg, a_ext) + sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, infil_volume) q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) - q_fan = calc_mech_vent_q_fan(q_tot, sla, is_balanced, frac_imbal) + q_fan = calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, a_ext, infil_height) return q_fan end - def self.calc_mech_vent_q_fan(q_tot, sla, is_balanced, frac_imbal) - nl = Airflow.get_infiltration_NL_from_SLA(sla, @infil_height) + def self.calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, a_ext, infil_height) + nl = Airflow.get_infiltration_NL_from_SLA(sla, infil_height) q_inf = Airflow.get_infiltration_Qinf_from_NL(nl, @weather, @cfa) - q_fan = Airflow.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, @infil_a_ext, @bldg_type, @eri_version, nil) + q_fan = Airflow.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, @bldg_type, @eri_version, nil) return q_fan end - def self.calc_mech_vent_Aext_ratio(orig_bldg) - if @bldg_type == HPXML::ResidentialTypeSFD - return 1.0 - end - - tot_cb_area, ext_cb_area = orig_bldg.compartmentalization_boundary_areas() - - return ext_cb_area / tot_cb_area - end - def self.get_new_distribution_id(orig_bldg, new_bldg) i = 0 while true diff --git a/rulesets/tests/test_ventilation.rb b/rulesets/tests/test_ventilation.rb index 43c010073..d92ac9e3c 100644 --- a/rulesets/tests/test_ventilation.rb +++ b/rulesets/tests/test_ventilation.rb @@ -63,25 +63,9 @@ def test_mech_vent_attached_or_multifamily elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg) elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) - elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) - end - end - - # Test w/ 301-2019 - hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') - - _all_calc_types.each do |calc_type| - _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) - if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 50.6, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy - elsif [Constants.CalcTypeERIRatedHome].include? calc_type - _check_mech_vent(hpxml_bldg) - elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 32.3, hours: 24, power: 55.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) end end @@ -989,14 +973,14 @@ def test_mech_vent_shared _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 17.3 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.9 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) end end @@ -1005,14 +989,14 @@ def test_mech_vent_shared _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 50.6, hours: 24, power: 19.7 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.7 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 70.6, hours: 24, power: 49.4 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 32.3, hours: 24, power: 55.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) end end end @@ -1034,7 +1018,7 @@ def test_mech_vent_shared_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 17.3 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.9 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -1059,7 +1043,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.5 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -1086,7 +1070,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate_and_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.5 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) From 1fd01b1c5395ff178b7dd541fa7ba547dd7ee92e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jan 2024 02:30:54 +0000 Subject: [PATCH 07/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 18 ++++---- workflow/tests/base_results/real_homes.csv | 28 ++++++------- workflow/tests/base_results/sample_files.csv | 44 ++++++++++---------- 3 files changed, 45 insertions(+), 45 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 1b201273b..88b0476f0 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,13 +1,13 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.31,67.31 -[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,75.13,75.13 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,77.42,77.42 -[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.21,62.21 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.85,64.85 -[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,63.38,63.38 -[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.62,51.62 -[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.71,49.71 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,64.04,64.04 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.07,67.07 +[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.97,74.97 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,76.78,76.78 +[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.11,62.11 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.45,64.45 +[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,63.23,63.23 +[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.43,51.43 +[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.61,49.61 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,63.5,63.5 [SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.02,73.02 [SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.25,81.25 [SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.3,71.3 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 3e3d097b9..0f9c9bdaf 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,15 +1,15 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -house001.xml,63.39,9.09,2.02,6.49,14.53,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.19095,71.92,5785.85,7594.67,1.0592,59.11,1.0,59.11,63.39,63.39,0.0,48.42,1.0,48.42,63.39,63.39,0.0,59.83,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.23338 +house001.xml,62.86,9.08,2.02,6.49,14.51,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.21448,71.32,5785.85,7605.33,1.0667,58.48,1.0,58.48,62.86,62.86,0.0,47.34,1.0,47.34,62.86,62.86,0.0,60.17,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21448 house002.xml,74.57,51.51,21.17,9.54,41.6,12.18,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462,75.61,13121.97,17649.0,0.9834,50.67,1.0,50.67,74.57,74.57,0.0,48.26,1.0,48.26,74.57,74.57,0.0,69.17,59.81,21.26,9.54,48.17,12.71,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462 -house003.xml,62.77,27.310000000000002,21.75,8.83,30.62,12.45,16.04,18.97,6.86,7.24,22.14,1.19,0.0,0.24283,73.9,9376.08,12782.0,0.9925,49.07,1.0,49.07,62.77,62.77,0.0,47.15,1.0,47.15,62.77,62.77,0.0,59.5,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.72,6.85,7.24,22.14,1.14,0.0,0.24283 +house003.xml,62.75,27.3,21.76,8.83,30.61,12.45,16.04,18.97,6.86,7.24,22.14,1.19,0.0,0.24283,73.88,9376.08,12786.32,0.9925,49.05,1.0,49.05,62.75,62.75,0.0,47.12,1.0,47.12,62.75,62.75,0.0,59.5,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.72,6.85,7.24,22.14,1.14,0.0,0.24283 house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,56.17,1.0,56.17,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 -house005.xml,61.43,4.76,3.99,5.79,4.16,2.28,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,84.89,2687.5,2937.29,1.0778,50.04,1.0,50.04,61.43,61.43,0.0,46.24,1.0,46.24,61.43,61.43,0.0,58.42,5.54,4.01,5.79,4.72,2.34,12.13,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 +house005.xml,60.19,4.63,4.09,5.79,4.08,2.33,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,83.14,2687.5,2999.31,1.0778,50.04,1.0,50.04,60.19,60.19,0.0,45.45,1.0,45.45,60.19,60.19,0.0,58.42,5.54,4.01,5.79,4.72,2.34,12.13,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 house006.xml,71.4,31.58,20.72,10.54,23.74,12.02,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395,72.73,10094.8,13623.99,1.0188,45.67,1.0,45.67,71.4,71.4,0.0,43.8,1.0,43.8,71.4,71.4,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 -house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,49.49,1.0,49.49,77.04,77.04,0.0,73.9,17.58,4.49,8.85,14.92,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 +house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,48.79,1.0,48.79,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 house008.xml,62.72,96.27,10.33,13.22,153.4,6.79,22.26,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.42,24257.2,33975.74,0.9724,51.34,1.0,51.34,62.72,62.72,0.0,46.37,1.0,46.37,62.72,62.72,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 house009.xml,62.21,19.29,42.09,8.99,30.91,25.18,16.38,16.78,13.53,12.35,23.29,0.64,0.0,0.28642,84.89,9976.47,11470.79,1.0245,48.51,1.0,48.51,62.21,62.21,0.0,45.45,1.0,45.45,62.21,62.21,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.52,1.0,48.52,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,62.04,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.24264,79.39,3440.31,4080.5,1.062,57.18,1.0,57.18,62.04,62.04,0.0,53.52,1.0,53.52,62.04,62.04,0.0,59.51,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.27513 +house011.xml,61.74,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26259,79.0,3440.31,4080.5,1.0673,56.67,1.0,56.67,61.74,61.74,0.0,53.11,1.0,53.11,61.74,61.74,0.0,59.69,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26259 house012.xml,52.09,34.67,2.59,11.63,29.51,1.47,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688,53.17,5525.34,9931.01,1.0463,51.68,1.0,51.68,52.09,52.09,1.0,44.07,1.0,44.07,52.09,52.09,0.0,48.05,40.72,2.44,11.63,34.43,1.45,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688 house013.xml,58.87,12.03,1.85,10.35,8.85,0.88,11.96,6.61,0.18,3.38,13.97,0.66,0.0,0.16792,57.5,1700.72,2805.93,1.0542,52.81,1.0,52.81,58.87,58.87,0.0,47.6,1.0,47.6,58.87,58.87,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,48.05,1.0,48.05,54.98,54.98,0.0,45.72,1.0,45.72,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 @@ -38,19 +38,19 @@ house036.xml,67.96,60.62,8.64,8.66,96.7,5.91,15.95,66.61,3.14,9.12,27.96,2.37,0. house037.xml,66.92,63.84,6.69,13.22,101.87,4.86,14.55,69.19,2.89,10.99,21.25,0.42,0.0,0.19298,78.12,19037.66,24109.56,1.0107,52.73,1.0,52.73,66.92,66.92,0.0,47.78,1.0,47.78,66.92,66.92,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 house038.xml,64.68,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.759999999999998,11.940000000000001,12.25,27.65,0.92,0.0,0.26786,72.94,13801.57,19459.29,0.9724,47.09,1.0,47.09,64.68,64.68,0.0,45.07,1.0,45.07,64.68,64.68,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.61,11058.09,0.9975,53.95,1.0,53.95,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 -house040.xml,63.71,123.78,12.18,11.07,197.29,7.91,19.46,110.5,8.89,15.32,32.38,2.19,0.0,0.18417,74.9,28996.13,40455.67,0.957,52.94,1.0,52.94,63.71,63.71,0.0,49.83,1.0,49.83,63.71,63.71,0.0,58.9,139.5,11.9,11.07,222.28,7.7,19.47,110.5,8.89,15.32,32.38,2.19,0.0,0.18417 +house040.xml,63.58,123.63,12.23,11.07,197.05,7.94,19.46,110.5,8.89,15.32,32.38,2.19,0.0,0.18417,74.69,28996.13,40565.52,0.957,52.92,1.0,52.92,63.58,63.58,0.0,49.75,1.0,49.75,63.58,63.58,0.0,58.9,139.5,11.9,11.07,222.28,7.7,19.47,110.5,8.89,15.32,32.38,2.19,0.0,0.18417 house041.xml,77.69,24.75,8.16,12.54,39.48,5.2,20.94,27.24,3.89,20.39,23.5,0.0,0.0,0.13022,170.64,9245.97,5294.1,1.0235,52.71,1.0,52.71,77.69,77.69,0.0,46.6,1.0,46.6,77.69,77.69,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 house042.xml,87.15,49.11,21.04,11.39,78.44,12.99,19.74,76.46,9.92,15.57,27.23,0.0,0.0,0.21961,112.81,20258.12,18000.96,0.9976,49.74,1.0,49.74,87.15,87.15,0.0,46.7,1.0,46.7,87.15,87.15,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 -house043.xml,-8.69,12.18,5.33,10.49,9.82,2.8,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3965.98,1.035,53.67,1.0,53.67,40.5,40.5,1.0,48.87,1.0,48.87,40.5,40.5,1.0,35.59,16.33,5.24,10.49,12.71,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 -house044.xml,69.14,18.71,3.36,6.35,29.88,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.1,7589.41,9337.78,1.0541,52.4,1.0,52.4,69.14,69.14,0.0,48.7,1.0,48.7,69.14,69.14,0.0,67.03,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 +house043.xml,-8.66,12.14,5.35,10.49,9.8,2.81,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3977.37,1.035,53.59,1.0,53.59,40.39,40.39,1.0,48.31,1.0,48.31,40.39,40.39,1.0,35.59,16.33,5.24,10.49,12.71,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 +house044.xml,69.12,18.7,3.36,6.35,29.87,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.08,7589.41,9341.05,1.0541,52.39,1.0,52.39,69.12,69.12,0.0,48.63,1.0,48.63,69.12,69.12,0.0,67.03,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 house045.xml,88.94,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001,100.18,25297.81,26306.02,0.96,49.32,1.0,49.32,88.94,88.94,0.0,45.51,1.0,45.51,88.94,88.94,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 house046.xml,-4.7,74.24,12.05,12.94,61.78,6.78,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812,9.34,2613.32,28117.48,0.9951,49.94,1.0,49.94,37.03,37.03,1.0,43.97,1.0,43.97,37.03,37.03,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 house047.xml,63.58,31.57,8.97,10.49,50.29,5.55,11.81,44.22,2.29,2.71,21.15,0.37,0.0,0.20941,168.44,10324.13,6103.19,1.0043,58.16,1.0,58.16,63.58,63.58,0.0,52.87,1.0,52.87,63.58,63.58,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 house048.xml,65.99,1.74,66.18,5.61,2.79,37.96,10.95,0.62,25.32,7.59,19.73,0.79,0.0,0.3336,82.63,6709.33,7678.16,1.0575,50.57,1.0,50.57,65.99,65.99,0.0,46.01,1.0,46.01,65.99,65.99,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 house049.xml,52.49,13.25,3.11,7.98,9.75,1.59,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328,90.14,2575.24,2717.62,1.0513,49.08,1.0,49.08,52.49,52.49,0.0,44.25,1.0,44.25,52.49,52.49,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 house050.xml,87.17,20.22,4.93,11.92,32.23,3.23,21.36,14.61,2.8,15.61,22.99,14.05,0.0,0.1657,176.1,7329.31,4096.47,1.016,55.55,1.0,55.55,87.17,87.17,0.0,50.31,1.0,50.31,87.17,87.17,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 -house051.xml,55.45,10.5,2.82,9.98,8.02,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.29,2716.29,2874.32,1.0239,51.79,1.0,51.79,55.45,55.45,0.0,47.18,1.0,47.18,55.45,55.45,0.0,52.94,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 -house052.xml,59.11,12.31,1.71,10.35,9.04,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.7,1785.27,2826.25,1.0581,53.38,1.0,53.38,59.11,59.11,0.0,48.51,1.0,48.51,59.11,59.11,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 +house051.xml,55.36,10.48,2.82,9.98,8.0,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.15,2716.29,2878.92,1.0239,51.73,1.0,51.73,55.36,55.36,0.0,46.73,1.0,46.73,55.36,55.36,0.0,52.94,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 +house052.xml,59.08,12.31,1.71,10.35,9.03,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.67,1785.27,2827.52,1.0581,53.36,1.0,53.36,59.08,59.08,0.0,48.36,1.0,48.36,59.08,59.08,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 house053.xml,70.94,20.36,4.77,11.92,32.46,3.16,21.32,21.16,2.02,14.94,22.57,0.96,0.0,0.16633,175.03,7240.7,4066.51,1.0173,55.4,1.0,55.4,70.94,70.94,0.0,50.18,1.0,50.18,70.94,70.94,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 house054.xml,62.17,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.69,43.620000000000005,6.47,28.18,1.52,0.0,0.33458,71.29,9742.93,13364.6,1.0226,49.65,1.0,49.65,62.17,62.17,0.0,44.99,1.0,44.99,62.17,62.17,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 house055.xml,63.35,1.76,65.51,5.61,2.82,37.48,10.68,1.21,24.25,5.91,18.6,1.03,0.0,0.33869,75.68,6123.88,7633.91,1.06,48.76,1.0,48.76,63.35,63.35,0.0,44.32,1.0,44.32,63.35,63.35,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 @@ -59,8 +59,8 @@ house057.xml,82.68,17.86,4.12,9.98,28.47,2.82,11.54,16.12,2.93,3.24,19.13,12.04, house058.xml,64.48,3.14,82.82,6.7,5.03,47.9,12.51,1.6,29.31,10.89,21.41,0.99,0.0,0.33359,79.35,7798.01,9707.3,1.0124,50.47,1.0,50.47,64.48,64.48,0.0,45.84,1.0,45.84,64.48,64.48,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 house059.xml,55.68,7.23,2.94,7.98,5.69,1.48,15.03,2.72,0.45,6.95,14.27,0.13,0.0,0.1901,105.15,2426.76,2150.04,1.0734,50.65,1.0,50.65,55.68,55.68,0.0,46.45,1.0,46.45,55.68,55.68,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 house060.xml,69.74,30.94,33.66,11.51,49.52,20.259999999999998,19.93,38.8,11.84,13.8,27.47,0.0,0.0,0.23113,87.03,15130.83,17200.83,1.0107,49.65,1.0,49.65,69.74,69.74,0.0,46.07,1.0,46.07,69.74,69.74,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 -house061.xml,66.9,4.56,3.06,5.79,7.27,1.78,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.18253,93.97,2933.83,2950.35,1.0583,62.89,1.0,62.89,66.9,66.9,0.0,53.03,1.0,53.03,66.9,66.9,0.0,63.72,5.55,3.01,5.79,8.86,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.22056 -house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.7,1.0,49.7,74.3,74.3,0.0,46.15,1.0,46.15,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 +house061.xml,66.16,4.53,3.08,5.79,7.23,1.79,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.20512,92.91,2933.83,2962.99,1.0657,62.2,1.0,62.2,66.16,66.16,0.0,51.67,1.0,51.67,66.16,66.16,0.0,64.02,5.55,3.01,5.79,8.86,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20512 +house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.61,1.0,49.61,74.3,74.3,0.0,46.09,1.0,46.09,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 house063.xml,77.83,16.03,40.12,6.02,25.67,23.63,12.48,21.79,15.83,9.48,20.91,4.23,0.0,0.25386,104.51,10777.22,10255.08,1.0056,48.88,1.0,48.88,77.83,77.83,0.0,46.1,1.0,46.1,77.83,77.83,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 house064.xml,70.44,14.03,32.39,6.02,22.48,19.15,12.18,17.09,12.27,8.4,16.88,2.42,0.0,0.27504,95.85,8514.99,8539.93,1.0402,53.48,1.0,53.48,70.44,70.44,0.0,50.28,1.0,50.28,70.44,70.44,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 house065.xml,76.06,15.85,42.08,8.99,25.39,25.35,16.33,23.05,16.23,12.28,24.39,4.77,0.0,0.25282,102.08,12019.78,11372.24,1.0354,47.62,1.0,47.62,76.06,76.06,0.0,44.93,1.0,44.93,76.06,76.06,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 @@ -74,8 +74,8 @@ house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.4 house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,50.07,1.0,50.07,54.01,54.01,0.0,47.26,1.0,47.26,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 house074.xml,72.27,14.0,33.43,7.53,10.24,19.53,8.68,6.23,13.35,6.54,21.4,0.83,0.0,0.24424,73.99,7229.3,9278.57,1.053,43.73,1.0,43.73,72.27,72.27,0.0,42.07,1.0,42.07,72.27,72.27,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 house075.xml,64.51,31.57,15.71,11.39,50.45,9.98,19.41,31.46,5.23,18.51,17.85,0.0,0.0,0.21678,85.62,11409.83,12849.2,1.0372,46.34,1.0,46.34,64.51,64.51,0.0,43.59,1.0,43.59,64.51,64.51,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 -house076.xml,65.93,6.59,4.86,5.79,10.51,3.47,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.15851,110.05,3884.22,3359.52,1.0506,52.89,1.0,52.89,65.93,65.93,0.0,48.33,1.0,48.33,65.93,65.93,0.0,63.45,7.43,4.79,5.79,11.85,3.47,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.19781 -house077.xml,78.35,8.63,5.1,8.66,13.78,3.66,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.18443,83.24,7461.65,8438.43,1.0623,56.49,1.0,56.49,78.35,78.35,0.0,47.85,1.0,47.85,78.35,78.35,0.0,74.09,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.22402 +house076.xml,65.36,6.58,4.87,5.79,10.49,3.47,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.181,109.1,3884.22,3365.19,1.0579,52.53,1.0,52.53,65.36,65.36,0.0,47.4,1.0,47.4,65.36,65.36,0.0,63.79,7.43,4.79,5.79,11.85,3.47,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.181 +house077.xml,77.38,8.58,5.14,8.66,13.72,3.67,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.20813,82.19,7461.65,8480.49,1.0705,56.06,1.0,56.06,77.38,77.38,0.0,46.74,1.0,46.74,77.38,77.38,0.0,74.47,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20813 house078.xml,57.17,29.41,57.23,8.99,47.12,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.87,11821.67,15183.26,0.9872,53.43,1.0,53.43,57.17,57.17,0.0,50.27,1.0,50.27,57.17,57.17,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 house079.xml,49.4,44.96,2.88,10.35,31.580000000000002,1.43,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664,49.42,2724.63,5675.52,0.9713,55.85,1.0,55.85,49.4,49.4,1.0,50.5,1.0,50.5,49.4,49.4,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 house080.xml,41.1,31.17,63.31,8.99,22.73,37.19,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981,42.93,7014.45,16794.21,0.973,46.21,1.0,46.21,41.1,41.1,1.0,44.48,1.0,44.48,41.1,41.1,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index c65d66215..e6f5323e9 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -15,28 +15,28 @@ base-atticroof-flat.xml,71.37,29.29,8.56,10.49,46.65,5.24,11.52,32.1,3.91,9.02,2 base-atticroof-radiant-barrier.xml,72.95,9.39,26.65,7.53,15.05,15.84,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811,78.77,6304.3,7545.78,1.0606,46.94,1.0,46.94,72.95,72.95,0.0,44.1,1.0,44.1,72.95,72.95,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 base-atticroof-unvented-insulated-roof.xml,74.09,29.51,8.31,10.49,47.03,5.17,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867,142.76,7914.63,5495.15,1.0089,56.51,1.0,56.51,74.09,74.09,0.0,50.8,1.0,50.8,74.09,74.09,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 base-atticroof-vented.xml,76.42,30.04,8.11,10.49,47.87,5.07,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173,150.14,8416.16,5547.13,1.0106,57.26,1.0,57.26,76.42,76.42,0.0,51.7,1.0,51.7,76.42,76.42,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,73.45,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.19336,109.52,3626.8,3076.07,1.0765,71.15,1.0,71.15,73.45,73.45,0.0,60.33,1.0,60.33,73.45,73.45,0.0,70.74,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-location-portland-or.xml,71.84,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.16404,78.63,2227.55,2661.18,1.0646,65.68,1.0,65.68,71.84,71.84,0.0,52.67,1.0,52.67,71.84,71.84,0.0,70.14,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.19715 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,70.53,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.20242,78.41,2572.23,3036.78,1.0802,62.76,1.0,62.76,70.53,70.53,0.0,52.54,1.0,52.54,70.53,70.53,0.0,68.05,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.81,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.20242,79.22,2598.87,3036.78,1.0802,62.92,1.0,62.92,70.81,70.81,0.0,52.64,1.0,52.64,70.81,70.81,0.0,68.32,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.57,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.20242,78.33,2569.58,3036.78,1.0802,62.92,1.0,62.92,70.57,70.57,0.0,52.64,1.0,52.64,70.57,70.57,0.0,68.09,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.23817 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,70.01,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.19909,76.0,2489.93,3036.78,1.0789,61.7,1.0,61.7,70.01,71.48,0.0,52.12,1.0,52.12,70.01,71.48,0.0,67.59,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.23395 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.78,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.19374,81.73,2672.41,3036.78,1.0767,68.23,1.0,68.23,69.78,69.78,0.0,53.58,1.0,53.58,69.78,69.78,0.0,67.33,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.7,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.19374,82.91,2710.95,3036.78,1.0767,68.73,1.0,68.73,71.7,71.7,0.0,54.05,1.0,54.05,71.7,71.7,0.0,69.17,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,70.36,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.19374,82.08,2683.72,3036.78,1.0767,68.73,1.0,68.73,70.36,70.36,0.0,54.05,1.0,54.05,70.36,70.36,0.0,67.88,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,81.09,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.19374,88.54,2894.79,3036.78,1.0767,72.05,1.0,72.05,81.09,81.09,0.0,57.15,1.0,57.15,81.09,81.09,0.0,78.18,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,71.29,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.19374,82.66,2702.85,3036.78,1.0767,68.36,1.0,68.36,71.29,71.29,0.0,53.7,1.0,53.7,71.29,71.29,0.0,68.77,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.23023 -base-bldgtype-mf-unit-shared-generator.xml,65.56,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,140.0,4437.89,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,63.25,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,77.14,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.19322,73.32,2324.06,2944.68,1.0765,67.92,1.0,67.92,77.14,77.14,0.0,57.97,1.0,57.97,77.14,77.14,0.0,74.67,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.22719 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,67.5,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.19314,120.8,3836.06,2950.08,1.0764,54.33,1.0,54.33,67.5,67.5,0.0,45.76,1.0,45.76,67.5,67.5,0.0,65.14,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-laundry-room.xml,64.39,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.19314,112.08,3558.78,2949.68,1.0764,54.33,1.0,54.33,64.39,64.39,0.0,45.76,1.0,45.76,64.39,64.39,0.0,62.15,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,75.18,5.25,6.06,10.49,8.39,3.92,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.19336,90.36,2903.59,2984.78,1.0765,61.1,1.0,61.1,75.18,75.18,0.0,50.81,1.0,50.81,75.18,75.18,0.0,72.28,6.14,5.96,10.49,9.82,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.22983 -base-bldgtype-mf-unit-shared-mechvent.xml,70.26,5.25,6.06,10.49,8.39,3.92,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.19336,79.36,2550.1,2984.78,1.0765,61.1,1.0,61.1,70.26,70.26,0.0,50.81,1.0,50.81,70.26,70.26,0.0,67.93,6.14,5.96,10.49,9.82,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.22983 -base-bldgtype-mf-unit-shared-pv.xml,6.0,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,25.67,813.67,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,62.1,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,66.08,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.19314,114.69,3635.34,2944.68,1.0764,55.15,1.0,55.15,66.08,66.08,0.0,46.56,1.0,46.56,66.08,66.08,0.0,63.81,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit-shared-water-heater.xml,64.54,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.19314,111.91,3547.12,2944.68,1.0764,54.26,1.0,54.26,64.54,64.54,0.0,45.8,1.0,45.8,64.54,64.54,0.0,62.33,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.22953 -base-bldgtype-mf-unit.xml,67.99,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.19336,78.52,2489.05,2944.68,1.0765,61.1,1.0,61.1,67.99,67.99,0.0,50.81,1.0,50.81,67.99,67.99,0.0,65.59,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.22983 -base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.43,1.0,56.43,76.14,76.14,0.0,51.03,1.0,51.03,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,72.85,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21463,108.64,3626.8,3076.07,1.0853,70.41,1.0,70.41,72.85,72.85,0.0,59.03,1.0,59.03,72.85,72.85,0.0,71.15,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21463 +base-bldgtype-mf-unit-location-portland-or.xml,71.32,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18327,78.05,2227.55,2661.18,1.0724,65.05,1.0,65.05,71.32,71.32,0.0,51.54,1.0,51.54,71.32,71.32,0.0,70.52,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18327 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,69.98,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.22288,77.8,2572.23,3036.78,1.0887,62.13,1.0,62.13,69.98,69.98,0.0,51.39,1.0,51.39,69.98,69.98,0.0,68.45,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.22288 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.26,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.22288,78.61,2598.87,3036.78,1.0887,62.29,1.0,62.29,70.26,70.26,0.0,51.48,1.0,51.48,70.26,70.26,0.0,68.72,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.22288 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.02,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.22288,77.72,2569.58,3036.78,1.0887,62.29,1.0,62.29,70.02,70.02,0.0,51.48,1.0,51.48,70.02,70.02,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.22288 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,69.48,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21909,75.42,2489.93,3036.78,1.0871,61.09,1.0,61.09,69.48,70.93,0.0,50.98,1.0,50.98,69.48,70.93,0.0,67.98,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21909 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.22,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21498,81.07,2672.41,3036.78,1.0854,67.52,1.0,67.52,69.22,69.22,0.0,52.37,1.0,52.37,69.22,69.22,0.0,67.72,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21498 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.13,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21498,82.24,2710.95,3036.78,1.0854,68.01,1.0,68.01,71.13,71.13,0.0,52.83,1.0,52.83,71.13,71.13,0.0,69.58,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21498 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,69.79,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21498,81.42,2683.72,3036.78,1.0854,68.01,1.0,68.01,69.79,69.79,0.0,52.83,1.0,52.83,69.79,69.79,0.0,68.28,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21498 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,80.44,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21498,87.82,2894.79,3036.78,1.0854,71.3,1.0,71.3,80.44,80.44,0.0,55.88,1.0,55.88,80.44,80.44,0.0,78.63,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21498 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,70.72,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21498,82.0,2702.85,3036.78,1.0854,67.65,1.0,67.65,70.72,70.72,0.0,52.49,1.0,52.49,70.72,70.72,0.0,69.18,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21498 +base-bldgtype-mf-unit-shared-generator.xml,65.03,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,138.86,4437.89,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,63.62,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,76.56,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.21297,72.77,2324.06,2944.68,1.0846,67.25,1.0,67.25,76.56,76.56,0.0,56.64,1.0,56.64,76.56,76.56,0.0,75.08,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.21297 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,66.95,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.21435,119.83,3836.06,2950.08,1.0852,53.77,1.0,53.77,66.95,66.95,0.0,44.73,1.0,44.73,66.95,66.95,0.0,65.52,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21435 +base-bldgtype-mf-unit-shared-laundry-room.xml,63.88,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.21435,111.18,3558.78,2949.68,1.0852,53.77,1.0,53.77,63.88,63.88,0.0,44.73,1.0,44.73,63.88,63.88,0.0,62.51,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21435 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.43,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21463,89.45,2903.59,2990.83,1.0853,60.47,1.0,60.47,74.43,74.43,0.0,49.67,1.0,49.67,74.43,74.43,0.0,72.7,6.14,5.96,10.49,9.82,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21463 +base-bldgtype-mf-unit-shared-mechvent.xml,69.56,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21463,78.56,2550.1,2990.83,1.0853,60.47,1.0,60.47,69.56,69.56,0.0,49.67,1.0,49.67,69.56,69.56,0.0,68.32,6.14,5.96,10.49,9.82,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21463 +base-bldgtype-mf-unit-shared-pv.xml,5.95,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,25.46,813.67,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,62.46,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,65.54,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.21435,113.76,3635.34,2944.68,1.0852,54.58,1.0,54.58,65.54,65.54,0.0,45.51,1.0,45.51,65.54,65.54,0.0,64.18,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21435 +base-bldgtype-mf-unit-shared-water-heater.xml,64.02,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.21435,111.0,3547.12,2944.68,1.0852,53.69,1.0,53.69,64.02,64.02,0.0,44.77,1.0,44.77,64.02,64.02,0.0,62.69,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21435 +base-bldgtype-mf-unit.xml,67.44,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,77.88,2489.05,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,65.97,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 +base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.41,1.0,56.41,76.14,76.14,0.0,50.87,1.0,50.87,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 base-dhw-combi-tankless.xml,64.49,28.79,8.58,10.49,47.16,5.33,18.31,32.17,4.64,10.29,21.28,0.0,0.0,0.23006,146.05,8340.47,5648.96,1.011,55.08,1.0,55.08,64.49,64.49,0.0,49.53,1.0,49.53,64.49,64.49,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 base-dhw-desuperheater.xml,83.18,29.51,8.31,10.49,47.0,5.2,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185,160.23,9146.86,5648.96,1.0106,71.49,1.0,71.49,83.18,83.18,0.0,62.0,1.0,62.0,83.18,83.18,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 base-dhw-dwhr.xml,75.5,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149,149.25,8287.82,5495.15,1.0105,56.51,1.0,56.51,75.5,75.5,0.0,50.8,1.0,50.8,75.5,75.5,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 From 0fb75e01ca9dc9e85da167406ba01636e2b5c3a9 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 10 Jan 2024 13:38:32 -0700 Subject: [PATCH 08/35] Squashed 'hpxml-measures/' changes from 46fe162b76..c102844ee2 REVERT: 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow REVERT: 1092b38dee Handle case where Qinf > Qtot. REVERT: 8db9c4dd9c Latest results. REVERT: fbf067fdcb Fix assert_in_epsilon tests. REVERT: c3c95819d2 Simplify code. REVERT: 9dabadd9b4 Update Changelog.md [ci skip] REVERT: 1115e941ee Fix typo in docs. REVERT: b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow REVERT: d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. git-subtree-dir: hpxml-measures git-subtree-split: c102844ee296e26c2e5dadb29428bd9eaa670388 --- Changelog.md | 3 - HPXMLtoOpenStudio/measure.xml | 12 ++-- HPXMLtoOpenStudio/resources/airflow.rb | 70 +++++-------------- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 7 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 +++--- HPXMLtoOpenStudio/tests/test_hvac.rb | 6 +- docs/source/workflow_inputs.rst | 14 ++-- .../tests/base_results/results_sizing.csv | 22 +++--- .../results_workflow_simulations1.csv | 26 +++---- .../results_workflow_simulations1_bills.csv | 16 ++--- .../results_workflow_simulations2.csv | 58 +++++++-------- .../results_workflow_simulations2_bills.csv | 54 +++++++------- 12 files changed, 131 insertions(+), 177 deletions(-) diff --git a/Changelog.md b/Changelog.md index 6dedcae74..06e00122e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,9 +12,6 @@ __New Features__ - **Breaking change**: Replaces `roof_radiant_barrier`/`roof_radiant_barrier_grade` arguments with `radiant_barrier_attic_location`/`radiant_barrier_grade`. - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - The "Geometry: Building Number of Units" input is now written to the HPXML `NumberofUnitsInBuilding` element. -- Updates per ANSI/RESNET/ICC 301-2022: - - Small change to default flow rate for imbalanced mechanical ventilation systems. - - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). __Bugfixes__ diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 593881d8a..af3fe3617 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5228cf4d-3a13-4bfe-bca6-fa7f994008e1 - 2024-01-06T02:18:46Z + ba59c3a3-bad0-4a0a-8cc5-7a9cd3ceb980 + 2024-01-05T17:57:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 956E8BC4 + 6A8FF11E battery.rb @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 348C4650 + AB45F0B9 hpxml_schema/HPXML.xsd @@ -592,7 +592,7 @@ test_defaults.rb rb test - ABC2B890 + 7430EFAB test_enclosure.rb @@ -616,7 +616,7 @@ test_hvac.rb rb test - B582B9C9 + 5567231B test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 4fcdf98da..b58619ed7 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -217,20 +217,28 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) return sla, ach50, nach, volume, height, a_ext end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) - # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) + # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) - bldg_type = hpxml_bldg.building_construction.residential_facility_type nl = get_infiltration_NL_from_SLA(sla, height) q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) + q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) + if vent_fan.is_balanced? - is_balanced, frac_imbal = true, 0.0 + phi = 1.0 else - is_balanced, frac_imbal = false, 1.0 + phi = q_inf / q_tot + end + q_fan = q_tot - phi * (q_inf * a_ext) + q_fan = [q_fan, 0].max + + if not vent_fan.hours_in_operation.nil? + # Convert from hourly average requirement to actual fan flow rate + q_fan *= 24.0 / vent_fan.hours_in_operation end - q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, vent_fan.hours_in_operation) + return q_fan end @@ -1615,10 +1623,7 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') - infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') - infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') - elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2001,12 +2006,12 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, weather) def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) end def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) @@ -2086,47 +2091,6 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end - - def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) - q_inf_eff = q_inf * a_ext - if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') - if frac_imbal == 0 - q_fan = q_tot - q_inf_eff - else - q_inf_eff = q_inf * a_ext - if q_inf_eff >= q_tot - q_fan = 0.0 - else - q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) - end - end - elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') - if is_balanced - phi = 1.0 - else - phi = q_inf / q_tot - end - q_fan = q_tot - phi * q_inf_eff - else - if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type - # No infiltration credit for attached/multifamily - return q_tot - end - - if q_inf > 2.0 / 3.0 * q_tot - q_fan = q_tot - 2.0 / 3.0 * q_tot - else - q_fan = q_tot - q_inf - end - end - - # Convert from hourly average requirement to actual fan flow rate - if not hours_in_operation.nil? - q_fan *= 24.0 / hours_in_operation - end - - return [q_fan, 0.0].max - end end class Duct diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 33c80b5db..6ea74058f 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1919,21 +1919,18 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end - if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - - if vent_fan.flow_rate.nil? + if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) vent_fan.rated_flow_rate_isdefaulted = true end - if vent_fan.fan_power.nil? vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index d8df5d93e..58795b40f 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2287,7 +2287,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2297,13 +2297,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2313,13 +2313,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2328,7 +2328,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.0, 74.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 21.7, 61.9) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2337,7 +2337,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2355,7 +2355,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.2) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2385,7 +2385,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2396,7 +2396,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 173.3, 298.8, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 54d39f60f..3d2cc838f 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -1128,7 +1128,7 @@ def test_install_quality_furnace_central_air_conditioner_2_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [1.088, 1.088].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) end end @@ -1141,7 +1141,7 @@ def test_install_quality_furnace_central_air_conditioner_var_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) end end @@ -1211,7 +1211,7 @@ def test_install_quality_mini_split_air_conditioner cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) end end diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 4359187c1..f8921e62a 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2649,32 +2649,28 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] For central fan integrated supply systems, IsSharedSystem must be false. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: - \- **balanced, energy recovery ventilator, or heat recovery ventilator**: Qfan = Qtot - Qinf_eff + Qfan = Qtot - Φ*(Qinf * Aext) - \- **exhaust only, supply only, or central fan integrated supply**: Qfan = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 - where Qfan = required mechanical ventilation rate (cfm) Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) - Qinf_eff = Qinf * Aext - Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` - OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. - .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2022: + .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2012: \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm @@ -2682,7 +2678,7 @@ If not entered, the simulation will not include mechanical ventilation. \- **central fan integrated supply**: 0.58 W/cfm - \- **exhaust only or supply only**: 0.35 W/cfm + \- **exhaust only" or "supply only**: 0.35 W/cfm **Exhaust/Supply Only** diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 70506a3a6..d3e35f8a0 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -108,11 +108,11 @@ denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodo 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,35132.0,36421.0,31147.0,831.0,1136.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,29280.0,30497.0,31147.0,693.0,951.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35188.0,36653.0,31147.0,832.0,1143.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57570.0,31147.0,1307.0,1795.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57566.0,31147.0,1307.0,1795.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,23459.0,0.0,534.0,732.0 @@ -120,10 +120,10 @@ denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0,534.0, denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0,832.0,967.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,39186.0,41044.0,31147.0,927.0,1280.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20423.0,0.0,0.0,637.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24847.0,26181.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20424.0,0.0,0.0,637.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24848.0,26181.0,564.0,775.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,46458.0,48392.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,46458.0,48389.0,26181.0,1099.0,1509.0 denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17356.0,0.0,0.0,722.0 denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14282.0,0.0,0.0,476.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17356.0,0.0,0.0,722.0 @@ -294,18 +294,18 @@ houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-method 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,30106.0,28783.0,20038.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29789.0,20038.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34140.0,20038.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30106.0,28785.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29787.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34137.0,20038.0,698.0,1065.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,28783.0,0.0,291.0,898.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,28785.0,0.0,291.0,898.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,40845.0,39322.0,20038.0,798.0,819.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,624.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,40845.0,39322.0,20038.0,798.0,819.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24436.0,0.0,0.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24436.0,16055.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24438.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24438.0,16055.0,499.0,762.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,27617.0,26405.0,16055.0,540.0,823.0 houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20779.0,0.0,0.0,864.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 130fa409e..820be3abb 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,40.91,34.086,26.107,19.282,0.637,0.0, base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.392,28.392,28.392,28.392,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.328,0.0,0.0,2.415,2.868,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.588,0.0,8.984,9.374,0.577,0.0,0.0,0.0,0.0,1731.7,2025.8,2025.8,3.449,7.707,0.0,-0.016,2.488,0.0,0.0,0.427,3.957,-2.568,0.0,0.0,-0.012,0.0,-0.388,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.01,-1.077,0.0,0.0,-0.038,-1.093,5.634,0.0,0.0,-0.006,0.0,-0.378,-0.502,-1.681,-0.383,0.0,0.0,7.368,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.637,31.637,16.644,16.644,14.993,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.01,0.548,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.58,0.0,14.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.535,0.0,9.264,9.374,2.266,0.0,0.0,0.0,0.0,1020.3,1539.9,1539.9,3.498,7.734,0.0,-0.017,2.441,0.0,0.0,0.425,3.917,-2.473,0.0,0.0,-0.012,0.0,-0.414,2.026,0.0,0.0,0.0,0.0,-4.709,-0.753,0.0,-0.012,-1.134,0.0,0.0,-0.041,-1.149,5.73,0.0,0.0,-0.007,0.0,-0.404,-0.925,-1.711,0.0,0.0,0.0,7.747,1.273,1354.8,997.6,11172.0,3093.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-laundry-room.xml,29.523,29.523,16.46,16.46,13.063,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.863,0.51,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.749,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.692,0.0,8.568,9.374,0.569,0.0,0.0,0.0,0.0,1011.4,1528.6,1528.6,3.655,7.615,0.0,-0.017,2.502,0.0,0.0,0.426,3.98,-2.665,0.0,0.0,-0.013,0.0,-0.393,2.064,0.0,0.0,0.0,0.0,-4.482,-0.801,0.0,-0.012,-1.03,0.0,0.0,-0.033,-1.02,5.538,0.0,0.0,-0.008,0.0,-0.383,-0.847,-1.646,0.0,0.0,0.0,6.88,1.226,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-mechvent-multiple.xml,50.809,50.809,30.633,30.633,20.176,0.0,0.0,0.0,0.0,0.0,0.0,0.058,0.0,0.0,2.787,0.3,9.566,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,8.014,0.0,0.0,0.0,0.0,12.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.425,0.0,5.07,9.374,0.616,0.0,0.0,0.0,0.0,1866.4,2259.8,2259.8,7.611,8.992,0.0,-0.017,2.792,0.0,0.0,0.407,4.192,-4.241,0.0,0.0,-0.02,0.0,-0.261,0.209,0.0,12.332,0.0,0.0,-6.697,-1.195,0.0,-0.012,-0.136,0.0,0.0,0.06,0.131,3.961,0.0,0.0,-0.016,0.0,-0.255,-0.016,-0.753,-4.193,0.0,0.0,5.309,0.832,1354.8,997.6,11171.6,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.425,32.425,27.296,27.296,5.129,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.673,0.455,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.163,0.0,0.0,0.0,0.0,3.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.075,0.0,7.54,9.374,0.586,0.0,0.0,0.0,0.0,1729.0,2025.3,2025.3,3.846,7.873,0.0,-0.018,2.631,0.0,0.0,0.435,4.153,-3.003,0.0,0.0,-0.016,0.0,-0.365,1.422,0.0,1.938,0.0,0.0,-5.244,-0.913,0.0,-0.013,-0.791,0.0,0.0,-0.003,-0.672,5.199,0.0,0.0,-0.011,0.0,-0.356,-0.419,-1.404,-1.792,0.0,0.0,6.732,1.113,1354.8,997.6,11171.6,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.516,30.516,27.12,27.12,3.397,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.548,0.423,9.547,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.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,3.145,0.0,7.202,9.374,0.596,0.0,0.0,0.0,0.0,1648.3,2018.5,2018.5,5.706,8.494,0.0,-0.016,2.686,0.0,0.0,0.4,4.052,-3.58,0.0,0.0,-0.018,0.0,-0.254,1.401,0.0,5.314,0.0,0.0,-5.778,-1.034,0.0,-0.012,-0.569,0.0,0.0,-0.006,-0.508,4.622,0.0,0.0,-0.014,0.0,-0.248,-0.325,-1.403,-1.51,0.0,0.0,6.209,0.992,1354.8,997.6,11171.6,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-mechvent-multiple.xml,50.688,50.688,30.635,30.635,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.786,0.301,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.892,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.311,0.0,5.073,9.374,0.616,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.585,8.979,0.0,-0.017,2.792,0.0,0.0,0.407,4.197,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.344,0.0,0.0,-6.695,-1.194,0.0,-0.013,-0.139,0.0,0.0,0.06,0.131,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.754,-4.199,0.0,0.0,5.311,0.832,1354.8,997.6,11171.6,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.544,32.544,27.245,27.245,5.299,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.63,0.445,9.538,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.341,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.24,0.0,7.41,9.374,0.587,0.0,0.0,0.0,0.0,1656.4,2023.4,2023.4,4.163,7.879,0.0,-0.018,2.64,0.0,0.0,0.432,4.152,-3.079,0.0,0.0,-0.017,0.0,-0.359,1.776,0.0,1.929,0.0,0.0,-5.323,-0.931,0.0,-0.013,-0.758,0.0,0.0,-0.001,-0.635,5.123,0.0,0.0,-0.012,0.0,-0.351,-0.521,-1.382,-1.753,0.0,0.0,6.655,1.096,1354.8,997.6,11171.6,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.767,30.767,27.1,27.1,3.667,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.53,0.418,9.548,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.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,3.395,0.0,7.118,9.374,0.597,0.0,0.0,0.0,0.0,1646.4,2003.5,2003.5,5.987,8.5,0.0,-0.016,2.685,0.0,0.0,0.398,4.043,-3.61,0.0,0.0,-0.018,0.0,-0.252,1.74,0.0,5.31,0.0,0.0,-5.808,-1.041,0.0,-0.012,-0.554,0.0,0.0,-0.005,-0.492,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.431,-1.381,-1.484,0.0,0.0,6.179,0.985,1354.8,997.6,11171.6,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.743,2.296,26.107,1.659,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.683,30.683,17.571,17.571,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1056.9,1589.2,1589.2,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,29.587,29.587,16.475,16.475,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1004.2,1536.5,1536.5,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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 @@ -63,7 +63,7 @@ base-dhw-desuperheater-2-speed.xml,31.989,31.989,31.989,31.989,0.0,0.0,0.0,0.0,0 base-dhw-desuperheater-gshp.xml,38.021,38.021,38.021,38.021,0.0,0.0,0.0,0.0,0.0,0.0,5.552,0.566,0.0,0.0,3.04,0.988,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,13.555,9.073,0.614,2.863,0.0,0.0,0.0,3419.5,2343.1,3419.5,22.235,16.609,0.0,3.593,3.642,0.513,7.526,0.63,10.095,-12.683,0.0,0.0,0.0,8.321,-0.063,4.805,0.0,0.729,0.0,3.701,-8.59,-2.499,0.0,0.005,-0.446,-0.049,2.735,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.26,-0.059,-1.145,-3.86,-0.163,0.0,2.129,8.481,2.01,1354.8,997.6,11186.3,2566.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,18787.0,5329.0,7037.0,0.0,207.0,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.254,56.254,29.571,29.571,26.682,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.353,0.827,2.675,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,24.987,0.0,14.378,9.086,1.809,2.921,0.0,0.0,0.0,1884.0,3127.9,3127.9,25.892,19.484,0.0,3.523,3.635,0.511,7.505,0.628,10.069,-12.724,0.0,0.0,0.0,8.338,-0.052,4.795,0.0,0.727,0.0,5.643,-5.455,-2.509,0.0,-0.001,-0.405,-0.044,2.871,-0.011,-1.224,11.689,0.0,0.0,0.0,-6.044,-0.049,-1.099,-3.608,-0.154,0.0,3.142,7.597,2.0,1354.7,997.5,11146.8,2557.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.582,33.582,33.582,33.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349,1.145,6.811,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.077,9.08,0.0,2.843,0.0,0.0,0.0,1932.8,3239.8,3239.8,0.0,19.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.447,-0.049,2.73,-0.026,-1.379,11.85,0.0,0.0,0.0,-6.828,-0.064,-1.163,-3.706,-0.163,0.0,3.168,8.336,2.036,1354.8,997.6,11133.3,2554.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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.438,8.613,2.036,1354.8,997.6,11182.6,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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,0.0,19.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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.437,8.613,2.036,1354.8,997.6,11182.7,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.xml,33.61,33.61,33.61,33.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.401,1.162,6.771,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.296,9.074,0.662,2.892,0.0,0.0,0.0,2069.0,3252.8,3252.8,0.0,19.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.057,-0.453,-0.05,2.715,-0.028,-1.397,11.85,0.0,0.0,0.0,-6.838,-0.063,-1.17,-3.747,-0.164,0.0,3.204,8.628,2.036,1354.8,997.6,11182.2,2566.0,0.0,0.0,24000.0,0.0,6.8,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.722,55.722,33.436,33.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,6.745,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,6.634,0.614,0.0,0.0,0.0,0.0,2094.2,3386.2,3386.2,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.9,53.9,21.421,21.421,32.479,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.157,0.0,13.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.16,0.0,0.0,9.099,2.376,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.745,3.645,0.513,7.514,0.631,10.106,-12.669,0.0,0.0,0.0,8.166,-0.067,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.0,852.3,9358.0,2147.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 @@ -104,8 +104,8 @@ base-dhw-tank-heat-pump-uef.xml,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0 base-dhw-tank-heat-pump-with-solar-fraction.xml,51.774,51.774,27.728,27.728,24.047,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.062,0.757,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.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.519,0.0,13.145,9.108,0.603,0.0,5.92,0.0,0.0,1856.4,3135.7,3135.7,25.408,18.877,0.0,3.543,3.64,0.512,7.52,0.629,10.078,-12.705,0.0,0.0,0.0,8.33,-0.054,4.8,0.0,0.728,0.0,5.165,-7.514,-2.501,0.0,-0.009,-0.426,-0.047,2.793,-0.017,-1.3,11.708,0.0,0.0,0.0,-6.161,-0.051,-1.126,-3.666,-0.159,0.0,2.942,6.881,2.009,474.2,349.2,3821.8,877.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-with-solar.xml,51.285,51.285,28.322,28.322,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.394,0.836,1.109,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.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,14.538,9.022,1.967,0.0,8.046,0.0,0.0,1896.1,3141.1,3141.1,25.085,19.317,0.0,3.556,3.646,0.513,7.539,0.63,10.092,-12.686,0.0,0.0,0.0,8.338,-0.056,4.806,0.0,0.729,0.0,4.959,-8.421,-2.498,0.0,-0.042,-0.449,-0.05,2.725,-0.024,-1.374,11.727,0.0,0.0,0.0,-6.263,-0.052,-1.153,-3.893,-0.164,0.0,3.186,8.558,2.011,1354.4,997.3,11681.5,2680.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.xml,56.198,56.198,29.584,29.584,26.613,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.798,0.695,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.919,0.0,12.099,9.12,1.72,0.0,0.0,0.0,0.0,1874.8,3266.4,3266.4,23.533,19.025,0.0,3.526,3.638,0.512,7.512,0.627,10.061,-12.745,0.0,0.0,0.0,8.354,-0.048,4.795,0.0,0.727,0.0,5.628,-5.522,-2.509,0.0,0.026,-0.397,-0.042,2.889,-0.011,-1.216,11.668,0.0,0.0,0.0,-6.004,-0.044,-1.095,-3.485,-0.152,0.0,2.731,5.541,2.001,1354.8,997.6,10838.9,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.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.3,5544.6,5544.6,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.147,35.147,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,1991.8,3400.6,3400.6,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,7.6,2.01,1354.8,997.6,10766.3,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-model-type-stratified-detailed-occupancy-stochastic.xml,58.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5540.9,5540.9,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.148,35.148,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,2003.7,3403.2,3403.2,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,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.631,64.631,26.844,26.844,22.506,15.282,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.631,64.631,26.844,26.844,22.506,0.0,0.0,15.282,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.51,60.51,26.638,26.638,33.872,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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 @@ -125,7 +125,7 @@ base-enclosure-beds-4.xml,59.598,59.598,38.291,38.291,21.308,0.0,0.0,0.0,0.0,0.0 base-enclosure-beds-5.xml,61.195,61.195,40.856,40.856,20.34,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.558,0.875,12.384,0.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.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,19.047,0.0,15.027,12.694,0.613,0.0,0.0,0.0,0.0,2527.7,3848.9,3848.9,22.438,19.545,0.0,3.581,3.656,0.515,7.57,0.633,10.127,-12.669,0.0,0.0,0.0,8.363,-0.063,4.813,0.0,0.733,0.0,4.445,-10.517,-2.496,0.0,-0.071,-0.475,-0.053,2.644,-0.03,-1.447,11.744,0.0,0.0,0.0,-6.394,-0.059,-1.177,-4.059,-0.168,0.0,3.259,9.462,2.013,1770.0,1358.2,16181.1,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.121,74.121,36.244,36.244,37.877,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.467,0.855,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.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,14.804,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3550.3,3550.3,29.35,19.593,0.0,17.295,3.593,0.505,7.261,0.621,9.962,-12.802,0.0,0.0,0.0,7.769,-0.077,4.847,0.0,0.734,0.0,6.981,-9.069,-2.542,0.0,0.171,-0.316,-0.031,2.926,0.011,-0.954,11.611,0.0,0.0,0.0,-6.041,-0.067,-0.997,-3.569,-0.139,0.0,2.714,7.714,1.967,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.006,67.006,29.235,29.235,37.771,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.621,0.644,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.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,35.377,0.0,11.026,9.182,0.621,0.0,0.0,0.0,0.0,1765.2,3434.2,3434.2,29.151,21.511,0.0,3.488,3.657,0.0,0.0,0.673,9.524,-13.013,0.0,0.0,29.112,0.0,-0.21,2.054,0.0,0.788,0.0,7.866,-7.475,-1.576,0.0,0.417,-0.07,0.0,0.0,0.095,0.915,10.955,0.0,0.0,-7.98,0.0,-0.205,-0.258,-2.064,-0.085,0.0,2.681,5.729,1.071,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.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.7,2717.7,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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-garage.xml,58.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.8,2717.8,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -159,7 +159,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,56.858,56.858,35.907,35 base-foundation-conditioned-basement-wall-insulation.xml,56.81,56.81,35.28,35.28,21.529,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.913,0.719,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.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.161,0.0,12.44,9.075,0.615,0.0,0.0,0.0,0.0,2128.4,3541.7,3541.7,23.225,18.708,0.0,3.587,3.672,0.517,6.119,0.637,10.174,-12.694,0.0,0.0,0.0,8.986,-0.065,4.83,0.0,0.734,0.0,4.712,-8.91,-2.501,0.0,0.021,-0.403,-0.043,1.124,-0.012,-1.234,11.72,0.0,0.0,0.0,-6.447,-0.06,-1.117,-3.536,-0.159,0.0,2.872,7.868,2.009,1354.8,997.6,11171.5,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.743,46.743,28.73,28.73,18.013,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.467,0.625,9.211,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.856,0.0,10.662,9.182,0.615,0.0,0.0,0.0,0.0,1720.5,2369.3,2369.3,15.899,11.707,0.0,3.711,3.607,0.507,5.114,0.622,9.795,-12.66,0.0,0.0,0.0,10.013,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.042,-0.455,-0.051,1.813,-0.024,-1.171,11.693,0.0,0.0,0.0,-3.767,-0.048,-0.825,-3.657,-0.162,0.0,0.0,6.309,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.293,42.293,29.585,29.585,12.708,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.257,0.806,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.708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.897,0.0,13.759,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3028.7,3028.7,15.204,15.253,0.0,3.987,3.873,0.0,0.0,0.781,10.597,-11.184,0.0,0.0,5.313,0.0,-0.387,2.587,0.0,0.0,0.0,1.989,-4.616,-1.421,0.0,-0.127,-0.701,0.0,0.0,-0.009,-0.408,12.785,0.0,0.0,-0.674,0.0,-0.383,-0.558,-3.053,0.0,0.0,1.668,4.25,1.226,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.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.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-slab.xml,39.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,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.468,43.468,29.72,29.72,13.747,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.338,0.825,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.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.871,0.0,14.125,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.992,3.873,0.0,0.0,0.78,10.643,-11.238,0.0,0.0,5.935,0.0,-0.399,2.591,0.0,0.0,0.0,2.406,-4.632,-1.425,0.0,-0.103,-0.682,0.0,0.0,-0.006,-0.407,12.731,0.0,0.0,-0.574,0.0,-0.394,-0.546,-3.037,0.0,0.0,1.944,4.233,1.222,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.792,40.792,29.146,29.146,11.646,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.904,0.723,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.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.903,0.0,12.248,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2618.9,2618.9,14.652,13.98,0.0,3.98,3.841,0.0,0.0,0.77,10.6,-11.048,0.0,0.0,4.439,0.0,-0.412,2.588,0.0,0.0,0.0,1.777,-4.589,-1.411,0.0,-0.105,-0.658,0.0,0.0,0.018,-0.387,12.921,0.0,0.0,-2.075,0.0,-0.408,-0.564,-2.892,0.0,0.0,1.149,4.277,1.237,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.429,48.429,28.801,28.801,19.628,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.572,0.643,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.371,0.0,10.91,9.126,0.639,0.0,0.0,0.0,0.0,1722.9,2460.7,2460.7,16.593,12.553,0.0,3.739,3.636,0.0,0.0,0.637,9.325,-12.477,0.0,0.0,14.533,0.0,-0.047,2.468,0.0,0.0,0.0,2.551,-4.777,-1.481,0.0,0.067,-0.435,0.0,0.0,-0.014,-0.416,11.491,0.0,0.0,-2.75,0.0,-0.046,-0.513,-2.855,0.0,0.0,1.316,4.089,1.166,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 @@ -196,7 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,35.667,35.667,35.667,35.667,0.0,0.0, base-hvac-central-ac-only-1-speed.xml,35.68,35.68,35.68,35.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.235,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3509.2,3509.2,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.09,34.09,34.09,34.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071,0.682,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.991,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3085.8,3085.8,0.0,19.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.071,-0.454,-0.05,2.711,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.709,-0.165,0.0,3.501,8.008,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.64,33.64,33.64,33.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189,0.114,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.956,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3511.1,3511.1,0.0,17.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.072,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.712,-0.165,0.0,3.503,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.683,0.264,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.781,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.5,2899.5,0.0,18.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.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.342,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682,0.264,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.78,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.3,2899.3,0.0,18.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.341,8.008,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.39,47.39,47.39,47.39,0.0,0.0,0.0,0.0,0.0,0.0,9.543,1.748,0.309,0.031,4.329,1.138,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,22.335,0.34,13.981,9.075,0.615,0.0,0.0,0.0,0.0,7195.9,3544.8,7195.9,25.253,19.042,0.0,3.497,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.335,-8.906,-2.499,0.0,-0.039,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.209,58.209,36.58,36.58,21.629,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.022,0.908,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.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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2102.1,2714.4,2714.4,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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,51.983,51.983,41.322,41.322,10.661,0.0,0.0,0.0,0.0,0.0,5.246,0.493,0.0,0.93,3.357,1.004,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,10.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,22.828,11.057,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3243.5,3608.2,24.193,16.253,0.0,3.47,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.86,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,53.543,53.543,30.861,30.861,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,56.21,56.21,56.21,56.21,0.0,0.0,0.0,0.0,0.0,0.0,20.503,0.368,0.0,0.0,4.247,0.8,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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,7897.8,3369.1,7897.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.154,52.154,52.154,52.154,0.0,0.0,0.0,0.0,0.0,0.0,21.293,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,8283.1,1637.3,8283.1,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.722,56.722,34.436,34.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.116,0.66,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.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,20.87,0.0,14.312,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3115.3,3115.3,23.032,19.58,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.052,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.827,-0.163,0.0,3.503,7.874,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.953,55.953,33.668,33.668,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.177,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.7,2924.7,23.032,19.21,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.425,7.874,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.953,55.953,33.667,33.667,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.176,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.9,2924.9,23.032,19.212,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.424,7.874,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.99,37.99,30.507,30.507,7.483,0.0,0.0,0.0,0.0,0.0,0.0,0.195,0.0,0.0,0.0,0.0,9.036,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.072,0.0,0.0,9.075,0.635,0.0,0.0,0.0,0.0,2085.2,1636.2,2085.2,18.154,0.0,0.0,2.843,2.786,0.39,5.36,0.411,7.452,-12.563,0.0,0.0,0.0,5.495,-0.053,3.476,0.0,0.572,0.0,1.818,-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,11171.5,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.451,58.451,30.861,30.861,27.59,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.468,58.468,35.00 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.737,57.737,34.277,34.277,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.332,0.37,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,23.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.862,0.0,15.952,9.075,0.615,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.153,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.136,-0.446,-0.049,2.733,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.058,-1.148,-3.837,-0.163,0.0,5.223,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.9,54.9,30.73,30.73,24.17,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.692,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2091.6,1637.3,2091.6,25.358,0.0,0.0,3.487,3.648,0.513,7.518,0.632,10.11,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,6.859,-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,42.348,42.348,42.348,42.348,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.569,0.0,0.0,3.533,0.899,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,20.77,0.0,13.454,9.075,0.615,0.0,0.0,0.0,0.0,3720.9,2983.5,3720.9,23.178,17.47,0.0,3.56,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.729,0.0,4.732,-8.906,-2.499,0.0,-0.017,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.827,-0.163,0.0,2.633,7.872,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.79,33.79,33.79,33.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.191,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.288,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.8,2951.8,0.0,14.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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.793,8.008,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.789,33.789,33.789,33.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.191,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.287,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.6,2951.6,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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.792,8.008,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.313,41.313,41.313,41.313,0.0,0.0,0.0,0.0,0.0,0.0,8.082,0.201,0.121,0.005,2.519,0.091,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,19.457,0.126,12.148,9.075,0.615,0.0,0.0,0.0,0.0,4873.7,2788.6,4873.7,19.228,14.089,0.0,3.606,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.39,-8.906,-2.499,0.0,0.037,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.315,7.872,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.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.023,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.515,8.008,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-ducted.xml,33.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.024,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.516,8.008,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.885,32.885,32.885,32.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2664.7,2664.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.023,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2503.8,2503.8,0.0,11.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.036,-0.455,-0.05,2.71,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.409,32.409,32.409,32.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.027,0.044,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.521,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2369.0,2369.0,0.0,13.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.705,-0.165,0.0,0.996,8.008,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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.413,48.413,36.149,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.929,38.929,38.929,38.929,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.036,0.0,0.0,1.887,0.003,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,16.192,0.0,10.855,9.075,0.615,0.0,0.0,0.0,0.0,3979.6,2668.0,3979.6,16.439,11.895,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.423,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6587.4,4004.5,6587.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.422,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6589.4,4004.5,6589.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.673,19.673,19.673,19.673,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.543,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.334,0.0,0.0,0.0,0.0,1272.9,1085.0,1272.9,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.9,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.741,50.741,50.741,50.741,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,4.243,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,2924.2,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.792,54.792,34.536,34.536,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243,0.0,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,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2019.6,2924.2,2924.2,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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 6fb7ec8cb..ff3f02147 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,1637.42,144.0,958.12,0.0,1102.12,144. base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1186.01,144.0,1042.01,0.0,1186.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1057.68,144.0,610.85,0.0,754.85,144.0,158.83,302.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-laundry-room.xml,1030.47,144.0,604.09,0.0,748.09,144.0,138.38,282.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.98,144.0,1124.25,0.0,1268.25,144.0,213.73,357.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 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.11,144.0,1001.78,0.0,1145.78,144.0,54.33,198.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,1319.28,144.0,995.3,0.0,1139.3,144.0,35.98,179.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-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.73,144.0,1124.31,0.0,1268.31,144.0,212.42,356.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.03,144.0,999.9,0.0,1143.9,144.0,56.13,200.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-bldgtype-mf-unit-shared-mechvent.xml,1321.42,144.0,994.58,0.0,1138.58,144.0,38.84,182.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-bldgtype-mf-unit-shared-pv.xml,355.63,144.0,958.12,-897.25,204.88,144.0,6.75,150.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1071.77,144.0,644.87,0.0,788.87,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,0.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,1031.55,144.0,604.65,0.0,748.65,144.0,138.9,282.9,0.0,0.0,0.0,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 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,1452.99,144.0,1308.99,0.0,1452.99,0. base-hvac-central-ac-only-1-speed.xml,1453.45,144.0,1309.45,0.0,1453.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.xml,1395.13,144.0,1251.13,0.0,1395.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed-detailed-performance.xml,1378.61,144.0,1234.61,0.0,1378.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,1365.55,144.0,1221.55,0.0,1365.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,1365.54,144.0,1221.54,0.0,1365.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-central-ac-plus-air-to-air-heat-pump-heating.xml,1883.25,144.0,1739.25,0.0,1883.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-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,1917.47,144.0,1516.54,0.0,1660.54,144.0,112.93,256.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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,1616.84,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2206.93,144.0,2062.93,0.0,2206.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,2058.09,144.0,1914.09,0.0,2058.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-2-speed.xml,1787.91,144.0,1263.83,0.0,1407.83,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1759.69,144.0,1235.61,0.0,1379.61,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1759.68,144.0,1235.6,0.0,1379.6,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.89,144.0,1119.62,0.0,1263.62,144.0,79.27,223.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-hvac-furnace-gas-only-pilot.xml,1712.88,144.0,1132.61,0.0,1276.61,144.0,292.27,436.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-hvac-furnace-gas-only.xml,1660.89,144.0,1132.61,0.0,1276.61,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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1821.33,144.0,1284. base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1794.5,144.0,1257.98,0.0,1401.98,144.0,248.52,392.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-hvac-install-quality-furnace-gas-only.xml,1671.83,144.0,1127.79,0.0,1271.79,144.0,256.04,400.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-hvac-install-quality-ground-to-air-heat-pump.xml,1698.18,144.0,1554.18,0.0,1698.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.11,144.0,1240.11,0.0,1384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.08,144.0,1240.08,0.0,1384.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-install-quality-mini-split-heat-pump-ducted.xml,1660.19,144.0,1516.19,0.0,1660.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-hvac-mini-split-air-conditioner-only-ducted.xml,1360.37,144.0,1216.37,0.0,1360.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-mini-split-air-conditioner-only-ducted.xml,1360.38,144.0,1216.38,0.0,1360.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1350.91,144.0,1206.91,0.0,1350.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.75,144.0,1219.75,0.0,1363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1333.41,144.0,1189.41,0.0,1333.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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1899.61,144.0,1326.69,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1572.7,144.0,1428.7,0.0,1572.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 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1544.05,144.0,1400.05,0.0,1544.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-mini-split-heat-pump-ductless.xml,1544.05,144.0,1400.05,0.0,1544.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-multiple.xml,2492.93,144.0,1907.22,0.0,2051.22,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2492.92,144.0,1907.21,0.0,2051.21,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2514.22,144.0,2370.22,0.0,2514.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-ptac-with-heating-electricity.xml,2006.2,144.0,1862.2,0.0,2006.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-ptac-with-heating-natural-gas.xml,1770.06,144.0,1267.49,0.0,1411.49,144.0,214.57,358.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 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index f9d84fd0f..286ed2852 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,35.6,35.6,35.6,35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0. base-location-miami-fl.xml,34.751,34.751,34.751,34.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.058,2.686,4.876,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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,44.892,4.634,0.552,0.0,0.0,0.0,0.0,2083.3,2402.8,2402.8,0.0,13.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.037,0.606,0.0,0.0,0.312,4.537,19.646,0.0,0.0,0.0,5.599,-0.004,-0.201,-2.929,-0.001,0.0,0.681,13.136,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.512,38.512,38.511,38.511,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.355,2.921,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,52.977,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3307.2,3307.2,0.564,18.415,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.766,1.406,0.0,0.0,0.804,6.879,24.223,0.0,0.0,0.0,7.021,-0.479,0.014,-3.281,0.117,0.0,0.95,11.527,2.372,1354.8,997.6,8260.5,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,36.932,36.932,27.395,27.395,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.775,0.511,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,8.421,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2663.0,2663.0,8.448,14.118,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.217,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.279,-0.746,0.0,0.0,0.003,-0.6,10.358,0.0,0.0,-2.866,0.0,-0.439,-0.339,-2.898,-0.248,0.0,0.534,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,78.588,78.588,37.575,37.575,41.013,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.061,0.746,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.412,0.0,12.902,9.075,0.62,0.0,0.0,0.0,0.0,2205.1,3756.3,3756.3,32.326,21.466,0.0,3.505,3.714,0.523,7.454,0.653,10.364,-12.828,0.0,0.0,0.0,8.178,-0.112,4.886,0.0,15.062,0.0,8.438,-9.161,-2.566,0.0,0.155,-0.254,-0.022,3.026,0.032,-0.703,11.586,0.0,0.0,0.0,-5.901,-0.108,-0.908,-3.049,-3.541,0.0,3.097,7.623,1.944,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-balanced.xml,79.399,79.399,37.588,37.588,41.811,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.0,0.0,4.061,0.746,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.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,39.159,0.0,12.895,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3770.9,3770.9,32.383,21.475,0.0,3.51,3.724,0.524,7.442,0.656,10.396,-12.846,0.0,0.0,0.0,8.145,-0.118,5.506,0.0,15.102,0.0,8.577,-9.186,-2.572,0.0,0.169,-0.24,-0.02,3.025,0.036,-0.659,11.568,0.0,0.0,0.0,-5.919,-0.114,-0.996,-3.03,-3.486,0.0,3.102,7.599,1.938,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.774,59.774,35.804,35.804,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.211,0.791,9.018,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.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,13.723,9.075,0.615,0.0,0.0,0.0,0.0,2184.9,3585.7,3585.7,24.906,20.499,0.0,3.547,3.643,0.513,7.528,0.63,10.092,-12.692,0.0,0.0,0.0,8.338,-0.059,4.321,0.0,2.474,0.0,5.172,-8.912,-2.501,0.0,-0.022,-0.434,-0.048,2.771,-0.019,-1.317,11.721,0.0,0.0,0.0,-6.192,-0.055,-1.025,-3.732,-0.678,0.0,3.064,7.868,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,18787.0,5329.0,7037.0,0.0,207.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.825,72.825,37.499,37.499,35.325,0.0,0.0,0.0,0.0,0.0,0.0,0.583,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.711,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.085,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.3,3637.4,3637.4,29.395,21.237,0.0,3.488,3.662,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.071,1.561,0.0,13.874,0.0,7.379,-9.006,-2.523,0.0,0.059,-0.349,-0.035,2.951,0.006,-1.026,11.663,0.0,0.0,0.0,-5.926,-0.067,-0.257,-3.305,-3.207,0.0,3.126,7.776,1.987,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,72.932,72.932,38.446,38.446,34.485,0.0,0.0,0.0,0.0,0.0,0.0,0.569,0.0,0.0,4.857,0.858,9.021,0.0,0.0,4.51,0.0,0.334,1.865,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.818,0.0,10.24,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.6,2937.6,21.249,13.433,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.318,-0.074,1.56,0.0,13.75,0.0,0.0,-9.003,-2.522,0.0,0.145,-0.351,-0.036,2.949,0.005,-1.027,11.674,0.0,0.0,0.0,-5.93,-0.071,-0.258,-3.296,-3.175,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.126,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2029.6,2119.8,0.0,18.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,-0.347,-0.034,3.019,-0.001,-1.069,11.85,0.0,0.0,0.0,-6.519,-0.058,-0.26,-3.066,-3.053,0.0,0.645,8.013,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.503,70.503,36.144,36.144,34.359,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.052,0.746,9.022,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,32.18,0.0,12.924,9.075,0.62,0.0,0.0,0.0,0.0,2132.3,3634.9,3634.9,29.397,21.223,0.0,3.516,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.086,2.299,0.0,12.513,0.0,7.194,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.015,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.262,-3.126,-3.978,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.155,72.155,36.17,36.17,35.985,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.469,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,33.703,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.2,3634.9,3634.9,29.396,21.226,0.0,3.497,3.673,0.517,7.491,0.641,10.214,-12.776,0.0,0.0,0.0,8.3,-0.077,1.564,0.0,14.439,0.0,7.494,-9.043,-2.532,0.0,0.09,-0.319,-0.031,2.991,0.014,-0.931,11.637,0.0,0.0,0.0,-5.882,-0.073,-0.248,-3.185,-3.818,0.0,3.073,7.74,1.977,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.043,74.043,37.444,37.444,36.599,0.0,0.0,0.0,0.0,0.0,0.0,0.604,0.0,0.0,4.101,0.756,9.021,0.0,0.0,4.51,0.0,0.334,1.686,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2175.2,3634.9,3634.9,29.395,21.219,0.0,3.493,3.707,0.522,7.474,0.652,10.347,-12.789,0.0,0.0,0.0,8.221,-0.117,1.575,0.0,14.069,0.0,8.507,-9.111,-2.552,0.0,0.161,-0.288,-0.027,2.97,0.024,-0.806,11.624,0.0,0.0,0.0,-5.961,-0.113,-0.235,-3.172,-2.98,0.0,2.408,7.672,1.958,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,64.045,64.045,37.571,37.571,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,13.849,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.289,19.837,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.671,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.049,64.049,37.571,37.571,26.478,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.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,0.0,0.0,24.797,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.291,19.838,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.911,0.0,5.672,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.842,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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-cfis-airflow-fraction-zero.xml,72.752,72.752,37.5,37.5,35.253,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.712,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,33.017,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.4,3636.4,3636.4,29.389,21.234,0.0,3.488,3.663,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.072,1.506,0.0,13.873,0.0,7.366,-9.006,-2.523,0.0,0.058,-0.349,-0.036,2.95,0.006,-1.027,11.663,0.0,0.0,0.0,-5.928,-0.068,-0.25,-3.306,-3.208,0.0,3.126,7.776,1.987,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,72.858,72.858,38.447,38.447,34.411,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,4.857,0.859,9.021,0.0,0.0,4.51,0.0,0.334,1.867,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.762,0.0,10.241,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.1,2937.1,21.242,13.424,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.317,-0.075,1.506,0.0,13.749,0.0,0.0,-9.003,-2.522,0.0,0.144,-0.351,-0.036,2.948,0.005,-1.028,11.674,0.0,0.0,0.0,-5.932,-0.071,-0.25,-3.298,-3.176,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.127,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2028.9,2119.8,0.0,18.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.158,-0.347,-0.034,3.018,-0.001,-1.07,11.85,0.0,0.0,0.0,-6.52,-0.058,-0.253,-3.067,-3.054,0.0,0.645,8.013,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,69.956,69.956,36.141,36.141,33.815,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.054,0.747,9.022,0.0,0.0,4.51,0.0,0.334,0.484,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,31.67,0.0,12.938,9.075,0.62,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.219,0.0,3.52,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.085,1.917,0.0,12.485,0.0,7.091,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.014,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.248,-3.126,-3.977,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.082,72.082,36.169,36.169,35.913,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.47,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.1,3634.9,3634.9,29.39,21.223,0.0,3.496,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.509,0.0,14.436,0.0,7.481,-9.041,-2.532,0.0,0.089,-0.32,-0.031,2.991,0.013,-0.934,11.639,0.0,0.0,0.0,-5.882,-0.073,-0.241,-3.187,-3.822,0.0,3.072,7.742,1.978,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,73.974,73.974,37.444,37.444,36.53,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,4.101,0.757,9.021,0.0,0.0,4.51,0.0,0.334,1.687,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,34.214,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.215,0.0,3.493,3.707,0.522,7.473,0.652,10.345,-12.783,0.0,0.0,0.0,8.216,-0.117,1.52,0.0,14.064,0.0,8.497,-9.107,-2.551,0.0,0.161,-0.288,-0.027,2.968,0.024,-0.808,11.63,0.0,0.0,0.0,-5.968,-0.113,-0.229,-3.173,-2.985,0.0,2.407,7.676,1.959,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,64.818,64.818,37.58,37.58,27.237,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.508,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.349,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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,64.821,64.821,37.58,37.58,27.241,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.511,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.35,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.909,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.093,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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,64.043,64.043,37.571,37.571,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.288,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.906,0.0,5.671,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.817,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.046,64.046,37.571,37.571,26.475,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.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,24.794,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.289,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.672,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.908,80.908,37.992,37.992,42.916,0.0,0.0,0.0,0.0,0.0,0.0,0.705,0.0,0.0,4.351,0.636,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,40.198,0.0,11.008,9.075,0.623,0.0,0.0,0.0,16.0,2268.6,3975.9,3975.9,36.155,23.176,0.0,3.186,3.72,0.523,7.481,0.654,10.367,-12.797,0.0,0.0,0.0,8.257,-0.113,4.106,0.0,9.57,0.0,16.596,-9.12,-2.557,0.0,0.124,-0.175,-0.011,3.259,0.051,-0.484,11.616,0.0,0.0,0.0,-5.54,-0.108,-0.59,0.0,-2.06,-9.155,4.541,7.667,1.952,1354.8,997.6,11171.6,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.276,72.276,36.645,36.645,35.631,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,4.105,0.758,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.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,33.371,0.0,13.123,9.075,0.619,0.0,0.0,0.0,0.0,2161.7,3664.9,3664.9,29.261,21.267,0.0,3.498,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.564,0.0,14.169,0.0,7.427,-9.041,-2.532,0.0,0.087,-0.321,-0.031,2.99,0.013,-0.935,11.639,0.0,0.0,0.0,-5.883,-0.073,-0.248,-3.191,-3.662,0.0,3.108,7.742,1.978,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,64.816,64.816,37.581,37.581,27.235,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.506,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.4,3567.4,25.348,20.019,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.904,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.836,0.0,3.135,7.852,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,64.819,64.819,37.581,37.581,27.238,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.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,25.509,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.5,3567.5,25.349,20.02,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.135,7.852,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.519,80.519,37.994,37.994,42.525,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.359,0.638,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,39.829,0.0,11.036,9.075,0.623,0.0,0.0,0.0,17.0,2271.7,3978.8,3978.8,35.903,23.182,0.0,3.191,3.72,0.523,7.484,0.654,10.365,-12.799,0.0,0.0,0.0,8.264,-0.112,3.854,0.0,9.575,0.0,16.45,-9.116,-2.555,0.0,0.122,-0.176,-0.011,3.258,0.05,-0.49,11.614,0.0,0.0,0.0,-5.538,-0.107,-0.584,0.0,-2.064,-9.14,4.551,7.671,1.955,1354.8,997.6,11171.6,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.203,72.203,36.644,36.644,35.559,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,4.105,0.758,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.559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,0.0,13.124,9.075,0.619,0.0,0.0,0.0,0.0,2161.4,3664.9,3664.9,29.255,21.263,0.0,3.496,3.671,0.516,7.491,0.64,10.21,-12.765,0.0,0.0,0.0,8.304,-0.08,1.509,0.0,14.164,0.0,7.413,-9.037,-2.53,0.0,0.085,-0.323,-0.032,2.988,0.013,-0.938,11.648,0.0,0.0,0.0,-5.883,-0.076,-0.241,-3.192,-3.668,0.0,3.107,7.746,1.979,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.506,56.506,34.04,34.04,22.465,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,2.345,0.349,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.675,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.039,0.0,5.929,9.075,0.624,0.0,0.0,0.0,0.0,2119.4,3330.5,3330.5,23.032,15.879,0.0,3.553,3.643,0.513,7.548,0.63,10.093,-12.683,0.0,0.0,0.0,8.448,-0.057,4.805,0.0,0.729,0.0,4.875,-8.905,-2.499,0.0,0.166,-0.229,-0.018,3.367,0.031,-0.704,11.73,0.0,0.0,0.0,-5.266,-0.053,-0.948,0.0,-0.13,-13.009,1.634,7.883,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,0.729,35.707,-21.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-57.264,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.533,44.181,31.397,12.045,32.136,0.0,0.0,0.0,0.0,0.0,0.0,0.53,0.0,0.0,2.144,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.139,0.0,0.0,1.092,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.352,0.0,0.509,32.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,0.0,0.0,30.08,0.0,5.09,10.472,0.697,0.0,9.069,0.0,0.0,2429.5,2929.0,2929.0,26.181,14.941,0.0,3.5,3.695,0.519,7.462,1.121,10.341,-12.814,0.0,0.0,0.0,8.251,-0.1,1.512,0.0,15.392,0.0,2.785,-9.299,-2.562,0.0,0.761,-0.055,0.007,3.521,-0.185,-0.2,11.599,0.0,0.0,0.0,-5.118,-0.096,-0.184,0.0,-3.35,-11.787,0.419,8.613,1.948,1610.4,1574.2,10321.5,3637.5,2.894,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.188,43.837,31.372,12.021,31.816,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.141,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.352,0.0,0.509,31.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,29.781,0.0,5.079,10.472,0.697,0.0,9.068,0.0,0.0,2428.2,2923.3,2923.3,26.046,14.897,0.0,3.497,3.692,0.519,7.466,1.12,10.331,-12.811,0.0,0.0,0.0,8.262,-0.098,1.533,0.0,15.089,0.0,2.758,-9.292,-2.56,0.0,0.755,-0.059,0.006,3.521,-0.186,-0.214,11.602,0.0,0.0,0.0,-5.113,-0.094,-0.189,0.0,-3.299,-11.827,0.418,8.621,1.95,1610.4,1574.2,10321.5,3637.4,2.899,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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.728,68.538,37.442,29.253,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.695,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -65,7 +65,7 @@ base-residents-0.xml,41.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,100.904,100.904,51.844,51.844,41.154,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2581.2,4359.9,4359.9,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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,79.85,79.85,49.418,49.418,22.526,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2382.9,4091.7,4091.7,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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.631,52.631,28.242,28.242,24.389,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.933,0.726,3.888,0.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.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.841,0.0,12.74,3.562,0.616,0.0,0.0,0.0,0.0,1659.2,3186.1,3186.1,23.634,18.192,0.0,3.531,3.633,0.511,7.496,0.629,10.079,-12.698,0.0,0.0,0.0,8.301,-0.064,4.803,0.0,0.727,0.0,5.255,-7.189,-2.504,0.0,0.003,-0.415,-0.045,2.827,-0.013,-1.246,11.715,0.0,0.0,0.0,-6.109,-0.06,-1.114,-3.587,-0.158,0.0,2.892,6.197,2.006,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,18787.0,5329.0,7037.0,0.0,207.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.618,49.367,39.765,19.513,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.492,0.0,0.0,2.249,0.328,6.919,0.0,0.326,4.51,0.0,0.334,1.139,0.0,0.0,1.12,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.402,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.943,0.0,5.465,18.165,0.646,0.0,11.901,0.0,0.0,3045.2,3175.2,3175.2,25.734,15.337,0.0,3.804,3.7,0.521,7.522,0.647,10.284,-12.779,0.0,0.0,0.0,8.377,-0.08,1.505,0.0,15.32,0.0,2.592,-11.205,-2.542,0.0,0.291,-0.124,-0.003,3.483,0.06,-0.36,11.634,0.0,0.0,0.0,-5.143,-0.076,-0.198,0.0,-3.513,-12.561,0.448,10.45,1.968,2592.1,2706.5,20695.4,5541.3,1.873,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.279,49.028,39.741,19.49,29.538,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.247,0.327,6.919,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.125,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.402,29.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,27.648,0.0,5.459,18.165,0.646,0.0,11.901,0.0,0.0,3043.8,3169.5,3169.5,25.599,15.294,0.0,3.801,3.697,0.52,7.525,0.646,10.274,-12.772,0.0,0.0,0.0,8.383,-0.078,1.526,0.0,15.016,0.0,2.564,-11.192,-2.539,0.0,0.286,-0.128,-0.004,3.482,0.059,-0.375,11.641,0.0,0.0,0.0,-5.144,-0.074,-0.202,0.0,-3.462,-12.604,0.447,10.463,1.971,2592.1,2706.5,20695.6,5541.4,1.874,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.371,59.371,35.954,35.954,23.417,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.421,0.836,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.529,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.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,21.928,0.0,14.458,9.053,0.639,0.0,0.0,0.333,1.0,9422.1,10694.0,10694.0,37.366,22.431,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.34,-0.062,5.307,0.0,0.78,0.0,5.114,-8.97,-2.51,0.0,-0.156,-0.472,-0.054,2.75,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.247,-0.058,-1.254,-3.683,-0.172,0.0,3.305,8.307,2.0,1354.7,998.0,11252.4,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.264,33.264,28.415,28.415,4.849,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.106,0.523,7.326,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.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,4.542,0.0,9.14,7.3,0.562,0.0,0.0,0.5,0.5,9397.2,10430.4,10430.4,41.543,22.03,0.0,2.613,2.46,0.344,4.288,0.335,6.49,-12.497,0.0,0.0,0.0,3.717,-0.101,3.385,0.0,0.384,0.0,1.014,-6.566,-1.596,0.0,-0.196,-0.552,-0.065,2.495,-0.053,-1.664,11.861,0.0,0.0,0.0,-7.407,-0.056,-1.323,-6.195,-0.206,0.0,2.188,8.45,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.184,42.184,34.117,34.117,8.067,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.117,0.526,9.053,0.0,0.0,4.51,0.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.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,7.554,0.0,9.185,9.053,0.672,0.0,0.0,0.0,0.5,9393.8,10433.4,10433.4,31.865,22.032,0.0,2.915,2.807,0.393,5.404,0.421,7.516,-12.492,0.0,0.0,0.0,5.535,-0.056,3.86,0.0,0.581,0.0,1.734,-8.86,-2.486,0.0,-0.199,-0.555,-0.065,2.499,-0.054,-1.674,11.861,0.0,0.0,0.0,-7.338,-0.055,-1.325,-6.213,-0.206,0.0,2.197,8.45,2.023,1354.7,998.0,11253.8,2582.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 @@ -91,25 +91,25 @@ base-simcontrol-timestep-30-mins.xml,58.376,58.376,35.774,35.774,22.602,0.0,0.0, base.xml,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.116,86.116,46.815,46.815,39.301,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.649,4.302,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.255,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.047,0.0,50.461,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.2,6551.2,37.693,42.27,0.495,2.0,7.304,0.422,0.0,0.983,7.167,-4.983,0.0,0.0,0.485,1.293,-0.284,4.307,0.0,5.164,0.0,3.188,-6.732,-2.918,0.562,1.985,3.714,0.306,0.0,0.234,1.592,11.482,0.0,0.0,0.521,6.825,-0.27,-0.41,-1.893,-0.751,0.0,10.689,11.618,4.463,2104.5,2144.0,14468.7,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.872,67.872,40.648,40.648,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.617,3.35,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.739,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.138,0.0,39.922,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.1,5237.1,23.852,29.589,0.0,2.552,5.064,0.0,0.0,0.846,5.728,-4.089,0.0,0.0,0.0,1.814,-0.159,1.581,0.0,3.794,0.0,1.353,-5.041,-2.476,0.0,3.071,2.787,0.0,0.0,0.413,0.378,8.65,0.0,0.0,0.0,8.439,-0.152,-0.184,-1.38,-0.646,0.0,5.87,8.961,3.906,1610.9,1574.7,9989.4,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.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.635,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.311,136.311,75.785,75.785,60.526,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,29.582,9.335,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.377,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.887,0.0,109.161,8.985,3.512,0.0,0.0,0.0,101.0,3134.8,7528.2,7528.2,54.659,51.885,0.127,5.508,11.302,0.0,0.0,1.239,13.616,-5.791,0.0,0.0,0.0,3.101,-0.776,5.015,0.0,6.224,0.0,7.051,-7.184,-3.854,0.197,6.682,11.631,0.0,0.0,0.51,7.415,17.81,0.0,0.0,0.0,18.784,-0.763,1.041,-0.0,1.806,0.0,21.485,15.173,7.709,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 +house003.xml,68.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.636,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,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.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.105,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,-0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,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,94.722,94.722,53.326,53.326,41.396,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.385,5.087,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.194,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.243,0.0,60.811,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.177,0.0,3.051,8.217,0.269,0.0,1.36,9.436,-6.696,0.0,0.0,0.398,1.318,-0.376,5.064,0.0,5.092,0.0,4.319,-6.822,-3.611,0.0,2.972,4.257,0.212,0.0,0.272,2.338,15.363,0.0,0.0,0.414,7.509,-0.359,-0.486,-2.37,-0.74,0.0,14.575,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,138.036,138.036,31.67,31.67,106.366,0.0,0.0,0.0,0.0,0.0,0.0,1.847,0.0,0.0,2.873,0.336,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,80.517,0.0,20.139,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,77.515,0.0,7.514,13.084,3.279,0.0,0.0,0.0,0.0,1983.7,2445.8,2445.8,40.336,14.906,0.0,4.263,22.269,1.99,37.145,1.863,17.627,-9.418,0.0,0.0,0.0,9.269,-0.329,8.591,0.0,4.368,0.0,0.0,-14.513,-6.429,0.0,0.176,-0.786,-0.044,2.868,-0.084,-0.532,4.358,0.0,0.0,0.0,-3.902,-0.328,-0.438,-1.566,-0.071,0.0,0.0,5.704,2.258,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 +house006.xml,138.965,138.965,31.659,31.659,107.305,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,2.86,0.318,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.455,0.0,20.139,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.419,0.0,7.457,13.084,3.28,0.0,0.0,0.0,0.0,1987.1,2448.9,2448.9,40.493,14.948,0.0,4.264,22.276,1.991,37.139,1.864,17.627,-9.441,0.0,0.0,0.0,9.279,-0.324,9.531,0.0,4.369,0.0,0.0,-14.534,-6.438,0.0,0.178,-0.772,-0.043,2.878,-0.083,-0.527,4.335,0.0,0.0,0.0,-3.889,-0.323,-0.507,-1.556,-0.068,0.0,0.0,5.684,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.5,138.5,33.805,33.805,104.695,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.461,0.368,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.025,0.0,23.284,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.643,0.0,5.505,15.632,3.271,0.0,0.0,0.0,0.0,2191.9,2549.4,2549.4,39.657,13.483,0.0,4.727,23.697,4.449,10.125,1.499,18.833,-9.353,0.0,0.0,0.076,11.551,-0.37,6.119,0.0,20.828,0.0,2.861,-17.176,-7.736,0.0,0.209,-0.676,-0.049,0.583,-0.044,-0.299,4.596,0.0,0.0,-0.009,-3.997,-0.365,-0.186,-1.321,-1.869,0.0,0.103,6.367,2.562,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,181.679,181.679,39.095,39.095,142.585,0.0,0.0,0.0,0.0,0.0,0.0,2.451,0.0,0.0,3.562,0.519,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,109.146,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,102.846,0.0,10.107,18.129,3.215,0.0,0.0,0.0,0.0,2469.0,3392.1,3392.1,54.827,20.5,0.0,7.245,27.503,4.712,24.328,1.196,21.3,-7.8,0.0,0.0,1.291,17.853,-0.401,17.335,0.0,6.389,0.0,7.809,-18.6,-8.157,0.0,0.299,-1.123,-0.061,1.655,-0.088,-0.404,5.429,0.0,0.0,-0.108,-2.775,-0.401,-0.898,-1.768,-0.277,0.0,0.531,7.354,2.848,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 +house008.xml,182.78,182.78,39.105,39.105,143.675,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.55,0.517,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.237,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,103.874,0.0,10.042,18.129,3.215,0.0,0.0,0.0,0.0,2472.9,3404.2,3404.2,54.892,20.555,0.0,7.246,27.501,4.711,24.32,1.195,21.293,-7.816,0.0,0.0,1.287,17.857,-0.395,18.343,0.0,6.388,0.0,7.879,-18.613,-8.163,0.0,0.301,-1.114,-0.06,1.661,-0.088,-0.405,5.412,0.0,0.0,-0.107,-2.764,-0.395,-0.976,-1.758,-0.276,0.0,0.528,7.341,2.842,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.654,153.654,33.965,33.965,119.688,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.377,0.28,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.011,0.0,23.291,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.814,0.0,5.253,15.632,3.277,0.0,0.0,0.0,0.0,2226.3,2666.4,2666.4,44.142,14.378,0.0,5.112,28.424,4.32,13.051,2.253,18.888,-8.183,0.0,0.0,0.266,15.634,-0.399,8.745,0.0,21.441,0.0,0.0,-17.433,-7.835,0.0,0.249,-0.68,-0.028,0.733,-0.074,-0.173,4.596,0.0,0.0,-0.029,-4.105,-0.395,-0.254,-1.234,-1.787,0.0,0.0,6.089,2.436,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,152.218,152.218,37.463,37.463,114.756,0.0,0.0,0.0,0.0,0.0,0.0,1.826,0.0,0.0,2.854,0.262,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,81.317,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,76.626,0.0,7.2,18.129,3.215,0.0,0.0,0.0,0.0,2404.9,2846.0,2846.0,45.267,15.744,0.876,4.938,25.514,4.914,9.777,1.267,22.965,-9.158,0.0,0.0,0.93,11.367,-0.406,18.564,0.0,6.403,0.0,4.821,-18.604,-8.14,0.023,0.217,-0.756,-0.094,0.555,-0.074,-0.747,5.189,0.0,0.0,-0.049,-4.206,-0.403,-0.935,-1.655,-0.263,0.0,0.33,7.332,2.846,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,45.217,45.217,45.217,45.217,0.0,0.0,0.0,0.0,0.0,0.0,7.036,0.674,0.121,0.006,8.427,2.316,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.911,0.127,26.021,9.325,1.124,0.0,0.0,0.0,327.0,5018.6,3217.7,5018.6,18.277,15.962,0.0,2.684,5.468,0.0,0.0,1.635,3.46,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.207,-6.006,-2.08,0.0,1.649,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.653,8.877,2.825,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 +house010.xml,153.314,153.314,37.472,37.472,115.842,0.0,0.0,0.0,0.0,0.0,0.0,1.851,0.0,0.0,2.842,0.26,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.403,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,77.649,0.0,7.136,18.129,3.215,0.0,0.0,0.0,0.0,2408.7,2856.5,2856.5,45.335,15.794,0.876,4.938,25.516,4.913,9.777,1.267,22.969,-9.186,0.0,0.0,0.927,11.38,-0.398,19.585,0.0,6.404,0.0,4.88,-18.639,-8.157,0.024,0.219,-0.74,-0.091,0.56,-0.073,-0.734,5.162,0.0,0.0,-0.048,-4.186,-0.395,-1.005,-1.642,-0.259,0.0,0.328,7.297,2.829,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,45.111,45.111,45.111,45.111,0.0,0.0,0.0,0.0,0.0,0.0,6.969,0.634,0.121,0.006,8.431,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.727,0.128,26.024,9.325,1.124,0.0,0.0,0.0,328.0,5019.5,3217.4,5019.5,18.28,15.961,0.0,2.692,5.468,0.0,0.0,1.635,3.459,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.014,-6.006,-2.08,0.0,1.647,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.657,8.877,2.825,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.803,35.803,35.803,35.803,0.0,0.0,0.0,0.0,0.0,0.0,4.73,0.25,0.0,0.0,5.875,1.487,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.971,0.0,16.321,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.21,0.0,2.376,4.763,0.0,0.0,0.628,2.683,-1.833,0.0,0.0,2.037,0.0,-0.252,1.65,0.0,4.361,0.0,0.323,-4.819,-1.944,0.0,1.718,1.086,0.0,0.0,-0.036,0.466,3.509,0.0,0.0,1.565,0.0,-0.251,-0.162,-0.281,-0.741,0.0,0.275,6.805,2.434,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.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.632,31.632,31.632,31.632,0.0,0.0,0.0,0.0,0.0,0.0,3.416,0.195,0.006,0.0,4.248,1.387,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.622,0.006,16.43,6.85,0.597,0.0,0.0,0.0,0.0,2984.8,2234.9,2984.8,11.108,10.497,0.0,1.703,3.702,0.0,0.0,0.585,3.034,-2.492,0.0,0.0,2.208,0.0,-0.242,1.94,0.0,1.119,0.0,1.451,-3.784,-1.631,0.0,1.135,0.554,0.0,0.0,-0.068,0.551,4.735,0.0,0.0,0.612,0.0,-0.242,-0.268,-0.384,-0.256,0.0,1.648,6.085,2.422,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 -house015.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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 +house013.xml,30.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.528,31.528,31.528,31.528,0.0,0.0,0.0,0.0,0.0,0.0,3.334,0.189,0.006,0.0,4.236,1.384,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.395,0.006,16.446,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2222.1,2948.4,10.984,10.44,0.0,1.701,3.694,0.0,0.0,0.584,3.025,-2.479,0.0,0.0,2.205,0.0,-0.244,1.726,0.0,1.117,0.0,1.412,-3.76,-1.618,0.0,1.132,0.542,0.0,0.0,-0.07,0.539,4.748,0.0,0.0,0.603,0.0,-0.244,-0.251,-0.387,-0.261,0.0,1.645,6.108,2.435,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 +house015.xml,30.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.136,61.136,39.63,39.63,0.0,0.0,21.506,0.0,0.0,0.0,7.619,0.555,0.187,0.004,2.854,0.93,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.318,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.712,0.191,11.025,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3520.6,7549.9,43.059,18.675,0.0,4.42,10.83,0.617,5.691,0.298,7.708,-7.897,0.0,0.0,0.0,6.759,-0.021,5.727,0.0,3.865,0.0,0.0,-8.639,-4.771,0.0,-0.308,-0.75,-0.015,2.995,-0.044,-0.958,11.998,0.0,0.0,0.0,-8.643,-0.023,-1.318,-2.077,-0.984,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.688,91.688,27.773,27.773,63.915,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.4,0.594,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.803,0.0,18.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,41.964,0.0,9.725,11.141,3.425,0.0,0.0,151.0,94.0,1729.6,3570.0,3570.0,60.335,19.525,0.0,5.431,14.637,0.652,10.66,0.362,7.454,-9.321,0.0,0.0,0.719,4.37,0.008,19.78,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.106,-0.864,-0.015,4.795,-0.058,-1.113,7.472,0.0,0.0,-0.002,-4.724,0.009,-2.647,-1.647,-0.25,0.0,0.0,7.229,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,35.934,35.934,35.934,35.934,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.209,0.0,0.0,2.471,0.743,7.875,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.691,0.0,9.098,7.32,0.553,0.0,0.0,0.0,0.0,4617.7,2659.0,4617.7,19.992,10.862,0.0,4.566,4.624,0.0,0.0,0.276,3.697,-3.619,0.0,0.0,2.169,0.0,-0.02,2.615,0.0,2.09,0.0,1.848,-7.06,-2.597,0.0,-0.485,-0.765,0.0,0.0,-0.093,-1.304,4.336,0.0,0.0,0.02,0.0,-0.015,-0.746,-1.171,-0.721,0.0,1.219,6.864,2.164,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 house019.xml,130.259,130.259,51.668,51.668,78.591,0.0,0.0,0.0,0.0,0.0,0.0,1.131,0.0,0.0,11.151,3.607,9.726,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.816,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.7,0.0,43.304,7.894,1.826,0.0,0.0,193.0,266.0,2783.7,6251.1,6636.8,84.769,45.696,0.0,11.388,44.785,0.65,5.02,1.921,16.412,-14.196,0.0,0.0,0.0,5.959,-0.039,8.896,0.0,1.87,0.0,0.0,-10.31,-5.205,0.0,2.991,10.178,0.15,2.871,0.274,1.618,17.036,0.0,0.0,0.0,-4.227,-0.027,-0.15,-0.558,0.025,0.0,0.0,8.085,3.718,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,116.949,116.949,56.177,56.177,0.0,0.0,60.771,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.779,2.675,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.623,0.0,18.918,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.577,0.0,32.258,10.477,4.229,0.0,0.0,0.0,0.0,2703.5,6612.3,6612.3,31.214,31.937,0.908,11.001,10.555,1.131,9.76,0.631,15.142,-15.17,0.0,0.0,0.0,7.487,-0.04,15.235,0.0,0.837,0.0,0.0,-15.243,-7.022,0.249,0.223,0.285,0.064,6.486,0.018,-2.386,20.699,0.0,0.0,0.0,-6.534,-0.031,-2.604,-3.113,-0.191,0.0,0.0,13.513,5.728,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,3130.0,0.0,2330.0,800.0 -house021.xml,156.827,156.827,48.017,48.017,108.81,0.0,0.0,0.0,0.0,0.0,0.0,2.009,0.0,0.0,8.045,1.414,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.762,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2797.4,4687.2,4687.2,81.276,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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 +house021.xml,156.827,156.827,48.021,48.021,108.806,0.0,0.0,0.0,0.0,0.0,0.0,2.012,0.0,0.0,8.046,1.413,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.758,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2798.0,4687.4,4687.4,81.275,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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.942,137.942,48.641,48.641,0.0,89.301,0.0,0.0,0.0,0.0,0.0,2.221,0.0,0.0,8.642,0.872,12.472,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.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,73.302,0.0,18.701,10.989,1.482,0.0,0.0,184.0,120.0,2976.2,5355.4,5441.2,90.789,27.294,3.683,3.758,20.619,0.0,0.0,1.487,16.607,-13.137,0.0,0.0,14.695,0.0,-0.264,37.703,0.0,1.156,0.0,0.0,-9.561,-4.29,1.118,0.18,0.677,0.0,0.0,-0.116,-1.377,11.45,0.0,0.0,2.123,0.0,-0.255,-2.589,-1.167,-0.068,0.0,0.0,6.159,2.4,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,138.13,138.13,62.979,62.979,0.0,75.152,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.805,0.745,19.998,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.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,62.742,0.0,15.9,17.1,2.77,0.0,0.0,0.0,0.0,4239.1,4671.5,4833.4,62.489,20.562,0.0,10.21,21.491,1.201,16.448,0.85,9.987,-7.812,0.0,0.0,0.0,6.18,-0.035,23.704,0.0,1.638,0.0,0.0,-15.576,-5.907,0.0,-0.166,-0.965,-0.011,6.021,-0.112,-1.017,9.141,0.0,0.0,0.0,-5.972,-0.012,-2.63,-1.377,-0.31,0.0,0.0,10.082,3.312,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.27,129.27,43.791,43.791,0.0,85.479,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.314,0.475,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.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,0.0,15.506,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3558.1,3601.4,72.07,17.437,0.0,7.18,30.082,0.0,0.0,0.682,7.228,-7.897,0.0,0.0,5.182,0.0,-0.107,25.401,0.0,1.837,0.0,11.769,-8.641,-2.539,0.0,0.598,1.303,0.0,0.0,-0.039,-0.282,6.002,0.0,0.0,0.551,0.0,-0.1,-1.421,-0.661,-0.192,0.0,2.906,5.522,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 @@ -129,13 +129,13 @@ house037.xml,88.497,88.497,21.781,21.781,0.0,66.716,0.0,0.0,0.0,0.0,0.0,0.181,0. house038.xml,125.312,125.312,51.035,51.035,74.277,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.663,2.592,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.246,0.0,24.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,40.194,0.0,30.749,14.715,4.601,0.0,0.0,0.0,214.0,2455.6,5668.8,5727.5,48.331,27.398,0.0,3.653,14.884,0.651,4.463,0.81,12.433,-10.431,0.0,0.0,1.862,2.347,-0.047,22.487,0.002,0.595,0.0,0.0,-10.149,-3.873,0.0,0.847,2.607,0.141,2.251,0.018,0.927,12.753,0.0,0.0,0.337,-0.578,-0.035,-0.567,-0.343,0.005,0.0,0.0,8.627,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.915,99.915,24.039,24.039,75.876,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.147,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.189,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.915,0.0,0.0,14.272,1.137,0.0,0.0,0.0,0.0,1709.3,1463.6,1709.3,50.061,0.0,0.0,14.206,5.385,0.0,0.0,2.508,16.121,-13.538,0.0,0.0,14.028,0.0,-0.041,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.0,5211.5,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.645,101.645,23.521,23.521,78.124,0.0,0.0,0.0,0.0,0.0,0.0,1.305,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.742,0.0,17.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.224,0.0,0.0,8.002,5.526,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.269,5.618,22.289,0.0,4.298,2.095,12.884,-12.513,0.0,0.0,2.035,3.393,-0.099,19.744,0.0,0.612,0.0,0.0,-10.092,-4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,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.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.221,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.5,4659.5,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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 +house041.xml,258.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.222,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.8,4659.8,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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.113,231.113,39.974,39.974,191.139,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.695,0.059,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.693,0.0,24.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,163.898,0.0,2.43,15.632,3.233,0.0,0.0,0.0,0.0,2758.4,3129.4,3129.4,88.149,18.993,0.0,9.173,39.851,4.013,43.724,2.65,34.226,-19.417,0.0,0.0,2.449,14.541,-0.353,56.288,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.234,-1.359,-0.05,2.949,-0.141,-2.88,5.799,0.0,0.0,-0.257,-4.864,-0.349,-2.683,-1.152,-0.137,0.0,0.0,5.47,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.415,158.415,29.874,29.874,128.541,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.863,0.096,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.634,0.0,19.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.475,0.0,2.502,13.084,2.212,0.0,0.0,0.0,0.0,1987.9,2776.6,2776.6,54.557,13.333,0.0,3.168,23.192,2.294,33.785,5.576,22.939,-10.01,0.0,0.0,0.549,9.933,-0.294,28.975,0.0,1.578,0.0,0.0,-14.405,-5.173,0.0,0.05,-0.758,-0.084,1.794,-0.334,-1.957,4.656,0.0,0.0,-0.067,-3.531,-0.293,-1.516,-1.039,-0.139,0.0,0.0,4.422,1.388,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.59,226.59,43.407,43.407,183.183,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,1.999,0.167,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.608,0.0,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.221,0.0,3.225,13.084,4.459,0.0,0.0,0.0,0.0,3093.0,3635.3,3635.3,80.998,18.664,4.37,6.899,36.503,9.234,19.262,2.757,18.187,-11.68,0.0,0.0,12.916,15.091,-0.489,61.981,0.0,1.436,0.0,0.0,-18.085,-10.282,0.257,0.47,-1.293,-0.091,1.238,-0.112,-0.738,5.621,0.0,0.0,-1.102,-4.765,-0.486,-2.584,-0.942,-0.097,0.0,0.0,5.245,2.672,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.253,152.253,35.023,35.023,117.23,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.235,0.254,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.766,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,3.509,13.084,4.372,0.0,0.0,0.0,0.0,2316.2,3032.1,3032.1,47.197,12.913,3.572,3.08,15.119,2.29,32.755,1.135,18.522,-12.224,1.044,-0.408,0.086,12.636,-0.246,20.645,0.0,10.934,0.0,0.0,-14.644,-7.017,0.003,0.019,-1.02,-0.114,1.097,-0.081,-1.351,6.243,-0.064,0.396,-0.012,-3.964,-0.245,-1.121,-1.85,-1.217,0.0,0.0,4.85,2.048,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,24.996,24.996,24.996,24.996,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.452,0.303,0.011,3.749,1.006,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.848,0.314,12.82,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.521,3.838,0.0,0.0,0.327,2.234,-1.649,0.0,0.0,-0.155,0.0,-0.302,7.966,0.0,0.378,0.0,2.782,-3.568,-0.482,0.0,1.272,2.536,0.0,0.0,0.024,0.778,2.451,0.0,0.0,-0.154,0.0,-0.301,-0.456,-0.233,0.019,0.0,1.784,4.603,0.548,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.667,20.667,14.38,14.38,6.287,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.505,0.001,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.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,6.111,0.0,1.505,4.203,0.0,0.0,0.0,0.0,0.0,873.4,944.4,944.4,4.758,2.576,0.0,-0.001,0.775,0.127,0.0,0.0,1.725,-0.559,0.0,0.0,0.0,1.381,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.106,0.033,0.0,0.0,-0.055,0.798,0.0,0.0,0.0,-1.094,-0.01,-0.223,-0.378,-1.355,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.199,91.199,39.596,39.596,51.604,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,12.758,3.743,0.0,0.0,0.0,3.691,0.085,0.498,3.027,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.667,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.87,0.0,52.14,7.253,2.657,0.0,0.0,0.0,0.0,1535.1,5475.6,5475.6,42.042,33.926,1.023,2.632,12.008,0.0,0.0,0.804,4.614,-2.524,0.0,0.0,0.056,2.011,-0.562,6.928,0.0,4.194,0.0,6.425,-7.347,-1.496,1.32,0.991,9.263,0.0,0.0,0.563,3.672,4.27,0.0,0.0,0.075,10.062,-0.55,0.545,-0.64,1.938,0.0,7.016,11.643,2.195,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,35.247,35.247,31.75,31.75,3.497,0.0,0.0,0.0,0.0,0.0,7.568,0.046,0.0,0.0,7.285,0.19,2.63,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.745,0.0,30.546,4.262,1.318,0.0,0.0,0.0,110.0,4630.6,2820.9,4630.6,13.099,15.914,0.0,1.364,4.348,0.0,0.0,0.0,4.223,-5.784,0.0,0.0,0.0,1.262,-0.079,2.475,0.0,1.842,0.0,0.0,-2.535,-0.461,0.0,1.679,7.191,0.0,0.0,0.0,2.931,9.884,0.0,0.0,0.0,3.484,-0.079,-0.123,-3.016,0.687,0.0,0.0,7.435,1.013,728.6,567.4,7487.3,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.162,51.162,21.863,21.863,29.299,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,1.93,0.329,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.383,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.026,0.0,5.214,8.572,0.0,0.0,0.0,0.0,0.0,1155.8,2801.9,2801.9,10.86,17.162,0.0,4.162,6.55,0.0,0.0,2.038,5.185,-4.132,0.0,0.0,4.908,0.0,-0.168,2.259,0.0,3.686,0.0,1.843,-10.183,-1.22,0.0,-0.26,-0.247,0.0,0.0,-0.375,0.337,4.104,0.0,0.0,-0.948,0.0,-0.167,-0.447,-2.518,-0.726,0.0,0.592,5.352,0.562,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 +house048.xml,90.99,90.99,39.568,39.568,51.422,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.735,3.736,0.0,0.0,0.0,3.691,0.085,0.498,3.032,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.486,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.723,0.0,52.088,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,1.023,2.631,12.009,0.0,0.0,0.803,4.611,-2.524,0.0,0.0,0.056,2.014,-0.564,6.791,0.0,4.189,0.0,6.413,-7.341,-1.494,1.32,0.99,9.262,0.0,0.0,0.563,3.668,4.27,0.0,0.0,0.075,10.064,-0.552,0.509,-0.641,1.936,0.0,7.002,11.649,2.197,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,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,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.685,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.253,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.687,7.21,0.0,0.0,0.0,2.958,9.864,0.0,0.0,0.0,3.486,-0.08,-0.045,-2.995,0.697,0.0,0.0,7.425,1.011,728.6,567.4,7487.1,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.544,51.544,21.856,21.856,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,1.919,0.325,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.773,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.163,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2814.7,2814.7,11.085,17.256,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.164,2.669,0.0,3.683,0.0,1.887,-10.202,-1.222,0.0,-0.258,-0.24,0.0,0.0,-0.372,0.345,4.091,0.0,0.0,-0.937,0.0,-0.162,-0.526,-2.496,-0.719,0.0,0.59,5.334,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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index c5d72a09e..f16101a85 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,4433.11,144.0,4289.11,0.0,4433.11,0.0,0.0,0.0,0.0, base-location-miami-fl.xml,1452.56,144.0,1308.56,0.0,1452.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-location-phoenix-az.xml,1633.82,144.0,1345.81,0.0,1489.81,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,1202.56,144.0,817.34,0.0,961.34,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,2101.48,144.0,1379.02,0.0,1523.02,144.0,434.46,578.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-balanced.xml,2110.41,144.0,1379.5,0.0,1523.5,144.0,442.91,586.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-bath-kitchen-fans.xml,1855.96,144.0,1314.04,0.0,1458.04,144.0,253.92,397.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-cfis-airflow-fraction-zero.xml,2038.46,144.0,1376.25,0.0,1520.25,144.0,374.21,518.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-airflow-fraction-zero.xml,2037.69,144.0,1376.25,0.0,1520.25,144.0,373.44,517.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-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,1392.17,144.0,1248.17,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1978.47,144.0,1326.49,0.0,1470.49,144.0,363.98,507.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-mechvent-cfis-supplemental-fan-supply.xml,1996.66,144.0,1327.46,0.0,1471.46,144.0,381.2,525.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-mechvent-cfis.xml,2049.92,144.0,1374.21,0.0,1518.21,144.0,387.71,531.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1947.32,144.0,1378.87,0.0,1522.87,144.0,280.45,424.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-mechvent-erv.xml,1947.36,144.0,1378.87,0.0,1522.87,144.0,280.49,424.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-cfis-evap-cooler-only-ducted.xml,1392.16,144.0,1248.16,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1972.62,144.0,1326.41,0.0,1470.41,144.0,358.21,502.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,1995.87,144.0,1327.43,0.0,1471.43,144.0,380.44,524.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-cfis.xml,2049.19,144.0,1374.21,0.0,1518.21,144.0,386.98,530.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-mechvent-erv-atre-asre.xml,1955.74,144.0,1379.21,0.0,1523.21,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-mechvent-erv.xml,1955.78,144.0,1379.21,0.0,1523.21,144.0,288.57,432.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-exhaust-rated-flow-rate.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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-hrv-asre.xml,1947.28,144.0,1378.86,0.0,1522.86,144.0,280.42,424.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-hrv.xml,1947.32,144.0,1378.86,0.0,1522.86,144.0,280.46,424.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-multiple.xml,2136.94,144.0,1394.31,0.0,1538.31,144.0,454.63,598.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-mechvent-supply.xml,2010.34,144.0,1344.89,0.0,1488.89,144.0,377.45,521.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-mechvent-hrv-asre.xml,1955.73,144.0,1379.22,0.0,1523.22,144.0,288.51,432.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-hrv.xml,1955.76,144.0,1379.22,0.0,1523.22,144.0,288.54,432.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-multiple.xml,2132.86,144.0,1394.38,0.0,1538.38,144.0,450.48,594.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-mechvent-supply.xml,2009.54,144.0,1344.85,0.0,1488.85,144.0,376.69,520.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-whole-house-fan.xml,1775.28,144.0,1249.3,0.0,1393.3,144.0,237.98,381.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-misc-additional-properties.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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-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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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,674.29,108.0,777.89,-591.68,294.21,144.0,236.08,380.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,670.75,108.0,746.74,-564.08,290.67,144.0,236.08,380.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,635.35,108.0,702.47,-555.2,255.27,144.0,236.08,380.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 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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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 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,621.03,465.0,1255.78,-1476.89,243.89,132.0,245.14,377.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,84.04,465.0,1255.78,-2013.87,-293.1,132.0,245.14,377.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,-338.78,210.0,1255.78,-2181.7,-715.92,132.0,245.14,377.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,1788.92,144.0,1255.78,0.0,1399.78,144.0,245.14,389.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,1070.49,144.0,1152.18,-710.11,586.07,144.0,340.42,484.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-misc-defaults.xml,1066.2,144.0,1151.27,-710.11,585.16,144.0,337.04,481.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-misc-emissions.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-misc-generators-battery-scheduled.xml,2284.75,144.0,1373.35,0.0,1517.35,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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 @@ -65,7 +65,7 @@ base-residents-0.xml,917.12,144.0,268.49,0.0,412.49,144.0,360.63,504.63,0.0,0.0, base-residents-1-misc-loads-large-uncommon.xml,2776.92,144.0,1902.69,0.0,2046.69,144.0,435.96,579.96,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,2510.99,144.0,1813.66,0.0,1957.66,144.0,238.63,382.63,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,1582.86,144.0,1036.5,0.0,1180.5,144.0,258.36,402.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-residents-5.xml,1320.39,144.0,1459.29,-743.14,860.14,144.0,316.25,460.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-residents-5.xml,1316.19,144.0,1458.42,-743.14,859.28,144.0,312.91,456.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-all-10-mins.xml,1855.58,144.0,1319.52,0.0,1463.52,144.0,248.06,392.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-schedules-detailed-mixed-timesteps-power-outage.xml,1382.22,144.0,1042.85,0.0,1186.85,144.0,51.37,195.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps.xml,1625.55,144.0,1252.09,0.0,1396.09,144.0,85.46,229.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 @@ -92,24 +92,24 @@ base.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0 house001.xml,2408.68,144.0,1713.38,0.0,1857.38,144.0,407.3,551.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 house002.xml,2057.81,144.0,1487.66,0.0,1631.66,144.0,282.15,426.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 house003.xml,2049.34,144.0,1468.5,0.0,1612.5,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 -house004.xml,3688.92,144.0,2773.65,0.0,2917.65,144.0,627.27,771.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 +house004.xml,3685.65,144.0,2771.89,0.0,2915.89,144.0,625.76,769.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 house005.xml,2668.68,144.0,1951.66,0.0,2095.66,144.0,429.02,573.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 -house006.xml,2268.19,144.0,1177.93,0.0,1321.93,144.0,802.26,946.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 +house006.xml,2274.89,144.0,1177.55,0.0,1321.55,144.0,809.34,953.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 house007.xml,2335.01,144.0,1257.35,0.0,1401.35,144.0,789.66,933.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 -house008.xml,2817.53,144.0,1454.1,0.0,1598.1,144.0,1075.43,1219.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 +house008.xml,2826.13,144.0,1454.47,0.0,1598.47,144.0,1083.66,1227.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 house009.xml,2454.05,144.0,1263.31,0.0,1407.31,144.0,902.74,1046.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 -house010.xml,2546.92,144.0,1393.39,0.0,1537.39,144.0,865.53,1009.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 -house011.xml,1602.84,144.0,1458.84,0.0,1602.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 +house010.xml,2555.49,144.0,1393.76,0.0,1537.76,144.0,873.73,1017.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 +house011.xml,1599.43,144.0,1455.43,0.0,1599.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 house012.xml,1299.12,144.0,1155.12,0.0,1299.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 -house013.xml,1132.54,144.0,988.54,0.0,1132.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 -house014.xml,1164.54,144.0,1020.54,0.0,1164.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 -house015.xml,1132.54,144.0,988.54,0.0,1132.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 +house013.xml,1129.43,144.0,985.43,0.0,1129.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 +house014.xml,1161.2,144.0,1017.2,0.0,1161.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 +house015.xml,1129.43,144.0,985.43,0.0,1129.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 house016.xml,2697.33,144.0,1754.03,0.0,1898.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.3,799.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 house017.xml,2096.74,144.0,1013.86,0.0,1157.86,144.0,794.88,938.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 house018.xml,1734.45,144.0,1590.45,0.0,1734.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 house019.xml,3151.56,144.0,1886.16,0.0,2030.16,144.0,977.4,1121.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 house020.xml,4889.09,144.0,2486.43,0.0,2630.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.66,2258.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 -house021.xml,3394.09,144.0,1752.86,0.0,1896.86,144.0,1353.23,1497.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 +house021.xml,3394.18,144.0,1753.0,0.0,1897.0,144.0,1353.18,1497.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 house022.xml,5106.63,144.0,1775.67,0.0,1919.67,0.0,0.0,0.0,0.0,3186.96,3186.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 house023.xml,5125.06,144.0,2299.06,0.0,2443.06,0.0,0.0,0.0,0.0,2682.0,2682.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house024.xml,4793.18,144.0,1598.62,0.0,1742.62,0.0,0.0,0.0,0.0,3050.56,3050.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 @@ -129,13 +129,13 @@ house037.xml,3488.99,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2380.96,2380.96,0. house038.xml,3074.81,144.0,1863.06,0.0,2007.06,144.0,923.75,1067.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 house039.xml,2109.19,144.0,877.55,0.0,1021.55,144.0,943.64,1087.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 house040.xml,2118.23,144.0,858.63,0.0,1002.63,144.0,971.6,1115.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 -house041.xml,3632.63,144.0,1746.4,0.0,1890.4,144.0,1598.23,1742.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 +house041.xml,3632.64,144.0,1746.41,0.0,1890.41,144.0,1598.23,1742.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 house042.xml,3216.44,144.0,1486.79,0.0,1630.79,144.0,1441.65,1585.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 house043.xml,2368.64,144.0,1111.13,0.0,1255.13,144.0,969.51,1113.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 house044.xml,3284.12,144.0,1614.48,0.0,1758.48,144.0,1381.64,1525.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 house045.xml,2474.84,144.0,1302.64,0.0,1446.64,144.0,884.2,1028.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 house046.xml,950.44,144.0,806.44,0.0,950.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 house047.xml,990.8,144.0,636.48,0.0,780.48,144.0,66.32,210.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 -house048.xml,2271.97,144.0,1449.16,0.0,1593.16,144.0,534.81,678.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 -house049.xml,1477.13,144.0,1166.0,0.0,1310.0,144.0,23.13,167.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 -house050.xml,1238.98,144.0,652.31,0.0,796.31,144.0,298.67,442.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 +house048.xml,2269.05,144.0,1448.13,0.0,1592.13,144.0,532.92,676.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 +house049.xml,1485.34,144.0,1174.21,0.0,1318.21,144.0,23.13,167.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 +house050.xml,1242.72,144.0,652.08,0.0,796.08,144.0,302.64,446.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 From b8c505dbd331cccbcb464dcd8bb5806dcd3ef44d Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 10 Jan 2024 14:02:12 -0700 Subject: [PATCH 09/35] Squashed 'hpxml-measures/' changes from c102844ee2..d42c040f55 d42c040f55 Minor refactoring. 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 1092b38dee Handle case where Qinf > Qtot. 8db9c4dd9c Latest results. fbf067fdcb Fix assert_in_epsilon tests. c3c95819d2 Simplify code. 9dabadd9b4 Update Changelog.md [ci skip] 1115e941ee Fix typo in docs. b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. git-subtree-dir: hpxml-measures git-subtree-split: d42c040f55f0e69dc7be16d155514f03b23ca47e --- Changelog.md | 3 + HPXMLtoOpenStudio/measure.xml | 14 +-- HPXMLtoOpenStudio/resources/airflow.rb | 91 +++++++++++++------ HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 7 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 ++-- HPXMLtoOpenStudio/tests/test_hvac.rb | 6 +- docs/source/workflow_inputs.rst | 14 ++- .../tests/base_results/results_sizing.csv | 22 ++--- .../results_workflow_simulations1.csv | 26 +++--- .../results_workflow_simulations1_bills.csv | 16 ++-- .../results_workflow_simulations2.csv | 58 ++++++------ .../results_workflow_simulations2_bills.csv | 54 +++++------ 13 files changed, 192 insertions(+), 143 deletions(-) diff --git a/Changelog.md b/Changelog.md index 06e00122e..6dedcae74 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,6 +12,9 @@ __New Features__ - **Breaking change**: Replaces `roof_radiant_barrier`/`roof_radiant_barrier_grade` arguments with `radiant_barrier_attic_location`/`radiant_barrier_grade`. - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - The "Geometry: Building Number of Units" input is now written to the HPXML `NumberofUnitsInBuilding` element. +- Updates per ANSI/RESNET/ICC 301-2022: + - Small change to default flow rate for imbalanced mechanical ventilation systems. + - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). __Bugfixes__ diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index af3fe3617..a619e67a2 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ba59c3a3-bad0-4a0a-8cc5-7a9cd3ceb980 - 2024-01-05T17:57:10Z + 84752f39-818c-42fa-a75c-239e9ae36e16 + 2024-01-10T20:32:20Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 6A8FF11E + BAC68282 battery.rb @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - AB45F0B9 + 348C4650 hpxml_schema/HPXML.xsd @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - 94E05F98 + 68FACE30 lighting.rb @@ -592,7 +592,7 @@ test_defaults.rb rb test - 7430EFAB + ABC2B890 test_enclosure.rb @@ -616,7 +616,7 @@ test_hvac.rb rb test - 5567231B + B582B9C9 test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index b58619ed7..30dfb9e6c 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -103,19 +103,22 @@ def self.apply(model, runner, weather, spaces, hpxml_header, hpxml_bldg, cfa, nb vented_attic = hpxml_bldg.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } vented_crawl = hpxml_bldg.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - _sla, conditioned_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) if @apply_ashrae140_assumptions - conditioned_const_ach = nach + conditioned_const_ach = infil_values[:nach] conditioned_ach50 = nil + else + conditioned_ach50 = infil_values[:ach50] + conditioned_const_ach = nil end - conditioned_const_ach *= a_ext unless conditioned_const_ach.nil? - conditioned_ach50 *= a_ext unless conditioned_ach50.nil? + conditioned_const_ach *= infil_values[:a_ext] unless conditioned_const_ach.nil? + conditioned_ach50 *= infil_values[:a_ext] unless conditioned_ach50.nil? has_flue_chimney_in_cond_space = hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space apply_natural_ventilation_and_whole_house_fan(model, hpxml_bldg.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml_bldg.header.natvent_days_per_week, - infil_volume, infil_height, unavailable_periods) + infil_values[:volume], infil_values[:height], unavailable_periods) apply_infiltration_and_ventilation_fans(model, weather, hpxml_bldg.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_values[:volume], infil_values[:height], vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) end @@ -214,31 +217,23 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) end a_ext = 1.0 if a_ext.nil? - return sla, ach50, nach, volume, height, a_ext + return { sla: sla, ach50: ach50, nach: nach, volume: volume, height: height, a_ext: a_ext } end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) - # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 - sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) + # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + bldg_type = hpxml_bldg.building_construction.residential_facility_type - nl = get_infiltration_NL_from_SLA(sla, height) + nl = get_infiltration_NL_from_SLA(infil_values[:sla], infil_values[:height]) q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) - q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) - if vent_fan.is_balanced? - phi = 1.0 + is_balanced, frac_imbal = true, 0.0 else - phi = q_inf / q_tot + is_balanced, frac_imbal = false, 1.0 end - q_fan = q_tot - phi * (q_inf * a_ext) - q_fan = [q_fan, 0].max - - if not vent_fan.hours_in_operation.nil? - # Convert from hourly average requirement to actual fan flow rate - q_fan *= 24.0 / vent_fan.hours_in_operation - end - + q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, infil_values[:a_ext], bldg_type, eri_version, vent_fan.hours_in_operation) return q_fan end @@ -1623,7 +1618,10 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') + infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') + infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2006,12 +2004,12 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, weather) def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) end def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) @@ -2091,6 +2089,47 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end + + def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) + q_inf_eff = q_inf * a_ext + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + if frac_imbal == 0 + q_fan = q_tot - q_inf_eff + else + q_inf_eff = q_inf * a_ext + if q_inf_eff >= q_tot + q_fan = 0.0 + else + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end + end + elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') + if is_balanced + phi = 1.0 + else + phi = q_inf / q_tot + end + q_fan = q_tot - phi * q_inf_eff + else + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type + # No infiltration credit for attached/multifamily + return q_tot + end + + if q_inf > 2.0 / 3.0 * q_tot + q_fan = q_tot - 2.0 / 3.0 * q_tot + else + q_fan = q_tot - q_inf + end + end + + # Convert from hourly average requirement to actual fan flow rate + if not hours_in_operation.nil? + q_fan *= 24.0 / hours_in_operation + end + + return [q_fan, 0.0].max + end end class Duct diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 6ea74058f..33c80b5db 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1919,18 +1919,21 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? + + if vent_fan.flow_rate.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) vent_fan.rated_flow_rate_isdefaulted = true end + if vent_fan.fan_power.nil? vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 58438f7e7..6a6700e89 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -989,8 +989,8 @@ def self.process_load_infiltration_ventilation(bldg_design_loads, weather) Heating and Cooling Loads: Infiltration & Ventilation ''' - sla, _ach50, _nach, _volume, _height, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) - sla *= a_ext + infil_values = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) + sla = infil_values[:sla] * infil_values[:a_ext] ela = sla * @cfa ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 58795b40f..d8df5d93e 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2287,7 +2287,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2297,13 +2297,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2313,13 +2313,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2328,7 +2328,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 21.7, 61.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.0, 74.2) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2337,7 +2337,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2355,7 +2355,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2385,7 +2385,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2396,7 +2396,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 173.3, 298.8, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 3d2cc838f..54d39f60f 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -1128,7 +1128,7 @@ def test_install_quality_furnace_central_air_conditioner_2_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [1.088, 1.088].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end @@ -1141,7 +1141,7 @@ def test_install_quality_furnace_central_air_conditioner_var_speed cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end @@ -1211,7 +1211,7 @@ def test_install_quality_mini_split_air_conditioner cooling_system = hpxml_bldg.cooling_systems[0] program_values = _check_install_quality_multispeed_ratio(cooling_system, model) [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| - assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) end end diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index f8921e62a..4359187c1 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2649,28 +2649,32 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] For central fan integrated supply systems, IsSharedSystem must be false. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - Φ*(Qinf * Aext) + \- **balanced, energy recovery ventilator, or heat recovery ventilator**: Qfan = Qtot - Qinf_eff + \- **exhaust only, supply only, or central fan integrated supply**: Qfan = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 + where Qfan = required mechanical ventilation rate (cfm) Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` - Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. - .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2012: + .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2022: \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm @@ -2678,7 +2682,7 @@ If not entered, the simulation will not include mechanical ventilation. \- **central fan integrated supply**: 0.58 W/cfm - \- **exhaust only" or "supply only**: 0.35 W/cfm + \- **exhaust only or supply only**: 0.35 W/cfm **Exhaust/Supply Only** diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index d3e35f8a0..70506a3a6 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -108,11 +108,11 @@ denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodo 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-HERS.xml,35132.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,29280.0,30497.0,31147.0,693.0,951.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35188.0,36653.0,31147.0,832.0,1143.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57566.0,31147.0,1307.0,1795.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57570.0,31147.0,1307.0,1795.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,23459.0,0.0,534.0,732.0 @@ -120,10 +120,10 @@ denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0,534.0, denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0,832.0,967.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,39186.0,41044.0,31147.0,927.0,1280.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20424.0,0.0,0.0,637.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24848.0,26181.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20423.0,0.0,0.0,637.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24847.0,26181.0,564.0,775.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,46458.0,48389.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,46458.0,48392.0,26181.0,1099.0,1509.0 denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17356.0,0.0,0.0,722.0 denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14282.0,0.0,0.0,476.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17356.0,0.0,0.0,722.0 @@ -294,18 +294,18 @@ houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-method 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,30106.0,28785.0,20038.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29787.0,20038.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34137.0,20038.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30106.0,28783.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29789.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34140.0,20038.0,698.0,1065.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,28785.0,0.0,291.0,898.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,28783.0,0.0,291.0,898.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,40845.0,39322.0,20038.0,798.0,819.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,624.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,40845.0,39322.0,20038.0,798.0,819.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24438.0,0.0,0.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24438.0,16055.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24436.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24436.0,16055.0,499.0,762.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,27617.0,26405.0,16055.0,540.0,823.0 houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20779.0,0.0,0.0,864.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 820be3abb..130fa409e 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,40.91,34.086,26.107,19.282,0.637,0.0, base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.392,28.392,28.392,28.392,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.328,0.0,0.0,2.415,2.868,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.588,0.0,8.984,9.374,0.577,0.0,0.0,0.0,0.0,1731.7,2025.8,2025.8,3.449,7.707,0.0,-0.016,2.488,0.0,0.0,0.427,3.957,-2.568,0.0,0.0,-0.012,0.0,-0.388,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.01,-1.077,0.0,0.0,-0.038,-1.093,5.634,0.0,0.0,-0.006,0.0,-0.378,-0.502,-1.681,-0.383,0.0,0.0,7.368,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.637,31.637,16.644,16.644,14.993,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.01,0.548,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.58,0.0,14.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.535,0.0,9.264,9.374,2.266,0.0,0.0,0.0,0.0,1020.3,1539.9,1539.9,3.498,7.734,0.0,-0.017,2.441,0.0,0.0,0.425,3.917,-2.473,0.0,0.0,-0.012,0.0,-0.414,2.026,0.0,0.0,0.0,0.0,-4.709,-0.753,0.0,-0.012,-1.134,0.0,0.0,-0.041,-1.149,5.73,0.0,0.0,-0.007,0.0,-0.404,-0.925,-1.711,0.0,0.0,0.0,7.747,1.273,1354.8,997.6,11172.0,3093.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-laundry-room.xml,29.523,29.523,16.46,16.46,13.063,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.863,0.51,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.749,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.692,0.0,8.568,9.374,0.569,0.0,0.0,0.0,0.0,1011.4,1528.6,1528.6,3.655,7.615,0.0,-0.017,2.502,0.0,0.0,0.426,3.98,-2.665,0.0,0.0,-0.013,0.0,-0.393,2.064,0.0,0.0,0.0,0.0,-4.482,-0.801,0.0,-0.012,-1.03,0.0,0.0,-0.033,-1.02,5.538,0.0,0.0,-0.008,0.0,-0.383,-0.847,-1.646,0.0,0.0,0.0,6.88,1.226,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-mechvent-multiple.xml,50.688,50.688,30.635,30.635,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.786,0.301,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.892,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.311,0.0,5.073,9.374,0.616,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.585,8.979,0.0,-0.017,2.792,0.0,0.0,0.407,4.197,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.344,0.0,0.0,-6.695,-1.194,0.0,-0.013,-0.139,0.0,0.0,0.06,0.131,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.754,-4.199,0.0,0.0,5.311,0.832,1354.8,997.6,11171.6,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.544,32.544,27.245,27.245,5.299,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.63,0.445,9.538,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.341,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.24,0.0,7.41,9.374,0.587,0.0,0.0,0.0,0.0,1656.4,2023.4,2023.4,4.163,7.879,0.0,-0.018,2.64,0.0,0.0,0.432,4.152,-3.079,0.0,0.0,-0.017,0.0,-0.359,1.776,0.0,1.929,0.0,0.0,-5.323,-0.931,0.0,-0.013,-0.758,0.0,0.0,-0.001,-0.635,5.123,0.0,0.0,-0.012,0.0,-0.351,-0.521,-1.382,-1.753,0.0,0.0,6.655,1.096,1354.8,997.6,11171.6,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.767,30.767,27.1,27.1,3.667,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.53,0.418,9.548,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.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,3.395,0.0,7.118,9.374,0.597,0.0,0.0,0.0,0.0,1646.4,2003.5,2003.5,5.987,8.5,0.0,-0.016,2.685,0.0,0.0,0.398,4.043,-3.61,0.0,0.0,-0.018,0.0,-0.252,1.74,0.0,5.31,0.0,0.0,-5.808,-1.041,0.0,-0.012,-0.554,0.0,0.0,-0.005,-0.492,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.431,-1.381,-1.484,0.0,0.0,6.179,0.985,1354.8,997.6,11171.6,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-mechvent-multiple.xml,50.809,50.809,30.633,30.633,20.176,0.0,0.0,0.0,0.0,0.0,0.0,0.058,0.0,0.0,2.787,0.3,9.566,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,8.014,0.0,0.0,0.0,0.0,12.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.425,0.0,5.07,9.374,0.616,0.0,0.0,0.0,0.0,1866.4,2259.8,2259.8,7.611,8.992,0.0,-0.017,2.792,0.0,0.0,0.407,4.192,-4.241,0.0,0.0,-0.02,0.0,-0.261,0.209,0.0,12.332,0.0,0.0,-6.697,-1.195,0.0,-0.012,-0.136,0.0,0.0,0.06,0.131,3.961,0.0,0.0,-0.016,0.0,-0.255,-0.016,-0.753,-4.193,0.0,0.0,5.309,0.832,1354.8,997.6,11171.6,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.425,32.425,27.296,27.296,5.129,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.673,0.455,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.163,0.0,0.0,0.0,0.0,3.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.075,0.0,7.54,9.374,0.586,0.0,0.0,0.0,0.0,1729.0,2025.3,2025.3,3.846,7.873,0.0,-0.018,2.631,0.0,0.0,0.435,4.153,-3.003,0.0,0.0,-0.016,0.0,-0.365,1.422,0.0,1.938,0.0,0.0,-5.244,-0.913,0.0,-0.013,-0.791,0.0,0.0,-0.003,-0.672,5.199,0.0,0.0,-0.011,0.0,-0.356,-0.419,-1.404,-1.792,0.0,0.0,6.732,1.113,1354.8,997.6,11171.6,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.516,30.516,27.12,27.12,3.397,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.548,0.423,9.547,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.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,3.145,0.0,7.202,9.374,0.596,0.0,0.0,0.0,0.0,1648.3,2018.5,2018.5,5.706,8.494,0.0,-0.016,2.686,0.0,0.0,0.4,4.052,-3.58,0.0,0.0,-0.018,0.0,-0.254,1.401,0.0,5.314,0.0,0.0,-5.778,-1.034,0.0,-0.012,-0.569,0.0,0.0,-0.006,-0.508,4.622,0.0,0.0,-0.014,0.0,-0.248,-0.325,-1.403,-1.51,0.0,0.0,6.209,0.992,1354.8,997.6,11171.6,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.743,2.296,26.107,1.659,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.683,30.683,17.571,17.571,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1056.9,1589.2,1589.2,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,29.587,29.587,16.475,16.475,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1004.2,1536.5,1536.5,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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 @@ -63,7 +63,7 @@ base-dhw-desuperheater-2-speed.xml,31.989,31.989,31.989,31.989,0.0,0.0,0.0,0.0,0 base-dhw-desuperheater-gshp.xml,38.021,38.021,38.021,38.021,0.0,0.0,0.0,0.0,0.0,0.0,5.552,0.566,0.0,0.0,3.04,0.988,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,13.555,9.073,0.614,2.863,0.0,0.0,0.0,3419.5,2343.1,3419.5,22.235,16.609,0.0,3.593,3.642,0.513,7.526,0.63,10.095,-12.683,0.0,0.0,0.0,8.321,-0.063,4.805,0.0,0.729,0.0,3.701,-8.59,-2.499,0.0,0.005,-0.446,-0.049,2.735,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.26,-0.059,-1.145,-3.86,-0.163,0.0,2.129,8.481,2.01,1354.8,997.6,11186.3,2566.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,18787.0,5329.0,7037.0,0.0,207.0,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.254,56.254,29.571,29.571,26.682,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.353,0.827,2.675,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,24.987,0.0,14.378,9.086,1.809,2.921,0.0,0.0,0.0,1884.0,3127.9,3127.9,25.892,19.484,0.0,3.523,3.635,0.511,7.505,0.628,10.069,-12.724,0.0,0.0,0.0,8.338,-0.052,4.795,0.0,0.727,0.0,5.643,-5.455,-2.509,0.0,-0.001,-0.405,-0.044,2.871,-0.011,-1.224,11.689,0.0,0.0,0.0,-6.044,-0.049,-1.099,-3.608,-0.154,0.0,3.142,7.597,2.0,1354.7,997.5,11146.8,2557.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.582,33.582,33.582,33.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349,1.145,6.811,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.077,9.08,0.0,2.843,0.0,0.0,0.0,1932.8,3239.8,3239.8,0.0,19.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.447,-0.049,2.73,-0.026,-1.379,11.85,0.0,0.0,0.0,-6.828,-0.064,-1.163,-3.706,-0.163,0.0,3.168,8.336,2.036,1354.8,997.6,11133.3,2554.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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,0.0,19.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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.437,8.613,2.036,1354.8,997.6,11182.7,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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.438,8.613,2.036,1354.8,997.6,11182.6,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.xml,33.61,33.61,33.61,33.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.401,1.162,6.771,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.296,9.074,0.662,2.892,0.0,0.0,0.0,2069.0,3252.8,3252.8,0.0,19.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.057,-0.453,-0.05,2.715,-0.028,-1.397,11.85,0.0,0.0,0.0,-6.838,-0.063,-1.17,-3.747,-0.164,0.0,3.204,8.628,2.036,1354.8,997.6,11182.2,2566.0,0.0,0.0,24000.0,0.0,6.8,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.722,55.722,33.436,33.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,6.745,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,6.634,0.614,0.0,0.0,0.0,0.0,2094.2,3386.2,3386.2,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.9,53.9,21.421,21.421,32.479,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.157,0.0,13.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.16,0.0,0.0,9.099,2.376,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.745,3.645,0.513,7.514,0.631,10.106,-12.669,0.0,0.0,0.0,8.166,-0.067,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.0,852.3,9358.0,2147.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 @@ -104,8 +104,8 @@ base-dhw-tank-heat-pump-uef.xml,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0 base-dhw-tank-heat-pump-with-solar-fraction.xml,51.774,51.774,27.728,27.728,24.047,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.062,0.757,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.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.519,0.0,13.145,9.108,0.603,0.0,5.92,0.0,0.0,1856.4,3135.7,3135.7,25.408,18.877,0.0,3.543,3.64,0.512,7.52,0.629,10.078,-12.705,0.0,0.0,0.0,8.33,-0.054,4.8,0.0,0.728,0.0,5.165,-7.514,-2.501,0.0,-0.009,-0.426,-0.047,2.793,-0.017,-1.3,11.708,0.0,0.0,0.0,-6.161,-0.051,-1.126,-3.666,-0.159,0.0,2.942,6.881,2.009,474.2,349.2,3821.8,877.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-with-solar.xml,51.285,51.285,28.322,28.322,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.394,0.836,1.109,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.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,14.538,9.022,1.967,0.0,8.046,0.0,0.0,1896.1,3141.1,3141.1,25.085,19.317,0.0,3.556,3.646,0.513,7.539,0.63,10.092,-12.686,0.0,0.0,0.0,8.338,-0.056,4.806,0.0,0.729,0.0,4.959,-8.421,-2.498,0.0,-0.042,-0.449,-0.05,2.725,-0.024,-1.374,11.727,0.0,0.0,0.0,-6.263,-0.052,-1.153,-3.893,-0.164,0.0,3.186,8.558,2.011,1354.4,997.3,11681.5,2680.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.xml,56.198,56.198,29.584,29.584,26.613,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.798,0.695,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.919,0.0,12.099,9.12,1.72,0.0,0.0,0.0,0.0,1874.8,3266.4,3266.4,23.533,19.025,0.0,3.526,3.638,0.512,7.512,0.627,10.061,-12.745,0.0,0.0,0.0,8.354,-0.048,4.795,0.0,0.727,0.0,5.628,-5.522,-2.509,0.0,0.026,-0.397,-0.042,2.889,-0.011,-1.216,11.668,0.0,0.0,0.0,-6.004,-0.044,-1.095,-3.485,-0.152,0.0,2.731,5.541,2.001,1354.8,997.6,10838.9,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.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5540.9,5540.9,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.148,35.148,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,2003.7,3403.2,3403.2,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,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-model-type-stratified-detailed-occupancy-stochastic.xml,58.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.3,5544.6,5544.6,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.147,35.147,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,1991.8,3400.6,3400.6,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,7.6,2.01,1354.8,997.6,10766.3,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.631,64.631,26.844,26.844,22.506,15.282,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.631,64.631,26.844,26.844,22.506,0.0,0.0,15.282,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.51,60.51,26.638,26.638,33.872,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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 @@ -125,7 +125,7 @@ base-enclosure-beds-4.xml,59.598,59.598,38.291,38.291,21.308,0.0,0.0,0.0,0.0,0.0 base-enclosure-beds-5.xml,61.195,61.195,40.856,40.856,20.34,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.558,0.875,12.384,0.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.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,19.047,0.0,15.027,12.694,0.613,0.0,0.0,0.0,0.0,2527.7,3848.9,3848.9,22.438,19.545,0.0,3.581,3.656,0.515,7.57,0.633,10.127,-12.669,0.0,0.0,0.0,8.363,-0.063,4.813,0.0,0.733,0.0,4.445,-10.517,-2.496,0.0,-0.071,-0.475,-0.053,2.644,-0.03,-1.447,11.744,0.0,0.0,0.0,-6.394,-0.059,-1.177,-4.059,-0.168,0.0,3.259,9.462,2.013,1770.0,1358.2,16181.1,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.121,74.121,36.244,36.244,37.877,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.467,0.855,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.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,14.804,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3550.3,3550.3,29.35,19.593,0.0,17.295,3.593,0.505,7.261,0.621,9.962,-12.802,0.0,0.0,0.0,7.769,-0.077,4.847,0.0,0.734,0.0,6.981,-9.069,-2.542,0.0,0.171,-0.316,-0.031,2.926,0.011,-0.954,11.611,0.0,0.0,0.0,-6.041,-0.067,-0.997,-3.569,-0.139,0.0,2.714,7.714,1.967,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.006,67.006,29.235,29.235,37.771,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.621,0.644,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.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,35.377,0.0,11.026,9.182,0.621,0.0,0.0,0.0,0.0,1765.2,3434.2,3434.2,29.151,21.511,0.0,3.488,3.657,0.0,0.0,0.673,9.524,-13.013,0.0,0.0,29.112,0.0,-0.21,2.054,0.0,0.788,0.0,7.866,-7.475,-1.576,0.0,0.417,-0.07,0.0,0.0,0.095,0.915,10.955,0.0,0.0,-7.98,0.0,-0.205,-0.258,-2.064,-0.085,0.0,2.681,5.729,1.071,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.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.8,2717.8,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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-garage.xml,58.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.7,2717.7,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -159,7 +159,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,56.858,56.858,35.907,35 base-foundation-conditioned-basement-wall-insulation.xml,56.81,56.81,35.28,35.28,21.529,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.913,0.719,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.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.161,0.0,12.44,9.075,0.615,0.0,0.0,0.0,0.0,2128.4,3541.7,3541.7,23.225,18.708,0.0,3.587,3.672,0.517,6.119,0.637,10.174,-12.694,0.0,0.0,0.0,8.986,-0.065,4.83,0.0,0.734,0.0,4.712,-8.91,-2.501,0.0,0.021,-0.403,-0.043,1.124,-0.012,-1.234,11.72,0.0,0.0,0.0,-6.447,-0.06,-1.117,-3.536,-0.159,0.0,2.872,7.868,2.009,1354.8,997.6,11171.5,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.743,46.743,28.73,28.73,18.013,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.467,0.625,9.211,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.856,0.0,10.662,9.182,0.615,0.0,0.0,0.0,0.0,1720.5,2369.3,2369.3,15.899,11.707,0.0,3.711,3.607,0.507,5.114,0.622,9.795,-12.66,0.0,0.0,0.0,10.013,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.042,-0.455,-0.051,1.813,-0.024,-1.171,11.693,0.0,0.0,0.0,-3.767,-0.048,-0.825,-3.657,-0.162,0.0,0.0,6.309,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.293,42.293,29.585,29.585,12.708,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.257,0.806,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.708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.897,0.0,13.759,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3028.7,3028.7,15.204,15.253,0.0,3.987,3.873,0.0,0.0,0.781,10.597,-11.184,0.0,0.0,5.313,0.0,-0.387,2.587,0.0,0.0,0.0,1.989,-4.616,-1.421,0.0,-0.127,-0.701,0.0,0.0,-0.009,-0.408,12.785,0.0,0.0,-0.674,0.0,-0.383,-0.558,-3.053,0.0,0.0,1.668,4.25,1.226,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.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,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-slab.xml,39.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.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.468,43.468,29.72,29.72,13.747,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.338,0.825,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.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.871,0.0,14.125,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.992,3.873,0.0,0.0,0.78,10.643,-11.238,0.0,0.0,5.935,0.0,-0.399,2.591,0.0,0.0,0.0,2.406,-4.632,-1.425,0.0,-0.103,-0.682,0.0,0.0,-0.006,-0.407,12.731,0.0,0.0,-0.574,0.0,-0.394,-0.546,-3.037,0.0,0.0,1.944,4.233,1.222,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.792,40.792,29.146,29.146,11.646,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.904,0.723,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.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.903,0.0,12.248,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2618.9,2618.9,14.652,13.98,0.0,3.98,3.841,0.0,0.0,0.77,10.6,-11.048,0.0,0.0,4.439,0.0,-0.412,2.588,0.0,0.0,0.0,1.777,-4.589,-1.411,0.0,-0.105,-0.658,0.0,0.0,0.018,-0.387,12.921,0.0,0.0,-2.075,0.0,-0.408,-0.564,-2.892,0.0,0.0,1.149,4.277,1.237,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.429,48.429,28.801,28.801,19.628,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.572,0.643,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.371,0.0,10.91,9.126,0.639,0.0,0.0,0.0,0.0,1722.9,2460.7,2460.7,16.593,12.553,0.0,3.739,3.636,0.0,0.0,0.637,9.325,-12.477,0.0,0.0,14.533,0.0,-0.047,2.468,0.0,0.0,0.0,2.551,-4.777,-1.481,0.0,0.067,-0.435,0.0,0.0,-0.014,-0.416,11.491,0.0,0.0,-2.75,0.0,-0.046,-0.513,-2.855,0.0,0.0,1.316,4.089,1.166,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 @@ -196,7 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,35.667,35.667,35.667,35.667,0.0,0.0, base-hvac-central-ac-only-1-speed.xml,35.68,35.68,35.68,35.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.235,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3509.2,3509.2,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.09,34.09,34.09,34.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071,0.682,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.991,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3085.8,3085.8,0.0,19.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.071,-0.454,-0.05,2.711,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.709,-0.165,0.0,3.501,8.008,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.64,33.64,33.64,33.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189,0.114,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.956,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3511.1,3511.1,0.0,17.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.072,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.712,-0.165,0.0,3.503,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.682,0.264,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.78,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.3,2899.3,0.0,18.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.341,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.683,0.264,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.781,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.5,2899.5,0.0,18.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.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.342,8.008,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.39,47.39,47.39,47.39,0.0,0.0,0.0,0.0,0.0,0.0,9.543,1.748,0.309,0.031,4.329,1.138,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,22.335,0.34,13.981,9.075,0.615,0.0,0.0,0.0,0.0,7195.9,3544.8,7195.9,25.253,19.042,0.0,3.497,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.335,-8.906,-2.499,0.0,-0.039,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.209,58.209,36.58,36.58,21.629,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.022,0.908,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.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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2102.1,2714.4,2714.4,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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,51.983,51.983,41.322,41.322,10.661,0.0,0.0,0.0,0.0,0.0,5.246,0.493,0.0,0.93,3.357,1.004,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,10.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,22.828,11.057,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3243.5,3608.2,24.193,16.253,0.0,3.47,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.86,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,53.543,53.543,30.861,30.861,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,56.21,56.21,56.21,56.21,0.0,0.0,0.0,0.0,0.0,0.0,20.503,0.368,0.0,0.0,4.247,0.8,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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,7897.8,3369.1,7897.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.154,52.154,52.154,52.154,0.0,0.0,0.0,0.0,0.0,0.0,21.293,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,8283.1,1637.3,8283.1,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.722,56.722,34.436,34.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.116,0.66,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.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,20.87,0.0,14.312,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3115.3,3115.3,23.032,19.58,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.052,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.827,-0.163,0.0,3.503,7.874,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.953,55.953,33.667,33.667,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.176,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.9,2924.9,23.032,19.212,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.424,7.874,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.953,55.953,33.668,33.668,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.177,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.7,2924.7,23.032,19.21,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.425,7.874,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.99,37.99,30.507,30.507,7.483,0.0,0.0,0.0,0.0,0.0,0.0,0.195,0.0,0.0,0.0,0.0,9.036,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.072,0.0,0.0,9.075,0.635,0.0,0.0,0.0,0.0,2085.2,1636.2,2085.2,18.154,0.0,0.0,2.843,2.786,0.39,5.36,0.411,7.452,-12.563,0.0,0.0,0.0,5.495,-0.053,3.476,0.0,0.572,0.0,1.818,-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,11171.5,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.451,58.451,30.861,30.861,27.59,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.468,58.468,35.00 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.737,57.737,34.277,34.277,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.332,0.37,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,23.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.862,0.0,15.952,9.075,0.615,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.153,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.136,-0.446,-0.049,2.733,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.058,-1.148,-3.837,-0.163,0.0,5.223,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.9,54.9,30.73,30.73,24.17,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.692,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2091.6,1637.3,2091.6,25.358,0.0,0.0,3.487,3.648,0.513,7.518,0.632,10.11,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,6.859,-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,42.348,42.348,42.348,42.348,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.569,0.0,0.0,3.533,0.899,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,20.77,0.0,13.454,9.075,0.615,0.0,0.0,0.0,0.0,3720.9,2983.5,3720.9,23.178,17.47,0.0,3.56,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.729,0.0,4.732,-8.906,-2.499,0.0,-0.017,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.827,-0.163,0.0,2.633,7.872,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.789,33.789,33.789,33.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.191,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.287,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.6,2951.6,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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.792,8.008,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.79,33.79,33.79,33.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.191,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.288,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.8,2951.8,0.0,14.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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.793,8.008,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.313,41.313,41.313,41.313,0.0,0.0,0.0,0.0,0.0,0.0,8.082,0.201,0.121,0.005,2.519,0.091,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,19.457,0.126,12.148,9.075,0.615,0.0,0.0,0.0,0.0,4873.7,2788.6,4873.7,19.228,14.089,0.0,3.606,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.39,-8.906,-2.499,0.0,0.037,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.315,7.872,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.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.024,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.516,8.008,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-ducted.xml,33.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.023,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.515,8.008,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.885,32.885,32.885,32.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2664.7,2664.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.023,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2503.8,2503.8,0.0,11.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.036,-0.455,-0.05,2.71,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.409,32.409,32.409,32.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.027,0.044,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.521,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2369.0,2369.0,0.0,13.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.705,-0.165,0.0,0.996,8.008,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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.413,48.413,36.149,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.929,38.929,38.929,38.929,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.036,0.0,0.0,1.887,0.003,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,16.192,0.0,10.855,9.075,0.615,0.0,0.0,0.0,0.0,3979.6,2668.0,3979.6,16.439,11.895,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.422,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6589.4,4004.5,6589.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.423,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6587.4,4004.5,6587.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.673,19.673,19.673,19.673,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.543,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.334,0.0,0.0,0.0,0.0,1272.9,1085.0,1272.9,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.9,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.741,50.741,50.741,50.741,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,4.243,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,2924.2,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.792,54.792,34.536,34.536,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243,0.0,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,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2019.6,2924.2,2924.2,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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 ff3f02147..6fb7ec8cb 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -46,9 +46,9 @@ base-bldgtype-mf-unit-shared-generator.xml,1637.42,144.0,958.12,0.0,1102.12,144. base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1186.01,144.0,1042.01,0.0,1186.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1057.68,144.0,610.85,0.0,754.85,144.0,158.83,302.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-laundry-room.xml,1030.47,144.0,604.09,0.0,748.09,144.0,138.38,282.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.73,144.0,1124.31,0.0,1268.31,144.0,212.42,356.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.03,144.0,999.9,0.0,1143.9,144.0,56.13,200.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-bldgtype-mf-unit-shared-mechvent.xml,1321.42,144.0,994.58,0.0,1138.58,144.0,38.84,182.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-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.98,144.0,1124.25,0.0,1268.25,144.0,213.73,357.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 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.11,144.0,1001.78,0.0,1145.78,144.0,54.33,198.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1319.28,144.0,995.3,0.0,1139.3,144.0,35.98,179.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-bldgtype-mf-unit-shared-pv.xml,355.63,144.0,958.12,-897.25,204.88,144.0,6.75,150.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1071.77,144.0,644.87,0.0,788.87,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,0.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,1031.55,144.0,604.65,0.0,748.65,144.0,138.9,282.9,0.0,0.0,0.0,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 +196,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,1452.99,144.0,1308.99,0.0,1452.99,0. base-hvac-central-ac-only-1-speed.xml,1453.45,144.0,1309.45,0.0,1453.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.xml,1395.13,144.0,1251.13,0.0,1395.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed-detailed-performance.xml,1378.61,144.0,1234.61,0.0,1378.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,1365.54,144.0,1221.54,0.0,1365.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-central-ac-only-var-speed.xml,1365.55,144.0,1221.55,0.0,1365.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1883.25,144.0,1739.25,0.0,1883.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-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,1917.47,144.0,1516.54,0.0,1660.54,144.0,112.93,256.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 @@ -221,7 +221,7 @@ base-hvac-furnace-coal-only.xml,1616.84,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2206.93,144.0,2062.93,0.0,2206.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,2058.09,144.0,1914.09,0.0,2058.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-2-speed.xml,1787.91,144.0,1263.83,0.0,1407.83,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1759.68,144.0,1235.6,0.0,1379.6,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1759.69,144.0,1235.61,0.0,1379.61,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.89,144.0,1119.62,0.0,1263.62,144.0,79.27,223.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-hvac-furnace-gas-only-pilot.xml,1712.88,144.0,1132.61,0.0,1276.61,144.0,292.27,436.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-hvac-furnace-gas-only.xml,1660.89,144.0,1132.61,0.0,1276.61,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 @@ -243,9 +243,9 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1821.33,144.0,1284. base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1794.5,144.0,1257.98,0.0,1401.98,144.0,248.52,392.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-hvac-install-quality-furnace-gas-only.xml,1671.83,144.0,1127.79,0.0,1271.79,144.0,256.04,400.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-hvac-install-quality-ground-to-air-heat-pump.xml,1698.18,144.0,1554.18,0.0,1698.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.08,144.0,1240.08,0.0,1384.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-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.11,144.0,1240.11,0.0,1384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1660.19,144.0,1516.19,0.0,1660.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-hvac-mini-split-air-conditioner-only-ducted.xml,1360.38,144.0,1216.38,0.0,1360.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-mini-split-air-conditioner-only-ducted.xml,1360.37,144.0,1216.37,0.0,1360.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1350.91,144.0,1206.91,0.0,1350.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.75,144.0,1219.75,0.0,1363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1333.41,144.0,1189.41,0.0,1333.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 @@ -259,7 +259,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1899.61,144.0,1326.69,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1572.7,144.0,1428.7,0.0,1572.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 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1544.05,144.0,1400.05,0.0,1544.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-mini-split-heat-pump-ductless.xml,1544.05,144.0,1400.05,0.0,1544.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-multiple.xml,2492.92,144.0,1907.21,0.0,2051.21,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2492.93,144.0,1907.22,0.0,2051.22,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2514.22,144.0,2370.22,0.0,2514.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-ptac-with-heating-electricity.xml,2006.2,144.0,1862.2,0.0,2006.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-ptac-with-heating-natural-gas.xml,1770.06,144.0,1267.49,0.0,1411.49,144.0,214.57,358.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 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index 286ed2852..f9d84fd0f 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,35.6,35.6,35.6,35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0. base-location-miami-fl.xml,34.751,34.751,34.751,34.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.058,2.686,4.876,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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,44.892,4.634,0.552,0.0,0.0,0.0,0.0,2083.3,2402.8,2402.8,0.0,13.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.037,0.606,0.0,0.0,0.312,4.537,19.646,0.0,0.0,0.0,5.599,-0.004,-0.201,-2.929,-0.001,0.0,0.681,13.136,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.512,38.512,38.511,38.511,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.355,2.921,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,52.977,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3307.2,3307.2,0.564,18.415,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.766,1.406,0.0,0.0,0.804,6.879,24.223,0.0,0.0,0.0,7.021,-0.479,0.014,-3.281,0.117,0.0,0.95,11.527,2.372,1354.8,997.6,8260.5,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,36.932,36.932,27.395,27.395,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.775,0.511,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,8.421,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2663.0,2663.0,8.448,14.118,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.217,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.279,-0.746,0.0,0.0,0.003,-0.6,10.358,0.0,0.0,-2.866,0.0,-0.439,-0.339,-2.898,-0.248,0.0,0.534,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.399,79.399,37.588,37.588,41.811,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.0,0.0,4.061,0.746,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.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,39.159,0.0,12.895,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3770.9,3770.9,32.383,21.475,0.0,3.51,3.724,0.524,7.442,0.656,10.396,-12.846,0.0,0.0,0.0,8.145,-0.118,5.506,0.0,15.102,0.0,8.577,-9.186,-2.572,0.0,0.169,-0.24,-0.02,3.025,0.036,-0.659,11.568,0.0,0.0,0.0,-5.919,-0.114,-0.996,-3.03,-3.486,0.0,3.102,7.599,1.938,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-balanced.xml,78.588,78.588,37.575,37.575,41.013,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.061,0.746,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.412,0.0,12.902,9.075,0.62,0.0,0.0,0.0,0.0,2205.1,3756.3,3756.3,32.326,21.466,0.0,3.505,3.714,0.523,7.454,0.653,10.364,-12.828,0.0,0.0,0.0,8.178,-0.112,4.886,0.0,15.062,0.0,8.438,-9.161,-2.566,0.0,0.155,-0.254,-0.022,3.026,0.032,-0.703,11.586,0.0,0.0,0.0,-5.901,-0.108,-0.908,-3.049,-3.541,0.0,3.097,7.623,1.944,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.774,59.774,35.804,35.804,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.211,0.791,9.018,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.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,13.723,9.075,0.615,0.0,0.0,0.0,0.0,2184.9,3585.7,3585.7,24.906,20.499,0.0,3.547,3.643,0.513,7.528,0.63,10.092,-12.692,0.0,0.0,0.0,8.338,-0.059,4.321,0.0,2.474,0.0,5.172,-8.912,-2.501,0.0,-0.022,-0.434,-0.048,2.771,-0.019,-1.317,11.721,0.0,0.0,0.0,-6.192,-0.055,-1.025,-3.732,-0.678,0.0,3.064,7.868,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,18787.0,5329.0,7037.0,0.0,207.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.752,72.752,37.5,37.5,35.253,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.712,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,33.017,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.4,3636.4,3636.4,29.389,21.234,0.0,3.488,3.663,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.072,1.506,0.0,13.873,0.0,7.366,-9.006,-2.523,0.0,0.058,-0.349,-0.036,2.95,0.006,-1.027,11.663,0.0,0.0,0.0,-5.928,-0.068,-0.25,-3.306,-3.208,0.0,3.126,7.776,1.987,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,72.858,72.858,38.447,38.447,34.411,0.0,0.0,0.0,0.0,0.0,0.0,0.568,0.0,0.0,4.857,0.859,9.021,0.0,0.0,4.51,0.0,0.334,1.867,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.762,0.0,10.241,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.1,2937.1,21.242,13.424,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.317,-0.075,1.506,0.0,13.749,0.0,0.0,-9.003,-2.522,0.0,0.144,-0.351,-0.036,2.948,0.005,-1.028,11.674,0.0,0.0,0.0,-5.932,-0.071,-0.25,-3.298,-3.176,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.127,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2028.9,2119.8,0.0,18.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.158,-0.347,-0.034,3.018,-0.001,-1.07,11.85,0.0,0.0,0.0,-6.52,-0.058,-0.253,-3.067,-3.054,0.0,0.645,8.013,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,69.956,69.956,36.141,36.141,33.815,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.054,0.747,9.022,0.0,0.0,4.51,0.0,0.334,0.484,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,31.67,0.0,12.938,9.075,0.62,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.219,0.0,3.52,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.085,1.917,0.0,12.485,0.0,7.091,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.014,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.248,-3.126,-3.977,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.082,72.082,36.169,36.169,35.913,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.47,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.1,3634.9,3634.9,29.39,21.223,0.0,3.496,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.509,0.0,14.436,0.0,7.481,-9.041,-2.532,0.0,0.089,-0.32,-0.031,2.991,0.013,-0.934,11.639,0.0,0.0,0.0,-5.882,-0.073,-0.241,-3.187,-3.822,0.0,3.072,7.742,1.978,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,73.974,73.974,37.444,37.444,36.53,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,4.101,0.757,9.021,0.0,0.0,4.51,0.0,0.334,1.687,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,34.214,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.215,0.0,3.493,3.707,0.522,7.473,0.652,10.345,-12.783,0.0,0.0,0.0,8.216,-0.117,1.52,0.0,14.064,0.0,8.497,-9.107,-2.551,0.0,0.161,-0.288,-0.027,2.968,0.024,-0.808,11.63,0.0,0.0,0.0,-5.968,-0.113,-0.229,-3.173,-2.985,0.0,2.407,7.676,1.959,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,64.818,64.818,37.58,37.58,27.237,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.508,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.349,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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,64.821,64.821,37.58,37.58,27.241,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.797,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.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,25.511,0.0,13.829,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3566.0,3566.0,25.35,20.017,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.909,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.093,-0.056,-1.235,-3.604,-0.837,0.0,3.134,7.852,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-cfis-airflow-fraction-zero.xml,72.825,72.825,37.499,37.499,35.325,0.0,0.0,0.0,0.0,0.0,0.0,0.583,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.711,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.085,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.3,3637.4,3637.4,29.395,21.237,0.0,3.488,3.662,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.071,1.561,0.0,13.874,0.0,7.379,-9.006,-2.523,0.0,0.059,-0.349,-0.035,2.951,0.006,-1.026,11.663,0.0,0.0,0.0,-5.926,-0.067,-0.257,-3.305,-3.207,0.0,3.126,7.776,1.987,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,72.932,72.932,38.446,38.446,34.485,0.0,0.0,0.0,0.0,0.0,0.0,0.569,0.0,0.0,4.857,0.858,9.021,0.0,0.0,4.51,0.0,0.334,1.865,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.818,0.0,10.24,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.6,2937.6,21.249,13.433,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.318,-0.074,1.56,0.0,13.75,0.0,0.0,-9.003,-2.522,0.0,0.145,-0.351,-0.036,2.949,0.005,-1.027,11.674,0.0,0.0,0.0,-5.93,-0.071,-0.258,-3.296,-3.175,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.126,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2029.6,2119.8,0.0,18.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,-0.347,-0.034,3.019,-0.001,-1.069,11.85,0.0,0.0,0.0,-6.519,-0.058,-0.26,-3.066,-3.053,0.0,0.645,8.013,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.503,70.503,36.144,36.144,34.359,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.052,0.746,9.022,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,32.18,0.0,12.924,9.075,0.62,0.0,0.0,0.0,0.0,2132.3,3634.9,3634.9,29.397,21.223,0.0,3.516,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.086,2.299,0.0,12.513,0.0,7.194,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.015,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.262,-3.126,-3.978,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.155,72.155,36.17,36.17,35.985,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.469,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,33.703,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.2,3634.9,3634.9,29.396,21.226,0.0,3.497,3.673,0.517,7.491,0.641,10.214,-12.776,0.0,0.0,0.0,8.3,-0.077,1.564,0.0,14.439,0.0,7.494,-9.043,-2.532,0.0,0.09,-0.319,-0.031,2.991,0.014,-0.931,11.637,0.0,0.0,0.0,-5.882,-0.073,-0.248,-3.185,-3.818,0.0,3.073,7.74,1.977,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.043,74.043,37.444,37.444,36.599,0.0,0.0,0.0,0.0,0.0,0.0,0.604,0.0,0.0,4.101,0.756,9.021,0.0,0.0,4.51,0.0,0.334,1.686,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2175.2,3634.9,3634.9,29.395,21.219,0.0,3.493,3.707,0.522,7.474,0.652,10.347,-12.789,0.0,0.0,0.0,8.221,-0.117,1.575,0.0,14.069,0.0,8.507,-9.111,-2.552,0.0,0.161,-0.288,-0.027,2.97,0.024,-0.806,11.624,0.0,0.0,0.0,-5.961,-0.113,-0.235,-3.172,-2.98,0.0,2.408,7.672,1.958,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,64.045,64.045,37.571,37.571,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,13.849,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.289,19.837,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.671,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.049,64.049,37.571,37.571,26.478,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.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,0.0,0.0,24.797,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.291,19.838,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.911,0.0,5.672,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.842,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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,64.816,64.816,37.581,37.581,27.235,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.506,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.4,3567.4,25.348,20.019,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.904,0.0,5.813,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.836,0.0,3.135,7.852,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,64.819,64.819,37.581,37.581,27.238,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.246,0.798,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.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,25.509,0.0,13.83,9.075,0.616,0.0,0.0,0.0,0.0,2181.3,3567.5,3567.5,25.349,20.02,0.0,3.519,3.639,0.512,7.521,0.63,10.091,-12.705,0.0,0.0,0.0,8.355,-0.06,5.398,0.0,3.906,0.0,5.814,-8.928,-2.504,0.0,-0.009,-0.418,-0.045,2.834,-0.014,-1.255,11.708,0.0,0.0,0.0,-6.094,-0.056,-1.235,-3.604,-0.837,0.0,3.135,7.852,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.519,80.519,37.994,37.994,42.525,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.359,0.638,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,39.829,0.0,11.036,9.075,0.623,0.0,0.0,0.0,17.0,2271.7,3978.8,3978.8,35.903,23.182,0.0,3.191,3.72,0.523,7.484,0.654,10.365,-12.799,0.0,0.0,0.0,8.264,-0.112,3.854,0.0,9.575,0.0,16.45,-9.116,-2.555,0.0,0.122,-0.176,-0.011,3.258,0.05,-0.49,11.614,0.0,0.0,0.0,-5.538,-0.107,-0.584,0.0,-2.064,-9.14,4.551,7.671,1.955,1354.8,997.6,11171.6,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.203,72.203,36.644,36.644,35.559,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,4.105,0.758,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.559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,0.0,13.124,9.075,0.619,0.0,0.0,0.0,0.0,2161.4,3664.9,3664.9,29.255,21.263,0.0,3.496,3.671,0.516,7.491,0.64,10.21,-12.765,0.0,0.0,0.0,8.304,-0.08,1.509,0.0,14.164,0.0,7.413,-9.037,-2.53,0.0,0.085,-0.323,-0.032,2.988,0.013,-0.938,11.648,0.0,0.0,0.0,-5.883,-0.076,-0.241,-3.192,-3.668,0.0,3.107,7.746,1.979,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,64.043,64.043,37.571,37.571,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.288,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.906,0.0,5.671,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.817,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.046,64.046,37.571,37.571,26.475,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.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,24.794,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.289,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.672,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.908,80.908,37.992,37.992,42.916,0.0,0.0,0.0,0.0,0.0,0.0,0.705,0.0,0.0,4.351,0.636,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,40.198,0.0,11.008,9.075,0.623,0.0,0.0,0.0,16.0,2268.6,3975.9,3975.9,36.155,23.176,0.0,3.186,3.72,0.523,7.481,0.654,10.367,-12.797,0.0,0.0,0.0,8.257,-0.113,4.106,0.0,9.57,0.0,16.596,-9.12,-2.557,0.0,0.124,-0.175,-0.011,3.259,0.051,-0.484,11.616,0.0,0.0,0.0,-5.54,-0.108,-0.59,0.0,-2.06,-9.155,4.541,7.667,1.952,1354.8,997.6,11171.6,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.276,72.276,36.645,36.645,35.631,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,4.105,0.758,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.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,33.371,0.0,13.123,9.075,0.619,0.0,0.0,0.0,0.0,2161.7,3664.9,3664.9,29.261,21.267,0.0,3.498,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.564,0.0,14.169,0.0,7.427,-9.041,-2.532,0.0,0.087,-0.321,-0.031,2.99,0.013,-0.935,11.639,0.0,0.0,0.0,-5.883,-0.073,-0.248,-3.191,-3.662,0.0,3.108,7.742,1.978,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.506,56.506,34.04,34.04,22.465,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,2.345,0.349,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.675,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.039,0.0,5.929,9.075,0.624,0.0,0.0,0.0,0.0,2119.4,3330.5,3330.5,23.032,15.879,0.0,3.553,3.643,0.513,7.548,0.63,10.093,-12.683,0.0,0.0,0.0,8.448,-0.057,4.805,0.0,0.729,0.0,4.875,-8.905,-2.499,0.0,0.166,-0.229,-0.018,3.367,0.031,-0.704,11.73,0.0,0.0,0.0,-5.266,-0.053,-0.948,0.0,-0.13,-13.009,1.634,7.883,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,0.729,35.707,-21.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-57.264,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.188,43.837,31.372,12.021,31.816,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.141,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.352,0.0,0.509,31.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,29.781,0.0,5.079,10.472,0.697,0.0,9.068,0.0,0.0,2428.2,2923.3,2923.3,26.046,14.897,0.0,3.497,3.692,0.519,7.466,1.12,10.331,-12.811,0.0,0.0,0.0,8.262,-0.098,1.533,0.0,15.089,0.0,2.758,-9.292,-2.56,0.0,0.755,-0.059,0.006,3.521,-0.186,-0.214,11.602,0.0,0.0,0.0,-5.113,-0.094,-0.189,0.0,-3.299,-11.827,0.418,8.621,1.95,1610.4,1574.2,10321.5,3637.4,2.899,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-defaults.xml,63.533,44.181,31.397,12.045,32.136,0.0,0.0,0.0,0.0,0.0,0.0,0.53,0.0,0.0,2.144,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.139,0.0,0.0,1.092,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.352,0.0,0.509,32.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,0.0,0.0,30.08,0.0,5.09,10.472,0.697,0.0,9.069,0.0,0.0,2429.5,2929.0,2929.0,26.181,14.941,0.0,3.5,3.695,0.519,7.462,1.121,10.341,-12.814,0.0,0.0,0.0,8.251,-0.1,1.512,0.0,15.392,0.0,2.785,-9.299,-2.562,0.0,0.761,-0.055,0.007,3.521,-0.185,-0.2,11.599,0.0,0.0,0.0,-5.118,-0.096,-0.184,0.0,-3.35,-11.787,0.419,8.613,1.948,1610.4,1574.2,10321.5,3637.5,2.894,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-misc-emissions.xml,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.728,68.538,37.442,29.253,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.695,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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 @@ -65,7 +65,7 @@ base-residents-0.xml,41.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,100.904,100.904,51.844,51.844,41.154,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2581.2,4359.9,4359.9,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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,79.85,79.85,49.418,49.418,22.526,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2382.9,4091.7,4091.7,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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.631,52.631,28.242,28.242,24.389,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.933,0.726,3.888,0.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.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.841,0.0,12.74,3.562,0.616,0.0,0.0,0.0,0.0,1659.2,3186.1,3186.1,23.634,18.192,0.0,3.531,3.633,0.511,7.496,0.629,10.079,-12.698,0.0,0.0,0.0,8.301,-0.064,4.803,0.0,0.727,0.0,5.255,-7.189,-2.504,0.0,0.003,-0.415,-0.045,2.827,-0.013,-1.246,11.715,0.0,0.0,0.0,-6.109,-0.06,-1.114,-3.587,-0.158,0.0,2.892,6.197,2.006,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,18787.0,5329.0,7037.0,0.0,207.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.279,49.028,39.741,19.49,29.538,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.247,0.327,6.919,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.125,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.402,29.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,27.648,0.0,5.459,18.165,0.646,0.0,11.901,0.0,0.0,3043.8,3169.5,3169.5,25.599,15.294,0.0,3.801,3.697,0.52,7.525,0.646,10.274,-12.772,0.0,0.0,0.0,8.383,-0.078,1.526,0.0,15.016,0.0,2.564,-11.192,-2.539,0.0,0.286,-0.128,-0.004,3.482,0.059,-0.375,11.641,0.0,0.0,0.0,-5.144,-0.074,-0.202,0.0,-3.462,-12.604,0.447,10.463,1.971,2592.1,2706.5,20695.6,5541.4,1.874,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.618,49.367,39.765,19.513,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.492,0.0,0.0,2.249,0.328,6.919,0.0,0.326,4.51,0.0,0.334,1.139,0.0,0.0,1.12,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.402,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.943,0.0,5.465,18.165,0.646,0.0,11.901,0.0,0.0,3045.2,3175.2,3175.2,25.734,15.337,0.0,3.804,3.7,0.521,7.522,0.647,10.284,-12.779,0.0,0.0,0.0,8.377,-0.08,1.505,0.0,15.32,0.0,2.592,-11.205,-2.542,0.0,0.291,-0.124,-0.003,3.483,0.06,-0.36,11.634,0.0,0.0,0.0,-5.143,-0.076,-0.198,0.0,-3.513,-12.561,0.448,10.45,1.968,2592.1,2706.5,20695.4,5541.3,1.873,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,59.371,59.371,35.954,35.954,23.417,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.421,0.836,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.529,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.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,21.928,0.0,14.458,9.053,0.639,0.0,0.0,0.333,1.0,9422.1,10694.0,10694.0,37.366,22.431,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.34,-0.062,5.307,0.0,0.78,0.0,5.114,-8.97,-2.51,0.0,-0.156,-0.472,-0.054,2.75,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.247,-0.058,-1.254,-3.683,-0.172,0.0,3.305,8.307,2.0,1354.7,998.0,11252.4,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.264,33.264,28.415,28.415,4.849,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.106,0.523,7.326,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.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,4.542,0.0,9.14,7.3,0.562,0.0,0.0,0.5,0.5,9397.2,10430.4,10430.4,41.543,22.03,0.0,2.613,2.46,0.344,4.288,0.335,6.49,-12.497,0.0,0.0,0.0,3.717,-0.101,3.385,0.0,0.384,0.0,1.014,-6.566,-1.596,0.0,-0.196,-0.552,-0.065,2.495,-0.053,-1.664,11.861,0.0,0.0,0.0,-7.407,-0.056,-1.323,-6.195,-0.206,0.0,2.188,8.45,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.184,42.184,34.117,34.117,8.067,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.117,0.526,9.053,0.0,0.0,4.51,0.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.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,7.554,0.0,9.185,9.053,0.672,0.0,0.0,0.0,0.5,9393.8,10433.4,10433.4,31.865,22.032,0.0,2.915,2.807,0.393,5.404,0.421,7.516,-12.492,0.0,0.0,0.0,5.535,-0.056,3.86,0.0,0.581,0.0,1.734,-8.86,-2.486,0.0,-0.199,-0.555,-0.065,2.499,-0.054,-1.674,11.861,0.0,0.0,0.0,-7.338,-0.055,-1.325,-6.213,-0.206,0.0,2.197,8.45,2.023,1354.7,998.0,11253.8,2582.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 @@ -91,25 +91,25 @@ base-simcontrol-timestep-30-mins.xml,58.376,58.376,35.774,35.774,22.602,0.0,0.0, base.xml,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.116,86.116,46.815,46.815,39.301,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.649,4.302,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.255,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.047,0.0,50.461,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.2,6551.2,37.693,42.27,0.495,2.0,7.304,0.422,0.0,0.983,7.167,-4.983,0.0,0.0,0.485,1.293,-0.284,4.307,0.0,5.164,0.0,3.188,-6.732,-2.918,0.562,1.985,3.714,0.306,0.0,0.234,1.592,11.482,0.0,0.0,0.521,6.825,-0.27,-0.41,-1.893,-0.751,0.0,10.689,11.618,4.463,2104.5,2144.0,14468.7,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.872,67.872,40.648,40.648,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.617,3.35,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.739,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.138,0.0,39.922,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.1,5237.1,23.852,29.589,0.0,2.552,5.064,0.0,0.0,0.846,5.728,-4.089,0.0,0.0,0.0,1.814,-0.159,1.581,0.0,3.794,0.0,1.353,-5.041,-2.476,0.0,3.071,2.787,0.0,0.0,0.413,0.378,8.65,0.0,0.0,0.0,8.439,-0.152,-0.184,-1.38,-0.646,0.0,5.87,8.961,3.906,1610.9,1574.7,9989.4,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.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.636,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,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.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.105,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,-0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,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 +house003.xml,68.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.635,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.311,136.311,75.785,75.785,60.526,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,29.582,9.335,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.377,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.887,0.0,109.161,8.985,3.512,0.0,0.0,0.0,101.0,3134.8,7528.2,7528.2,54.659,51.885,0.127,5.508,11.302,0.0,0.0,1.239,13.616,-5.791,0.0,0.0,0.0,3.101,-0.776,5.015,0.0,6.224,0.0,7.051,-7.184,-3.854,0.197,6.682,11.631,0.0,0.0,0.51,7.415,17.81,0.0,0.0,0.0,18.784,-0.763,1.041,-0.0,1.806,0.0,21.485,15.173,7.709,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,94.722,94.722,53.326,53.326,41.396,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.385,5.087,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.194,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.243,0.0,60.811,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.177,0.0,3.051,8.217,0.269,0.0,1.36,9.436,-6.696,0.0,0.0,0.398,1.318,-0.376,5.064,0.0,5.092,0.0,4.319,-6.822,-3.611,0.0,2.972,4.257,0.212,0.0,0.272,2.338,15.363,0.0,0.0,0.414,7.509,-0.359,-0.486,-2.37,-0.74,0.0,14.575,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,138.965,138.965,31.659,31.659,107.305,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,2.86,0.318,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.455,0.0,20.139,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.419,0.0,7.457,13.084,3.28,0.0,0.0,0.0,0.0,1987.1,2448.9,2448.9,40.493,14.948,0.0,4.264,22.276,1.991,37.139,1.864,17.627,-9.441,0.0,0.0,0.0,9.279,-0.324,9.531,0.0,4.369,0.0,0.0,-14.534,-6.438,0.0,0.178,-0.772,-0.043,2.878,-0.083,-0.527,4.335,0.0,0.0,0.0,-3.889,-0.323,-0.507,-1.556,-0.068,0.0,0.0,5.684,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 +house006.xml,138.036,138.036,31.67,31.67,106.366,0.0,0.0,0.0,0.0,0.0,0.0,1.847,0.0,0.0,2.873,0.336,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,80.517,0.0,20.139,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,77.515,0.0,7.514,13.084,3.279,0.0,0.0,0.0,0.0,1983.7,2445.8,2445.8,40.336,14.906,0.0,4.263,22.269,1.99,37.145,1.863,17.627,-9.418,0.0,0.0,0.0,9.269,-0.329,8.591,0.0,4.368,0.0,0.0,-14.513,-6.429,0.0,0.176,-0.786,-0.044,2.868,-0.084,-0.532,4.358,0.0,0.0,0.0,-3.902,-0.328,-0.438,-1.566,-0.071,0.0,0.0,5.704,2.258,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.5,138.5,33.805,33.805,104.695,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.461,0.368,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.025,0.0,23.284,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.643,0.0,5.505,15.632,3.271,0.0,0.0,0.0,0.0,2191.9,2549.4,2549.4,39.657,13.483,0.0,4.727,23.697,4.449,10.125,1.499,18.833,-9.353,0.0,0.0,0.076,11.551,-0.37,6.119,0.0,20.828,0.0,2.861,-17.176,-7.736,0.0,0.209,-0.676,-0.049,0.583,-0.044,-0.299,4.596,0.0,0.0,-0.009,-3.997,-0.365,-0.186,-1.321,-1.869,0.0,0.103,6.367,2.562,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,182.78,182.78,39.105,39.105,143.675,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.55,0.517,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.237,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,103.874,0.0,10.042,18.129,3.215,0.0,0.0,0.0,0.0,2472.9,3404.2,3404.2,54.892,20.555,0.0,7.246,27.501,4.711,24.32,1.195,21.293,-7.816,0.0,0.0,1.287,17.857,-0.395,18.343,0.0,6.388,0.0,7.879,-18.613,-8.163,0.0,0.301,-1.114,-0.06,1.661,-0.088,-0.405,5.412,0.0,0.0,-0.107,-2.764,-0.395,-0.976,-1.758,-0.276,0.0,0.528,7.341,2.842,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 +house008.xml,181.679,181.679,39.095,39.095,142.585,0.0,0.0,0.0,0.0,0.0,0.0,2.451,0.0,0.0,3.562,0.519,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,109.146,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,102.846,0.0,10.107,18.129,3.215,0.0,0.0,0.0,0.0,2469.0,3392.1,3392.1,54.827,20.5,0.0,7.245,27.503,4.712,24.328,1.196,21.3,-7.8,0.0,0.0,1.291,17.853,-0.401,17.335,0.0,6.389,0.0,7.809,-18.6,-8.157,0.0,0.299,-1.123,-0.061,1.655,-0.088,-0.404,5.429,0.0,0.0,-0.108,-2.775,-0.401,-0.898,-1.768,-0.277,0.0,0.531,7.354,2.848,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.654,153.654,33.965,33.965,119.688,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.377,0.28,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.011,0.0,23.291,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.814,0.0,5.253,15.632,3.277,0.0,0.0,0.0,0.0,2226.3,2666.4,2666.4,44.142,14.378,0.0,5.112,28.424,4.32,13.051,2.253,18.888,-8.183,0.0,0.0,0.266,15.634,-0.399,8.745,0.0,21.441,0.0,0.0,-17.433,-7.835,0.0,0.249,-0.68,-0.028,0.733,-0.074,-0.173,4.596,0.0,0.0,-0.029,-4.105,-0.395,-0.254,-1.234,-1.787,0.0,0.0,6.089,2.436,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.314,153.314,37.472,37.472,115.842,0.0,0.0,0.0,0.0,0.0,0.0,1.851,0.0,0.0,2.842,0.26,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.403,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,77.649,0.0,7.136,18.129,3.215,0.0,0.0,0.0,0.0,2408.7,2856.5,2856.5,45.335,15.794,0.876,4.938,25.516,4.913,9.777,1.267,22.969,-9.186,0.0,0.0,0.927,11.38,-0.398,19.585,0.0,6.404,0.0,4.88,-18.639,-8.157,0.024,0.219,-0.74,-0.091,0.56,-0.073,-0.734,5.162,0.0,0.0,-0.048,-4.186,-0.395,-1.005,-1.642,-0.259,0.0,0.328,7.297,2.829,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,45.111,45.111,45.111,45.111,0.0,0.0,0.0,0.0,0.0,0.0,6.969,0.634,0.121,0.006,8.431,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.727,0.128,26.024,9.325,1.124,0.0,0.0,0.0,328.0,5019.5,3217.4,5019.5,18.28,15.961,0.0,2.692,5.468,0.0,0.0,1.635,3.459,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.014,-6.006,-2.08,0.0,1.647,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.657,8.877,2.825,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 +house010.xml,152.218,152.218,37.463,37.463,114.756,0.0,0.0,0.0,0.0,0.0,0.0,1.826,0.0,0.0,2.854,0.262,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,81.317,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,76.626,0.0,7.2,18.129,3.215,0.0,0.0,0.0,0.0,2404.9,2846.0,2846.0,45.267,15.744,0.876,4.938,25.514,4.914,9.777,1.267,22.965,-9.158,0.0,0.0,0.93,11.367,-0.406,18.564,0.0,6.403,0.0,4.821,-18.604,-8.14,0.023,0.217,-0.756,-0.094,0.555,-0.074,-0.747,5.189,0.0,0.0,-0.049,-4.206,-0.403,-0.935,-1.655,-0.263,0.0,0.33,7.332,2.846,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,45.217,45.217,45.217,45.217,0.0,0.0,0.0,0.0,0.0,0.0,7.036,0.674,0.121,0.006,8.427,2.316,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.911,0.127,26.021,9.325,1.124,0.0,0.0,0.0,327.0,5018.6,3217.7,5018.6,18.277,15.962,0.0,2.684,5.468,0.0,0.0,1.635,3.46,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.207,-6.006,-2.08,0.0,1.649,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.653,8.877,2.825,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.803,35.803,35.803,35.803,0.0,0.0,0.0,0.0,0.0,0.0,4.73,0.25,0.0,0.0,5.875,1.487,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.971,0.0,16.321,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.21,0.0,2.376,4.763,0.0,0.0,0.628,2.683,-1.833,0.0,0.0,2.037,0.0,-0.252,1.65,0.0,4.361,0.0,0.323,-4.819,-1.944,0.0,1.718,1.086,0.0,0.0,-0.036,0.466,3.509,0.0,0.0,1.565,0.0,-0.251,-0.162,-0.281,-0.741,0.0,0.275,6.805,2.434,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.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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.528,31.528,31.528,31.528,0.0,0.0,0.0,0.0,0.0,0.0,3.334,0.189,0.006,0.0,4.236,1.384,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.395,0.006,16.446,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2222.1,2948.4,10.984,10.44,0.0,1.701,3.694,0.0,0.0,0.584,3.025,-2.479,0.0,0.0,2.205,0.0,-0.244,1.726,0.0,1.117,0.0,1.412,-3.76,-1.618,0.0,1.132,0.542,0.0,0.0,-0.07,0.539,4.748,0.0,0.0,0.603,0.0,-0.244,-0.251,-0.387,-0.261,0.0,1.645,6.108,2.435,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 -house015.xml,30.544,30.544,30.544,30.544,0.0,0.0,0.0,0.0,0.0,0.0,2.812,0.155,0.0,0.0,3.868,1.264,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.995,0.0,14.921,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.629,2.856,0.0,0.0,0.653,2.619,-2.127,0.0,0.0,2.086,0.0,-0.279,1.518,0.0,1.06,0.0,1.127,-3.663,-1.506,0.0,1.076,0.375,0.0,0.0,-0.094,0.21,3.802,0.0,0.0,0.532,0.0,-0.279,-0.256,-0.349,-0.282,0.0,1.438,6.377,2.459,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,9750.0,1052.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 +house013.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.632,31.632,31.632,31.632,0.0,0.0,0.0,0.0,0.0,0.0,3.416,0.195,0.006,0.0,4.248,1.387,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.622,0.006,16.43,6.85,0.597,0.0,0.0,0.0,0.0,2984.8,2234.9,2984.8,11.108,10.497,0.0,1.703,3.702,0.0,0.0,0.585,3.034,-2.492,0.0,0.0,2.208,0.0,-0.242,1.94,0.0,1.119,0.0,1.451,-3.784,-1.631,0.0,1.135,0.554,0.0,0.0,-0.068,0.551,4.735,0.0,0.0,0.612,0.0,-0.242,-0.268,-0.384,-0.256,0.0,1.648,6.085,2.422,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 +house015.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.136,61.136,39.63,39.63,0.0,0.0,21.506,0.0,0.0,0.0,7.619,0.555,0.187,0.004,2.854,0.93,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.318,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.712,0.191,11.025,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3520.6,7549.9,43.059,18.675,0.0,4.42,10.83,0.617,5.691,0.298,7.708,-7.897,0.0,0.0,0.0,6.759,-0.021,5.727,0.0,3.865,0.0,0.0,-8.639,-4.771,0.0,-0.308,-0.75,-0.015,2.995,-0.044,-0.958,11.998,0.0,0.0,0.0,-8.643,-0.023,-1.318,-2.077,-0.984,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.688,91.688,27.773,27.773,63.915,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.4,0.594,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.803,0.0,18.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,41.964,0.0,9.725,11.141,3.425,0.0,0.0,151.0,94.0,1729.6,3570.0,3570.0,60.335,19.525,0.0,5.431,14.637,0.652,10.66,0.362,7.454,-9.321,0.0,0.0,0.719,4.37,0.008,19.78,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.106,-0.864,-0.015,4.795,-0.058,-1.113,7.472,0.0,0.0,-0.002,-4.724,0.009,-2.647,-1.647,-0.25,0.0,0.0,7.229,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,35.934,35.934,35.934,35.934,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.209,0.0,0.0,2.471,0.743,7.875,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.691,0.0,9.098,7.32,0.553,0.0,0.0,0.0,0.0,4617.7,2659.0,4617.7,19.992,10.862,0.0,4.566,4.624,0.0,0.0,0.276,3.697,-3.619,0.0,0.0,2.169,0.0,-0.02,2.615,0.0,2.09,0.0,1.848,-7.06,-2.597,0.0,-0.485,-0.765,0.0,0.0,-0.093,-1.304,4.336,0.0,0.0,0.02,0.0,-0.015,-0.746,-1.171,-0.721,0.0,1.219,6.864,2.164,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 house019.xml,130.259,130.259,51.668,51.668,78.591,0.0,0.0,0.0,0.0,0.0,0.0,1.131,0.0,0.0,11.151,3.607,9.726,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.816,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.7,0.0,43.304,7.894,1.826,0.0,0.0,193.0,266.0,2783.7,6251.1,6636.8,84.769,45.696,0.0,11.388,44.785,0.65,5.02,1.921,16.412,-14.196,0.0,0.0,0.0,5.959,-0.039,8.896,0.0,1.87,0.0,0.0,-10.31,-5.205,0.0,2.991,10.178,0.15,2.871,0.274,1.618,17.036,0.0,0.0,0.0,-4.227,-0.027,-0.15,-0.558,0.025,0.0,0.0,8.085,3.718,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,116.949,116.949,56.177,56.177,0.0,0.0,60.771,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.779,2.675,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.623,0.0,18.918,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.577,0.0,32.258,10.477,4.229,0.0,0.0,0.0,0.0,2703.5,6612.3,6612.3,31.214,31.937,0.908,11.001,10.555,1.131,9.76,0.631,15.142,-15.17,0.0,0.0,0.0,7.487,-0.04,15.235,0.0,0.837,0.0,0.0,-15.243,-7.022,0.249,0.223,0.285,0.064,6.486,0.018,-2.386,20.699,0.0,0.0,0.0,-6.534,-0.031,-2.604,-3.113,-0.191,0.0,0.0,13.513,5.728,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,3130.0,0.0,2330.0,800.0 -house021.xml,156.827,156.827,48.021,48.021,108.806,0.0,0.0,0.0,0.0,0.0,0.0,2.012,0.0,0.0,8.046,1.413,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.758,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2798.0,4687.4,4687.4,81.275,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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 +house021.xml,156.827,156.827,48.017,48.017,108.81,0.0,0.0,0.0,0.0,0.0,0.0,2.009,0.0,0.0,8.045,1.414,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.762,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2797.4,4687.2,4687.2,81.276,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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.942,137.942,48.641,48.641,0.0,89.301,0.0,0.0,0.0,0.0,0.0,2.221,0.0,0.0,8.642,0.872,12.472,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.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,73.302,0.0,18.701,10.989,1.482,0.0,0.0,184.0,120.0,2976.2,5355.4,5441.2,90.789,27.294,3.683,3.758,20.619,0.0,0.0,1.487,16.607,-13.137,0.0,0.0,14.695,0.0,-0.264,37.703,0.0,1.156,0.0,0.0,-9.561,-4.29,1.118,0.18,0.677,0.0,0.0,-0.116,-1.377,11.45,0.0,0.0,2.123,0.0,-0.255,-2.589,-1.167,-0.068,0.0,0.0,6.159,2.4,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,138.13,138.13,62.979,62.979,0.0,75.152,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.805,0.745,19.998,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.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,62.742,0.0,15.9,17.1,2.77,0.0,0.0,0.0,0.0,4239.1,4671.5,4833.4,62.489,20.562,0.0,10.21,21.491,1.201,16.448,0.85,9.987,-7.812,0.0,0.0,0.0,6.18,-0.035,23.704,0.0,1.638,0.0,0.0,-15.576,-5.907,0.0,-0.166,-0.965,-0.011,6.021,-0.112,-1.017,9.141,0.0,0.0,0.0,-5.972,-0.012,-2.63,-1.377,-0.31,0.0,0.0,10.082,3.312,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.27,129.27,43.791,43.791,0.0,85.479,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.314,0.475,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.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,0.0,15.506,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3558.1,3601.4,72.07,17.437,0.0,7.18,30.082,0.0,0.0,0.682,7.228,-7.897,0.0,0.0,5.182,0.0,-0.107,25.401,0.0,1.837,0.0,11.769,-8.641,-2.539,0.0,0.598,1.303,0.0,0.0,-0.039,-0.282,6.002,0.0,0.0,0.551,0.0,-0.1,-1.421,-0.661,-0.192,0.0,2.906,5.522,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 @@ -129,13 +129,13 @@ house037.xml,88.497,88.497,21.781,21.781,0.0,66.716,0.0,0.0,0.0,0.0,0.0,0.181,0. house038.xml,125.312,125.312,51.035,51.035,74.277,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.663,2.592,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.246,0.0,24.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,40.194,0.0,30.749,14.715,4.601,0.0,0.0,0.0,214.0,2455.6,5668.8,5727.5,48.331,27.398,0.0,3.653,14.884,0.651,4.463,0.81,12.433,-10.431,0.0,0.0,1.862,2.347,-0.047,22.487,0.002,0.595,0.0,0.0,-10.149,-3.873,0.0,0.847,2.607,0.141,2.251,0.018,0.927,12.753,0.0,0.0,0.337,-0.578,-0.035,-0.567,-0.343,0.005,0.0,0.0,8.627,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.915,99.915,24.039,24.039,75.876,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.147,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.189,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.915,0.0,0.0,14.272,1.137,0.0,0.0,0.0,0.0,1709.3,1463.6,1709.3,50.061,0.0,0.0,14.206,5.385,0.0,0.0,2.508,16.121,-13.538,0.0,0.0,14.028,0.0,-0.041,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.0,5211.5,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.645,101.645,23.521,23.521,78.124,0.0,0.0,0.0,0.0,0.0,0.0,1.305,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.742,0.0,17.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.224,0.0,0.0,8.002,5.526,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.269,5.618,22.289,0.0,4.298,2.095,12.884,-12.513,0.0,0.0,2.035,3.393,-0.099,19.744,0.0,0.612,0.0,0.0,-10.092,-4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,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.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.222,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.8,4659.8,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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 +house041.xml,258.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.221,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.5,4659.5,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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.113,231.113,39.974,39.974,191.139,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.695,0.059,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.693,0.0,24.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,163.898,0.0,2.43,15.632,3.233,0.0,0.0,0.0,0.0,2758.4,3129.4,3129.4,88.149,18.993,0.0,9.173,39.851,4.013,43.724,2.65,34.226,-19.417,0.0,0.0,2.449,14.541,-0.353,56.288,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.234,-1.359,-0.05,2.949,-0.141,-2.88,5.799,0.0,0.0,-0.257,-4.864,-0.349,-2.683,-1.152,-0.137,0.0,0.0,5.47,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.415,158.415,29.874,29.874,128.541,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.863,0.096,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.634,0.0,19.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.475,0.0,2.502,13.084,2.212,0.0,0.0,0.0,0.0,1987.9,2776.6,2776.6,54.557,13.333,0.0,3.168,23.192,2.294,33.785,5.576,22.939,-10.01,0.0,0.0,0.549,9.933,-0.294,28.975,0.0,1.578,0.0,0.0,-14.405,-5.173,0.0,0.05,-0.758,-0.084,1.794,-0.334,-1.957,4.656,0.0,0.0,-0.067,-3.531,-0.293,-1.516,-1.039,-0.139,0.0,0.0,4.422,1.388,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.59,226.59,43.407,43.407,183.183,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,1.999,0.167,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.608,0.0,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.221,0.0,3.225,13.084,4.459,0.0,0.0,0.0,0.0,3093.0,3635.3,3635.3,80.998,18.664,4.37,6.899,36.503,9.234,19.262,2.757,18.187,-11.68,0.0,0.0,12.916,15.091,-0.489,61.981,0.0,1.436,0.0,0.0,-18.085,-10.282,0.257,0.47,-1.293,-0.091,1.238,-0.112,-0.738,5.621,0.0,0.0,-1.102,-4.765,-0.486,-2.584,-0.942,-0.097,0.0,0.0,5.245,2.672,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.253,152.253,35.023,35.023,117.23,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.235,0.254,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.766,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,3.509,13.084,4.372,0.0,0.0,0.0,0.0,2316.2,3032.1,3032.1,47.197,12.913,3.572,3.08,15.119,2.29,32.755,1.135,18.522,-12.224,1.044,-0.408,0.086,12.636,-0.246,20.645,0.0,10.934,0.0,0.0,-14.644,-7.017,0.003,0.019,-1.02,-0.114,1.097,-0.081,-1.351,6.243,-0.064,0.396,-0.012,-3.964,-0.245,-1.121,-1.85,-1.217,0.0,0.0,4.85,2.048,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,24.996,24.996,24.996,24.996,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.452,0.303,0.011,3.749,1.006,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.848,0.314,12.82,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.521,3.838,0.0,0.0,0.327,2.234,-1.649,0.0,0.0,-0.155,0.0,-0.302,7.966,0.0,0.378,0.0,2.782,-3.568,-0.482,0.0,1.272,2.536,0.0,0.0,0.024,0.778,2.451,0.0,0.0,-0.154,0.0,-0.301,-0.456,-0.233,0.019,0.0,1.784,4.603,0.548,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.667,20.667,14.38,14.38,6.287,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.505,0.001,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.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,6.111,0.0,1.505,4.203,0.0,0.0,0.0,0.0,0.0,873.4,944.4,944.4,4.758,2.576,0.0,-0.001,0.775,0.127,0.0,0.0,1.725,-0.559,0.0,0.0,0.0,1.381,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.106,0.033,0.0,0.0,-0.055,0.798,0.0,0.0,0.0,-1.094,-0.01,-0.223,-0.378,-1.355,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,90.99,90.99,39.568,39.568,51.422,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.735,3.736,0.0,0.0,0.0,3.691,0.085,0.498,3.032,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.486,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.723,0.0,52.088,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,1.023,2.631,12.009,0.0,0.0,0.803,4.611,-2.524,0.0,0.0,0.056,2.014,-0.564,6.791,0.0,4.189,0.0,6.413,-7.341,-1.494,1.32,0.99,9.262,0.0,0.0,0.563,3.668,4.27,0.0,0.0,0.075,10.064,-0.552,0.509,-0.641,1.936,0.0,7.002,11.649,2.197,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,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,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.685,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.253,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.687,7.21,0.0,0.0,0.0,2.958,9.864,0.0,0.0,0.0,3.486,-0.08,-0.045,-2.995,0.697,0.0,0.0,7.425,1.011,728.6,567.4,7487.1,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.544,51.544,21.856,21.856,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,1.919,0.325,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.773,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.163,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2814.7,2814.7,11.085,17.256,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.164,2.669,0.0,3.683,0.0,1.887,-10.202,-1.222,0.0,-0.258,-0.24,0.0,0.0,-0.372,0.345,4.091,0.0,0.0,-0.937,0.0,-0.162,-0.526,-2.496,-0.719,0.0,0.59,5.334,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 +house048.xml,91.199,91.199,39.596,39.596,51.604,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,12.758,3.743,0.0,0.0,0.0,3.691,0.085,0.498,3.027,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.667,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.87,0.0,52.14,7.253,2.657,0.0,0.0,0.0,0.0,1535.1,5475.6,5475.6,42.042,33.926,1.023,2.632,12.008,0.0,0.0,0.804,4.614,-2.524,0.0,0.0,0.056,2.011,-0.562,6.928,0.0,4.194,0.0,6.425,-7.347,-1.496,1.32,0.991,9.263,0.0,0.0,0.563,3.672,4.27,0.0,0.0,0.075,10.062,-0.55,0.545,-0.64,1.938,0.0,7.016,11.643,2.195,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,35.247,35.247,31.75,31.75,3.497,0.0,0.0,0.0,0.0,0.0,7.568,0.046,0.0,0.0,7.285,0.19,2.63,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.745,0.0,30.546,4.262,1.318,0.0,0.0,0.0,110.0,4630.6,2820.9,4630.6,13.099,15.914,0.0,1.364,4.348,0.0,0.0,0.0,4.223,-5.784,0.0,0.0,0.0,1.262,-0.079,2.475,0.0,1.842,0.0,0.0,-2.535,-0.461,0.0,1.679,7.191,0.0,0.0,0.0,2.931,9.884,0.0,0.0,0.0,3.484,-0.079,-0.123,-3.016,0.687,0.0,0.0,7.435,1.013,728.6,567.4,7487.3,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.162,51.162,21.863,21.863,29.299,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,1.93,0.329,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.383,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.026,0.0,5.214,8.572,0.0,0.0,0.0,0.0,0.0,1155.8,2801.9,2801.9,10.86,17.162,0.0,4.162,6.55,0.0,0.0,2.038,5.185,-4.132,0.0,0.0,4.908,0.0,-0.168,2.259,0.0,3.686,0.0,1.843,-10.183,-1.22,0.0,-0.26,-0.247,0.0,0.0,-0.375,0.337,4.104,0.0,0.0,-0.948,0.0,-0.167,-0.447,-2.518,-0.726,0.0,0.592,5.352,0.562,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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index f16101a85..c5d72a09e 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -15,29 +15,29 @@ base-location-honolulu-hi.xml,4433.11,144.0,4289.11,0.0,4433.11,0.0,0.0,0.0,0.0, base-location-miami-fl.xml,1452.56,144.0,1308.56,0.0,1452.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-location-phoenix-az.xml,1633.82,144.0,1345.81,0.0,1489.81,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,1202.56,144.0,817.34,0.0,961.34,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,2110.41,144.0,1379.5,0.0,1523.5,144.0,442.91,586.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-balanced.xml,2101.48,144.0,1379.02,0.0,1523.02,144.0,434.46,578.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-bath-kitchen-fans.xml,1855.96,144.0,1314.04,0.0,1458.04,144.0,253.92,397.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-cfis-airflow-fraction-zero.xml,2037.69,144.0,1376.25,0.0,1520.25,144.0,373.44,517.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-cfis-airflow-fraction-zero.xml,2038.46,144.0,1376.25,0.0,1520.25,144.0,374.21,518.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,1392.16,144.0,1248.16,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1972.62,144.0,1326.41,0.0,1470.41,144.0,358.21,502.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,1995.87,144.0,1327.43,0.0,1471.43,144.0,380.44,524.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-cfis.xml,2049.19,144.0,1374.21,0.0,1518.21,144.0,386.98,530.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-mechvent-erv-atre-asre.xml,1955.74,144.0,1379.21,0.0,1523.21,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-mechvent-erv.xml,1955.78,144.0,1379.21,0.0,1523.21,144.0,288.57,432.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-cfis-evap-cooler-only-ducted.xml,1392.17,144.0,1248.17,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1978.47,144.0,1326.49,0.0,1470.49,144.0,363.98,507.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-mechvent-cfis-supplemental-fan-supply.xml,1996.66,144.0,1327.46,0.0,1471.46,144.0,381.2,525.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-mechvent-cfis.xml,2049.92,144.0,1374.21,0.0,1518.21,144.0,387.71,531.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1947.32,144.0,1378.87,0.0,1522.87,144.0,280.45,424.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-mechvent-erv.xml,1947.36,144.0,1378.87,0.0,1522.87,144.0,280.49,424.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-exhaust-rated-flow-rate.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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-hrv-asre.xml,1955.73,144.0,1379.22,0.0,1523.22,144.0,288.51,432.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-hrv.xml,1955.76,144.0,1379.22,0.0,1523.22,144.0,288.54,432.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-multiple.xml,2132.86,144.0,1394.38,0.0,1538.38,144.0,450.48,594.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-mechvent-supply.xml,2009.54,144.0,1344.85,0.0,1488.85,144.0,376.69,520.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1947.28,144.0,1378.86,0.0,1522.86,144.0,280.42,424.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-hrv.xml,1947.32,144.0,1378.86,0.0,1522.86,144.0,280.46,424.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-multiple.xml,2136.94,144.0,1394.31,0.0,1538.31,144.0,454.63,598.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-mechvent-supply.xml,2010.34,144.0,1344.89,0.0,1488.89,144.0,377.45,521.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-mechvent-whole-house-fan.xml,1775.28,144.0,1249.3,0.0,1393.3,144.0,237.98,381.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-misc-additional-properties.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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-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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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,674.29,108.0,777.89,-591.68,294.21,144.0,236.08,380.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,670.75,108.0,746.74,-564.08,290.67,144.0,236.08,380.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,635.35,108.0,702.47,-555.2,255.27,144.0,236.08,380.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 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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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 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,621.03,465.0,1255.78,-1476.89,243.89,132.0,245.14,377.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,84.04,465.0,1255.78,-2013.87,-293.1,132.0,245.14,377.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,-338.78,210.0,1255.78,-2181.7,-715.92,132.0,245.14,377.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,1788.92,144.0,1255.78,0.0,1399.78,144.0,245.14,389.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,1066.2,144.0,1151.27,-710.11,585.16,144.0,337.04,481.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-misc-defaults.xml,1070.49,144.0,1152.18,-710.11,586.07,144.0,340.42,484.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-misc-emissions.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-misc-generators-battery-scheduled.xml,2284.75,144.0,1373.35,0.0,1517.35,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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 @@ -65,7 +65,7 @@ base-residents-0.xml,917.12,144.0,268.49,0.0,412.49,144.0,360.63,504.63,0.0,0.0, base-residents-1-misc-loads-large-uncommon.xml,2776.92,144.0,1902.69,0.0,2046.69,144.0,435.96,579.96,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,2510.99,144.0,1813.66,0.0,1957.66,144.0,238.63,382.63,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,1582.86,144.0,1036.5,0.0,1180.5,144.0,258.36,402.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-residents-5.xml,1316.19,144.0,1458.42,-743.14,859.28,144.0,312.91,456.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-residents-5.xml,1320.39,144.0,1459.29,-743.14,860.14,144.0,316.25,460.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-all-10-mins.xml,1855.58,144.0,1319.52,0.0,1463.52,144.0,248.06,392.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-schedules-detailed-mixed-timesteps-power-outage.xml,1382.22,144.0,1042.85,0.0,1186.85,144.0,51.37,195.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps.xml,1625.55,144.0,1252.09,0.0,1396.09,144.0,85.46,229.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 @@ -92,24 +92,24 @@ base.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0 house001.xml,2408.68,144.0,1713.38,0.0,1857.38,144.0,407.3,551.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 house002.xml,2057.81,144.0,1487.66,0.0,1631.66,144.0,282.15,426.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 house003.xml,2049.34,144.0,1468.5,0.0,1612.5,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 -house004.xml,3685.65,144.0,2771.89,0.0,2915.89,144.0,625.76,769.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 +house004.xml,3688.92,144.0,2773.65,0.0,2917.65,144.0,627.27,771.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 house005.xml,2668.68,144.0,1951.66,0.0,2095.66,144.0,429.02,573.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 -house006.xml,2274.89,144.0,1177.55,0.0,1321.55,144.0,809.34,953.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 +house006.xml,2268.19,144.0,1177.93,0.0,1321.93,144.0,802.26,946.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 house007.xml,2335.01,144.0,1257.35,0.0,1401.35,144.0,789.66,933.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 -house008.xml,2826.13,144.0,1454.47,0.0,1598.47,144.0,1083.66,1227.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 +house008.xml,2817.53,144.0,1454.1,0.0,1598.1,144.0,1075.43,1219.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 house009.xml,2454.05,144.0,1263.31,0.0,1407.31,144.0,902.74,1046.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 -house010.xml,2555.49,144.0,1393.76,0.0,1537.76,144.0,873.73,1017.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 -house011.xml,1599.43,144.0,1455.43,0.0,1599.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 +house010.xml,2546.92,144.0,1393.39,0.0,1537.39,144.0,865.53,1009.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 +house011.xml,1602.84,144.0,1458.84,0.0,1602.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 house012.xml,1299.12,144.0,1155.12,0.0,1299.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 -house013.xml,1129.43,144.0,985.43,0.0,1129.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 -house014.xml,1161.2,144.0,1017.2,0.0,1161.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 -house015.xml,1129.43,144.0,985.43,0.0,1129.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 +house013.xml,1132.54,144.0,988.54,0.0,1132.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 +house014.xml,1164.54,144.0,1020.54,0.0,1164.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 +house015.xml,1132.54,144.0,988.54,0.0,1132.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 house016.xml,2697.33,144.0,1754.03,0.0,1898.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.3,799.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 house017.xml,2096.74,144.0,1013.86,0.0,1157.86,144.0,794.88,938.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 house018.xml,1734.45,144.0,1590.45,0.0,1734.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 house019.xml,3151.56,144.0,1886.16,0.0,2030.16,144.0,977.4,1121.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 house020.xml,4889.09,144.0,2486.43,0.0,2630.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.66,2258.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 -house021.xml,3394.18,144.0,1753.0,0.0,1897.0,144.0,1353.18,1497.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 +house021.xml,3394.09,144.0,1752.86,0.0,1896.86,144.0,1353.23,1497.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 house022.xml,5106.63,144.0,1775.67,0.0,1919.67,0.0,0.0,0.0,0.0,3186.96,3186.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 house023.xml,5125.06,144.0,2299.06,0.0,2443.06,0.0,0.0,0.0,0.0,2682.0,2682.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house024.xml,4793.18,144.0,1598.62,0.0,1742.62,0.0,0.0,0.0,0.0,3050.56,3050.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 @@ -129,13 +129,13 @@ house037.xml,3488.99,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2380.96,2380.96,0. house038.xml,3074.81,144.0,1863.06,0.0,2007.06,144.0,923.75,1067.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 house039.xml,2109.19,144.0,877.55,0.0,1021.55,144.0,943.64,1087.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 house040.xml,2118.23,144.0,858.63,0.0,1002.63,144.0,971.6,1115.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 -house041.xml,3632.64,144.0,1746.41,0.0,1890.41,144.0,1598.23,1742.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 +house041.xml,3632.63,144.0,1746.4,0.0,1890.4,144.0,1598.23,1742.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 house042.xml,3216.44,144.0,1486.79,0.0,1630.79,144.0,1441.65,1585.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 house043.xml,2368.64,144.0,1111.13,0.0,1255.13,144.0,969.51,1113.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 house044.xml,3284.12,144.0,1614.48,0.0,1758.48,144.0,1381.64,1525.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 house045.xml,2474.84,144.0,1302.64,0.0,1446.64,144.0,884.2,1028.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 house046.xml,950.44,144.0,806.44,0.0,950.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 house047.xml,990.8,144.0,636.48,0.0,780.48,144.0,66.32,210.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 -house048.xml,2269.05,144.0,1448.13,0.0,1592.13,144.0,532.92,676.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 -house049.xml,1485.34,144.0,1174.21,0.0,1318.21,144.0,23.13,167.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 -house050.xml,1242.72,144.0,652.08,0.0,796.08,144.0,302.64,446.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 +house048.xml,2271.97,144.0,1449.16,0.0,1593.16,144.0,534.81,678.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 +house049.xml,1477.13,144.0,1166.0,0.0,1310.0,144.0,23.13,167.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 +house050.xml,1238.98,144.0,652.31,0.0,796.31,144.0,298.67,442.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 From 08f492c9345feec886c1da23c4e82c84f15b4561 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 10 Jan 2024 14:18:26 -0700 Subject: [PATCH 10/35] Some refactoring/cleanup. --- rulesets/resources/301ruleset.rb | 95 +++++++++++++++--------------- rulesets/tests/test_ventilation.rb | 16 ++--- 2 files changed, 55 insertions(+), 56 deletions(-) diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index f50cd3bfc..555181f45 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -339,31 +339,30 @@ def self.set_climate(orig_bldg, new_bldg) end def self.set_enclosure_air_infiltration_reference(orig_bldg, new_bldg) - _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + infil_values = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) sla = 0.00036 - ach50 = Airflow.get_infiltration_ACH50_from_SLA(sla, 0.65, @cfa, infil_volume) + ach50 = Airflow.get_infiltration_ACH50_from_SLA(sla, 0.65, @cfa, infil_values[:volume]) new_bldg.air_infiltration_measurements.add(id: 'Infiltration_ACH50', house_pressure: 50, unit_of_measure: HPXML::UnitsACH, air_leakage: ach50.round(2), - infiltration_volume: infil_volume, - infiltration_height: infil_height, + infiltration_volume: infil_values[:volume], + infiltration_height: infil_values[:height], infiltration_type: HPXML::InfiltrationTypeUnitExterior, a_ext: 1.0) end def self.set_enclosure_air_infiltration_rated(orig_bldg, new_bldg) - _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - a_ext = calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) - ach50 = calc_rated_home_infiltration_ach50(orig_bldg, a_ext) + infil_values = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + ach50, a_ext = calc_rated_home_infiltration_ach50(orig_bldg) new_bldg.air_infiltration_measurements.add(id: 'AirInfiltrationMeasurement', house_pressure: 50, unit_of_measure: HPXML::UnitsACH, air_leakage: ach50.round(2), - infiltration_volume: infil_volume, - infiltration_height: infil_height, + infiltration_volume: infil_values[:volume], + infiltration_height: infil_values[:height], infiltration_type: HPXML::InfiltrationTypeUnitExterior, - a_ext: a_ext.round(3)) + a_ext: a_ext.round(3)) # Aext reported solely for inspection end def self.set_enclosure_air_infiltration_iad(new_bldg) @@ -1457,7 +1456,7 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ else q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) infil_height = new_bldg.air_infiltration_measurements[0].infiltration_height - q_fan_airflow = calc_mech_vent_qfan(q_tot, ref_sla, true, 0.0, 1.0, infil_height) # cfm for airflow + q_fan_airflow = calc_mech_vent_qfan(q_tot, ref_sla, true, 0.0, infil_height) # cfm for airflow end mech_vent_fans = orig_bldg.ventilation_fans.select { |f| f.used_for_whole_building_ventilation } @@ -1628,9 +1627,9 @@ def self.set_systems_mechanical_ventilation_iad(new_bldg) q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) # Calculate fan cfm - _sla, ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(new_bldg, @cfa, @weather) - sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, infil_volume) - q_fan = calc_mech_vent_qfan(q_tot, sla, true, 0.0, 1.0, infil_height) + infil_values = Airflow.get_values_from_air_infiltration_measurements(new_bldg, @cfa, @weather) + sla = Airflow.get_infiltration_SLA_from_ACH50(infil_values[:ach50], 0.65, @cfa, infil_values[:volume]) + q_fan = calc_mech_vent_qfan(q_tot, sla, true, 0.0, infil_values[:height]) fan_power_w = 0.70 * q_fan new_bldg.ventilation_fans.add(id: 'MechanicalVentilation', @@ -2437,9 +2436,31 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) return q_fans end - def self.calc_rated_home_infiltration_ach50(orig_bldg, a_ext) - _sla, ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - ach50 *= a_ext + def self.calc_rated_home_infiltration_ach50(orig_bldg) + # Note: The infiltration rate returned will *include* the Aext term. + # We separately report out the Aext in the HPXML file for inspection, but the + # AirInfiltrationMeasurement element will use infiltration_type: 'unit exterior' + # so as not to double-count the Aext term. + infil_values = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + + if @bldg_type == HPXML::ResidentialTypeSFD + a_ext = 1.0 + else + tot_cb_area, ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + a_ext = ext_cb_area / tot_cb_area + + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type + cfm50 = infil_values[:ach50] * infil_values[:volume] / 60.0 + tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() + if cfm50 / tot_cb_area > 0.30 + a_ext = 1.0 + end + end + end + end + + ach50 = infil_values[:ach50] * a_ext # Apply min Natural ACH? min_nach = nil @@ -2456,14 +2477,14 @@ def self.calc_rated_home_infiltration_ach50(orig_bldg, a_ext) end if not min_nach.nil? - min_sla = Airflow.get_infiltration_SLA_from_ACH(min_nach, infil_height, @weather) - min_ach50 = Airflow.get_infiltration_ACH50_from_SLA(min_sla, 0.65, @cfa, infil_volume) + min_sla = Airflow.get_infiltration_SLA_from_ACH(min_nach, infil_values[:height], @weather) + min_ach50 = Airflow.get_infiltration_ACH50_from_SLA(min_sla, 0.65, @cfa, infil_values[:volume]) if ach50 < min_ach50 ach50 = min_ach50 end end - return ach50 + return ach50, a_ext end def self.calc_mech_vent_supply_exhaust_cfms(ventilation_fans, total_or_oa) @@ -2523,41 +2544,19 @@ def self.get_mech_vent_imbal_properties(mech_vent_fans) return is_balanced, frac_imbal end - def self.calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) - if @bldg_type == HPXML::ResidentialTypeSFD - return 1.0 - end - - tot_cb_area, ext_cb_area = orig_bldg.compartmentalization_boundary_areas() - a_ext = ext_cb_area / tot_cb_area - - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') - if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? @bldg_type - _sla, ach50, _nach, _volume, _height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - cfm50 = ach50 * infil_volume / 60.0 - tot_cb_area, _ext_cb_area = orig_bldg.compartmentalization_boundary_areas() - if cfm50 / tot_cb_area > 0.30 - a_ext = 1.0 - end - end - end - - return a_ext - end - def self.calc_rated_home_qfan(orig_bldg, is_balanced, frac_imbal) - _sla, _ach50, _nach, infil_volume, infil_height = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) - a_ext = calc_rated_home_mech_vent_Aext_ratio(orig_bldg, infil_volume) - ach50 = calc_rated_home_infiltration_ach50(orig_bldg, a_ext) - sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, infil_volume) + infil_values = Airflow.get_values_from_air_infiltration_measurements(orig_bldg, @cfa, @weather) + ach50, _ = calc_rated_home_infiltration_ach50(orig_bldg) + sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, @cfa, infil_values[:volume]) q_tot = Airflow.get_mech_vent_qtot_cfm(@nbeds, @cfa) - q_fan = calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, a_ext, infil_height) + q_fan = calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, infil_values[:height]) return q_fan end - def self.calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, a_ext, infil_height) + def self.calc_mech_vent_qfan(q_tot, sla, is_balanced, frac_imbal, infil_height) nl = Airflow.get_infiltration_NL_from_SLA(sla, infil_height) q_inf = Airflow.get_infiltration_Qinf_from_NL(nl, @weather, @cfa) + a_ext = 1.0 # Use Aext=1.0 because sla reflects 'unit exterior' infiltration so it already incorporates Aext q_fan = Airflow.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, @bldg_type, @eri_version, nil) return q_fan end diff --git a/rulesets/tests/test_ventilation.rb b/rulesets/tests/test_ventilation.rb index d92ac9e3c..b2cc87bc5 100644 --- a/rulesets/tests/test_ventilation.rb +++ b/rulesets/tests/test_ventilation.rb @@ -65,7 +65,7 @@ def test_mech_vent_attached_or_multifamily elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 49.4 }]) end end @@ -973,14 +973,14 @@ def test_mech_vent_shared _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.9 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.6 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 49.4 }]) end end @@ -989,14 +989,14 @@ def test_mech_vent_shared _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.7 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.0 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 55.0 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 49.4 }]) end end end @@ -1018,7 +1018,7 @@ def test_mech_vent_shared_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.9 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.6 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 80.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -1043,7 +1043,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.5 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 240.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) @@ -1070,7 +1070,7 @@ def test_mech_vent_shared_unmeasured_airflow_rate_and_defaulted_fan_power calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 19.5 }]) + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 13.7 }]) elsif [Constants.CalcTypeERIRatedHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeSupply, flowrate: 800.0, hours: 24, power: 800.0, in_unit_flowrate: 30.0, frac_recirc: 0.5, has_preheat: true, has_precool: true }, { fantype: HPXML::MechVentTypeExhaust, flowrate: 72.0, hours: 24, power: 26.0 }]) From 75ddb1b9150d73a55a5ba88b17e183a87ff1a568 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Jan 2024 23:20:10 +0000 Subject: [PATCH 11/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 18 ++++---- workflow/tests/base_results/real_homes.csv | 28 ++++++------- workflow/tests/base_results/sample_files.csv | 44 ++++++++++---------- 3 files changed, 45 insertions(+), 45 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 88b0476f0..9c08287b4 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,13 +1,13 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.07,67.07 -[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.97,74.97 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,76.78,76.78 -[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.11,62.11 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.45,64.45 -[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,63.23,63.23 -[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.43,51.43 -[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.61,49.61 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,63.5,63.5 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,66.95,66.95 +[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.33,74.33 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.32,73.32 +[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.02,62.02 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.0,64.0 +[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.41,62.41 +[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.34,51.34 +[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.16,49.16 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.14,60.14 [SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.02,73.02 [SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.25,81.25 [SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.3,71.3 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 0f9c9bdaf..0361a304a 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,15 +1,15 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -house001.xml,62.86,9.08,2.02,6.49,14.51,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.21448,71.32,5785.85,7605.33,1.0667,58.48,1.0,58.48,62.86,62.86,0.0,47.34,1.0,47.34,62.86,62.86,0.0,60.17,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21448 +house001.xml,62.9,9.08,2.02,6.49,14.51,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.21322,71.36,5785.85,7603.83,1.0663,55.82,1.0,55.82,62.9,62.9,0.0,46.52,1.0,46.52,62.9,62.9,0.0,60.2,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21322 house002.xml,74.57,51.51,21.17,9.54,41.6,12.18,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462,75.61,13121.97,17649.0,0.9834,50.67,1.0,50.67,74.57,74.57,0.0,48.26,1.0,48.26,74.57,74.57,0.0,69.17,59.81,21.26,9.54,48.17,12.71,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462 -house003.xml,62.75,27.3,21.76,8.83,30.61,12.45,16.04,18.97,6.86,7.24,22.14,1.19,0.0,0.24283,73.88,9376.08,12786.32,0.9925,49.05,1.0,49.05,62.75,62.75,0.0,47.12,1.0,47.12,62.75,62.75,0.0,59.5,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.72,6.85,7.24,22.14,1.14,0.0,0.24283 +house003.xml,62.61,27.3,21.76,8.83,30.61,12.45,16.04,18.880000000000003,6.86,7.24,22.14,1.18,0.0,0.24283,73.74,9356.39,12784.26,0.9925,48.91,1.0,48.91,62.61,62.61,0.0,47.01,1.0,47.01,62.61,62.61,0.0,59.47,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.700000000000003,6.84,7.24,22.14,1.13,0.0,0.24283 house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,56.17,1.0,56.17,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 -house005.xml,60.19,4.63,4.09,5.79,4.08,2.33,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,83.14,2687.5,2999.31,1.0778,50.04,1.0,50.04,60.19,60.19,0.0,45.45,1.0,45.45,60.19,60.19,0.0,58.42,5.54,4.01,5.79,4.72,2.34,12.13,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 +house005.xml,60.52,4.67,4.06,5.79,4.1,2.31,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,83.61,2687.5,2982.32,1.0778,50.04,1.0,50.04,60.52,60.52,0.0,44.92,1.0,44.92,60.52,60.52,0.0,58.73,5.57,3.98,5.79,4.74,2.32,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 house006.xml,71.4,31.58,20.72,10.54,23.74,12.02,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395,72.73,10094.8,13623.99,1.0188,45.67,1.0,45.67,71.4,71.4,0.0,43.8,1.0,43.8,71.4,71.4,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 -house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,48.79,1.0,48.79,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 +house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,48.03,1.0,48.03,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 house008.xml,62.72,96.27,10.33,13.22,153.4,6.79,22.26,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.42,24257.2,33975.74,0.9724,51.34,1.0,51.34,62.72,62.72,0.0,46.37,1.0,46.37,62.72,62.72,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 house009.xml,62.21,19.29,42.09,8.99,30.91,25.18,16.38,16.78,13.53,12.35,23.29,0.64,0.0,0.28642,84.89,9976.47,11470.79,1.0245,48.51,1.0,48.51,62.21,62.21,0.0,45.45,1.0,45.45,62.21,62.21,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.52,1.0,48.52,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,61.74,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26259,79.0,3440.31,4080.5,1.0673,56.67,1.0,56.67,61.74,61.74,0.0,53.11,1.0,53.11,61.74,61.74,0.0,59.69,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26259 +house011.xml,61.76,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26131,79.02,3440.31,4080.5,1.0669,56.55,1.0,56.55,61.76,61.76,0.0,53.04,1.0,53.04,61.76,61.76,0.0,59.71,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26131 house012.xml,52.09,34.67,2.59,11.63,29.51,1.47,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688,53.17,5525.34,9931.01,1.0463,51.68,1.0,51.68,52.09,52.09,1.0,44.07,1.0,44.07,52.09,52.09,0.0,48.05,40.72,2.44,11.63,34.43,1.45,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688 house013.xml,58.87,12.03,1.85,10.35,8.85,0.88,11.96,6.61,0.18,3.38,13.97,0.66,0.0,0.16792,57.5,1700.72,2805.93,1.0542,52.81,1.0,52.81,58.87,58.87,0.0,47.6,1.0,47.6,58.87,58.87,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,48.05,1.0,48.05,54.98,54.98,0.0,45.72,1.0,45.72,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 @@ -38,19 +38,19 @@ house036.xml,67.96,60.62,8.64,8.66,96.7,5.91,15.95,66.61,3.14,9.12,27.96,2.37,0. house037.xml,66.92,63.84,6.69,13.22,101.87,4.86,14.55,69.19,2.89,10.99,21.25,0.42,0.0,0.19298,78.12,19037.66,24109.56,1.0107,52.73,1.0,52.73,66.92,66.92,0.0,47.78,1.0,47.78,66.92,66.92,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 house038.xml,64.68,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.759999999999998,11.940000000000001,12.25,27.65,0.92,0.0,0.26786,72.94,13801.57,19459.29,0.9724,47.09,1.0,47.09,64.68,64.68,0.0,45.07,1.0,45.07,64.68,64.68,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.61,11058.09,0.9975,53.95,1.0,53.95,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 -house040.xml,63.58,123.63,12.23,11.07,197.05,7.94,19.46,110.5,8.89,15.32,32.38,2.19,0.0,0.18417,74.69,28996.13,40565.52,0.957,52.92,1.0,52.92,63.58,63.58,0.0,49.75,1.0,49.75,63.58,63.58,0.0,58.9,139.5,11.9,11.07,222.28,7.7,19.47,110.5,8.89,15.32,32.38,2.19,0.0,0.18417 +house040.xml,63.53,123.7,12.21,11.07,197.17,7.93,19.46,110.31,8.88,15.32,32.38,2.11,0.0,0.18417,74.66,28943.99,40512.52,0.957,52.69,1.0,52.69,63.53,63.53,0.0,49.54,1.0,49.54,63.53,63.53,0.0,58.85,139.57,11.88,11.07,222.4,7.69,19.47,110.31,8.88,15.32,32.38,2.11,0.0,0.18417 house041.xml,77.69,24.75,8.16,12.54,39.48,5.2,20.94,27.24,3.89,20.39,23.5,0.0,0.0,0.13022,170.64,9245.97,5294.1,1.0235,52.71,1.0,52.71,77.69,77.69,0.0,46.6,1.0,46.6,77.69,77.69,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 house042.xml,87.15,49.11,21.04,11.39,78.44,12.99,19.74,76.46,9.92,15.57,27.23,0.0,0.0,0.21961,112.81,20258.12,18000.96,0.9976,49.74,1.0,49.74,87.15,87.15,0.0,46.7,1.0,46.7,87.15,87.15,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 -house043.xml,-8.66,12.14,5.35,10.49,9.8,2.81,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3977.37,1.035,53.59,1.0,53.59,40.39,40.39,1.0,48.31,1.0,48.31,40.39,40.39,1.0,35.59,16.33,5.24,10.49,12.71,2.77,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 -house044.xml,69.12,18.7,3.36,6.35,29.87,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.08,7589.41,9341.05,1.0541,52.39,1.0,52.39,69.12,69.12,0.0,48.63,1.0,48.63,69.12,69.12,0.0,67.03,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 +house043.xml,-8.67,12.16,5.34,10.49,9.81,2.81,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3973.44,1.035,53.31,1.0,53.31,40.43,40.43,1.0,47.81,1.0,47.81,40.43,40.43,1.0,35.62,16.34,5.23,10.49,12.72,2.76,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 +house044.xml,69.13,18.71,3.36,6.35,29.87,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.09,7589.41,9339.61,1.0541,52.29,1.0,52.29,69.13,69.13,0.0,48.53,1.0,48.53,69.13,69.13,0.0,67.04,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 house045.xml,88.94,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001,100.18,25297.81,26306.02,0.96,49.32,1.0,49.32,88.94,88.94,0.0,45.51,1.0,45.51,88.94,88.94,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 house046.xml,-4.7,74.24,12.05,12.94,61.78,6.78,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812,9.34,2613.32,28117.48,0.9951,49.94,1.0,49.94,37.03,37.03,1.0,43.97,1.0,43.97,37.03,37.03,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 house047.xml,63.58,31.57,8.97,10.49,50.29,5.55,11.81,44.22,2.29,2.71,21.15,0.37,0.0,0.20941,168.44,10324.13,6103.19,1.0043,58.16,1.0,58.16,63.58,63.58,0.0,52.87,1.0,52.87,63.58,63.58,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 house048.xml,65.99,1.74,66.18,5.61,2.79,37.96,10.95,0.62,25.32,7.59,19.73,0.79,0.0,0.3336,82.63,6709.33,7678.16,1.0575,50.57,1.0,50.57,65.99,65.99,0.0,46.01,1.0,46.01,65.99,65.99,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 house049.xml,52.49,13.25,3.11,7.98,9.75,1.59,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328,90.14,2575.24,2717.62,1.0513,49.08,1.0,49.08,52.49,52.49,0.0,44.25,1.0,44.25,52.49,52.49,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 house050.xml,87.17,20.22,4.93,11.92,32.23,3.23,21.36,14.61,2.8,15.61,22.99,14.05,0.0,0.1657,176.1,7329.31,4096.47,1.016,55.55,1.0,55.55,87.17,87.17,0.0,50.31,1.0,50.31,87.17,87.17,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 -house051.xml,55.36,10.48,2.82,9.98,8.0,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.15,2716.29,2878.92,1.0239,51.73,1.0,51.73,55.36,55.36,0.0,46.73,1.0,46.73,55.36,55.36,0.0,52.94,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 -house052.xml,59.08,12.31,1.71,10.35,9.03,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.67,1785.27,2827.52,1.0581,53.36,1.0,53.36,59.08,59.08,0.0,48.36,1.0,48.36,59.08,59.08,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 +house051.xml,55.38,10.49,2.82,9.98,8.01,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.18,2716.29,2877.81,1.0239,51.59,1.0,51.59,55.38,55.38,0.0,46.39,1.0,46.39,55.38,55.38,0.0,52.96,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 +house052.xml,59.09,12.31,1.71,10.35,9.03,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.68,1785.27,2826.99,1.0581,53.25,1.0,53.25,59.09,59.09,0.0,48.21,1.0,48.21,59.09,59.09,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 house053.xml,70.94,20.36,4.77,11.92,32.46,3.16,21.32,21.16,2.02,14.94,22.57,0.96,0.0,0.16633,175.03,7240.7,4066.51,1.0173,55.4,1.0,55.4,70.94,70.94,0.0,50.18,1.0,50.18,70.94,70.94,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 house054.xml,62.17,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.69,43.620000000000005,6.47,28.18,1.52,0.0,0.33458,71.29,9742.93,13364.6,1.0226,49.65,1.0,49.65,62.17,62.17,0.0,44.99,1.0,44.99,62.17,62.17,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 house055.xml,63.35,1.76,65.51,5.61,2.82,37.48,10.68,1.21,24.25,5.91,18.6,1.03,0.0,0.33869,75.68,6123.88,7633.91,1.06,48.76,1.0,48.76,63.35,63.35,0.0,44.32,1.0,44.32,63.35,63.35,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 @@ -59,8 +59,8 @@ house057.xml,82.68,17.86,4.12,9.98,28.47,2.82,11.54,16.12,2.93,3.24,19.13,12.04, house058.xml,64.48,3.14,82.82,6.7,5.03,47.9,12.51,1.6,29.31,10.89,21.41,0.99,0.0,0.33359,79.35,7798.01,9707.3,1.0124,50.47,1.0,50.47,64.48,64.48,0.0,45.84,1.0,45.84,64.48,64.48,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 house059.xml,55.68,7.23,2.94,7.98,5.69,1.48,15.03,2.72,0.45,6.95,14.27,0.13,0.0,0.1901,105.15,2426.76,2150.04,1.0734,50.65,1.0,50.65,55.68,55.68,0.0,46.45,1.0,46.45,55.68,55.68,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 house060.xml,69.74,30.94,33.66,11.51,49.52,20.259999999999998,19.93,38.8,11.84,13.8,27.47,0.0,0.0,0.23113,87.03,15130.83,17200.83,1.0107,49.65,1.0,49.65,69.74,69.74,0.0,46.07,1.0,46.07,69.74,69.74,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 -house061.xml,66.16,4.53,3.08,5.79,7.23,1.79,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.20512,92.91,2933.83,2962.99,1.0657,62.2,1.0,62.2,66.16,66.16,0.0,51.67,1.0,51.67,66.16,66.16,0.0,64.02,5.55,3.01,5.79,8.86,1.79,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20512 -house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.61,1.0,49.61,74.3,74.3,0.0,46.09,1.0,46.09,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 +house061.xml,66.56,4.56,3.06,5.79,7.28,1.78,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.20355,93.48,2933.83,2946.5,1.0651,59.92,1.0,59.92,66.56,66.56,0.0,50.94,1.0,50.94,66.56,66.56,0.0,64.37,5.59,2.99,5.79,8.91,1.78,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20355 +house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.33,1.0,49.33,74.3,74.3,0.0,45.87,1.0,45.87,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 house063.xml,77.83,16.03,40.12,6.02,25.67,23.63,12.48,21.79,15.83,9.48,20.91,4.23,0.0,0.25386,104.51,10777.22,10255.08,1.0056,48.88,1.0,48.88,77.83,77.83,0.0,46.1,1.0,46.1,77.83,77.83,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 house064.xml,70.44,14.03,32.39,6.02,22.48,19.15,12.18,17.09,12.27,8.4,16.88,2.42,0.0,0.27504,95.85,8514.99,8539.93,1.0402,53.48,1.0,53.48,70.44,70.44,0.0,50.28,1.0,50.28,70.44,70.44,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 house065.xml,76.06,15.85,42.08,8.99,25.39,25.35,16.33,23.05,16.23,12.28,24.39,4.77,0.0,0.25282,102.08,12019.78,11372.24,1.0354,47.62,1.0,47.62,76.06,76.06,0.0,44.93,1.0,44.93,76.06,76.06,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 @@ -74,8 +74,8 @@ house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.4 house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,50.07,1.0,50.07,54.01,54.01,0.0,47.26,1.0,47.26,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 house074.xml,72.27,14.0,33.43,7.53,10.24,19.53,8.68,6.23,13.35,6.54,21.4,0.83,0.0,0.24424,73.99,7229.3,9278.57,1.053,43.73,1.0,43.73,72.27,72.27,0.0,42.07,1.0,42.07,72.27,72.27,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 house075.xml,64.51,31.57,15.71,11.39,50.45,9.98,19.41,31.46,5.23,18.51,17.85,0.0,0.0,0.21678,85.62,11409.83,12849.2,1.0372,46.34,1.0,46.34,64.51,64.51,0.0,43.59,1.0,43.59,64.51,64.51,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 -house076.xml,65.36,6.58,4.87,5.79,10.49,3.47,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.181,109.1,3884.22,3365.19,1.0579,52.53,1.0,52.53,65.36,65.36,0.0,47.4,1.0,47.4,65.36,65.36,0.0,63.79,7.43,4.79,5.79,11.85,3.47,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.181 -house077.xml,77.38,8.58,5.14,8.66,13.72,3.67,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.20813,82.19,7461.65,8480.49,1.0705,56.06,1.0,56.06,77.38,77.38,0.0,46.74,1.0,46.74,77.38,77.38,0.0,74.47,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20813 +house076.xml,65.69,6.61,4.85,5.79,10.54,3.46,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.17942,109.68,3884.22,3349.01,1.0574,52.56,1.0,52.56,65.69,65.69,0.0,46.87,1.0,46.87,65.69,65.69,0.0,64.08,7.46,4.77,5.79,11.9,3.46,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.17942 +house077.xml,77.43,8.59,5.14,8.66,13.72,3.67,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.20678,82.25,7461.65,8478.23,1.0701,56.09,1.0,56.09,77.43,77.43,0.0,46.33,1.0,46.33,77.43,77.43,0.0,74.51,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20678 house078.xml,57.17,29.41,57.23,8.99,47.12,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.87,11821.67,15183.26,0.9872,53.43,1.0,53.43,57.17,57.17,0.0,50.27,1.0,50.27,57.17,57.17,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 house079.xml,49.4,44.96,2.88,10.35,31.580000000000002,1.43,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664,49.42,2724.63,5675.52,0.9713,55.85,1.0,55.85,49.4,49.4,1.0,50.5,1.0,50.5,49.4,49.4,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 house080.xml,41.1,31.17,63.31,8.99,22.73,37.19,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981,42.93,7014.45,16794.21,0.973,46.21,1.0,46.21,41.1,41.1,1.0,44.48,1.0,44.48,41.1,41.1,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index e6f5323e9..83886a0d1 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -15,28 +15,28 @@ base-atticroof-flat.xml,71.37,29.29,8.56,10.49,46.65,5.24,11.52,32.1,3.91,9.02,2 base-atticroof-radiant-barrier.xml,72.95,9.39,26.65,7.53,15.05,15.84,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811,78.77,6304.3,7545.78,1.0606,46.94,1.0,46.94,72.95,72.95,0.0,44.1,1.0,44.1,72.95,72.95,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 base-atticroof-unvented-insulated-roof.xml,74.09,29.51,8.31,10.49,47.03,5.17,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867,142.76,7914.63,5495.15,1.0089,56.51,1.0,56.51,74.09,74.09,0.0,50.8,1.0,50.8,74.09,74.09,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 base-atticroof-vented.xml,76.42,30.04,8.11,10.49,47.87,5.07,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173,150.14,8416.16,5547.13,1.0106,57.26,1.0,57.26,76.42,76.42,0.0,51.7,1.0,51.7,76.42,76.42,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,72.85,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21463,108.64,3626.8,3076.07,1.0853,70.41,1.0,70.41,72.85,72.85,0.0,59.03,1.0,59.03,72.85,72.85,0.0,71.15,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21463 -base-bldgtype-mf-unit-location-portland-or.xml,71.32,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18327,78.05,2227.55,2661.18,1.0724,65.05,1.0,65.05,71.32,71.32,0.0,51.54,1.0,51.54,71.32,71.32,0.0,70.52,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18327 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,69.98,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.22288,77.8,2572.23,3036.78,1.0887,62.13,1.0,62.13,69.98,69.98,0.0,51.39,1.0,51.39,69.98,69.98,0.0,68.45,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.22288 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.26,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.22288,78.61,2598.87,3036.78,1.0887,62.29,1.0,62.29,70.26,70.26,0.0,51.48,1.0,51.48,70.26,70.26,0.0,68.72,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.22288 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.02,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.22288,77.72,2569.58,3036.78,1.0887,62.29,1.0,62.29,70.02,70.02,0.0,51.48,1.0,51.48,70.02,70.02,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.22288 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,69.48,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21909,75.42,2489.93,3036.78,1.0871,61.09,1.0,61.09,69.48,70.93,0.0,50.98,1.0,50.98,69.48,70.93,0.0,67.98,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21909 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.22,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21498,81.07,2672.41,3036.78,1.0854,67.52,1.0,67.52,69.22,69.22,0.0,52.37,1.0,52.37,69.22,69.22,0.0,67.72,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21498 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.13,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21498,82.24,2710.95,3036.78,1.0854,68.01,1.0,68.01,71.13,71.13,0.0,52.83,1.0,52.83,71.13,71.13,0.0,69.58,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21498 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,69.79,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21498,81.42,2683.72,3036.78,1.0854,68.01,1.0,68.01,69.79,69.79,0.0,52.83,1.0,52.83,69.79,69.79,0.0,68.28,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21498 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,80.44,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21498,87.82,2894.79,3036.78,1.0854,71.3,1.0,71.3,80.44,80.44,0.0,55.88,1.0,55.88,80.44,80.44,0.0,78.63,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21498 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,70.72,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21498,82.0,2702.85,3036.78,1.0854,67.65,1.0,67.65,70.72,70.72,0.0,52.49,1.0,52.49,70.72,70.72,0.0,69.18,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21498 -base-bldgtype-mf-unit-shared-generator.xml,65.03,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,138.86,4437.89,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,63.62,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,76.56,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.21297,72.77,2324.06,2944.68,1.0846,67.25,1.0,67.25,76.56,76.56,0.0,56.64,1.0,56.64,76.56,76.56,0.0,75.08,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.21297 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,66.95,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.21435,119.83,3836.06,2950.08,1.0852,53.77,1.0,53.77,66.95,66.95,0.0,44.73,1.0,44.73,66.95,66.95,0.0,65.52,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21435 -base-bldgtype-mf-unit-shared-laundry-room.xml,63.88,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.21435,111.18,3558.78,2949.68,1.0852,53.77,1.0,53.77,63.88,63.88,0.0,44.73,1.0,44.73,63.88,63.88,0.0,62.51,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21435 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.43,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21463,89.45,2903.59,2990.83,1.0853,60.47,1.0,60.47,74.43,74.43,0.0,49.67,1.0,49.67,74.43,74.43,0.0,72.7,6.14,5.96,10.49,9.82,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21463 -base-bldgtype-mf-unit-shared-mechvent.xml,69.56,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21463,78.56,2550.1,2990.83,1.0853,60.47,1.0,60.47,69.56,69.56,0.0,49.67,1.0,49.67,69.56,69.56,0.0,68.32,6.14,5.96,10.49,9.82,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21463 -base-bldgtype-mf-unit-shared-pv.xml,5.95,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,25.46,813.67,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,62.46,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,65.54,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.21435,113.76,3635.34,2944.68,1.0852,54.58,1.0,54.58,65.54,65.54,0.0,45.51,1.0,45.51,65.54,65.54,0.0,64.18,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21435 -base-bldgtype-mf-unit-shared-water-heater.xml,64.02,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.21435,111.0,3547.12,2944.68,1.0852,53.69,1.0,53.69,64.02,64.02,0.0,44.77,1.0,44.77,64.02,64.02,0.0,62.69,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21435 -base-bldgtype-mf-unit.xml,67.44,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463,77.88,2489.05,2944.68,1.0853,60.47,1.0,60.47,67.44,67.44,0.0,49.67,1.0,49.67,67.44,67.44,0.0,65.97,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21463 -base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.41,1.0,56.41,76.14,76.14,0.0,50.87,1.0,50.87,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,72.9,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303,108.7,3626.8,3076.07,1.0846,67.66,1.0,67.66,72.9,72.9,0.0,58.7,1.0,58.7,72.9,72.9,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-location-portland-or.xml,71.36,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156,78.11,2227.55,2661.18,1.0717,62.19,1.0,62.19,71.36,71.36,0.0,51.3,1.0,51.3,71.36,71.36,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,70.02,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213,77.85,2572.23,3036.78,1.0881,59.65,1.0,59.65,70.02,70.02,0.0,51.1,1.0,51.1,70.02,70.02,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.3,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213,78.65,2598.87,3036.78,1.0881,59.79,1.0,59.79,70.3,70.3,0.0,51.19,1.0,51.19,70.3,70.3,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.06,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213,77.77,2569.58,3036.78,1.0881,59.79,1.0,59.79,70.06,70.06,0.0,51.19,1.0,51.19,70.06,70.06,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,69.52,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748,75.47,2489.93,3036.78,1.0865,58.82,1.0,58.82,69.52,70.98,0.0,50.71,1.0,50.71,69.52,70.98,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.26,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338,81.12,2672.41,3036.78,1.0848,63.39,1.0,63.39,69.26,69.26,0.0,51.94,1.0,51.94,69.26,69.26,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.17,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338,82.29,2710.95,3036.78,1.0848,63.89,1.0,63.89,71.17,71.17,0.0,52.4,1.0,52.4,71.17,71.17,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,69.84,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338,81.47,2683.72,3036.78,1.0848,63.89,1.0,63.89,69.84,69.84,0.0,52.4,1.0,52.4,69.84,69.84,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,80.49,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338,87.87,2894.79,3036.78,1.0848,67.24,1.0,67.24,80.49,80.49,0.0,55.45,1.0,55.45,80.49,80.49,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,70.76,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338,82.05,2702.85,3036.78,1.0848,63.53,1.0,63.53,70.76,70.76,0.0,52.06,1.0,52.06,70.76,70.76,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-generator.xml,65.07,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,138.95,4437.89,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,76.61,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113,72.81,2324.06,2944.68,1.0839,65.33,1.0,65.33,76.61,76.61,0.0,56.52,1.0,56.52,76.61,76.61,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,66.99,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.21273,119.9,3836.06,2950.08,1.0845,51.39,1.0,51.39,66.99,66.99,0.0,44.5,1.0,44.5,66.99,66.99,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-laundry-room.xml,63.91,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.21273,111.25,3558.78,2949.68,1.0845,51.39,1.0,51.39,63.91,63.91,0.0,44.5,1.0,44.5,63.91,63.91,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.49,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21303,89.53,2903.59,2990.17,1.0846,57.89,1.0,57.89,74.49,74.49,0.0,49.37,1.0,49.37,74.49,74.49,0.0,72.78,6.15,5.95,10.49,9.83,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21303 +base-bldgtype-mf-unit-shared-mechvent.xml,69.61,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21303,78.63,2550.1,2990.17,1.0846,57.89,1.0,57.89,69.61,69.61,0.0,49.37,1.0,49.37,69.61,69.61,0.0,68.4,6.15,5.95,10.49,9.83,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21303 +base-bldgtype-mf-unit-shared-pv.xml,5.96,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,25.48,813.67,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,65.58,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.21273,113.83,3635.34,2944.68,1.0845,52.23,1.0,52.23,65.58,65.58,0.0,45.28,1.0,45.28,65.58,65.58,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-water-heater.xml,64.06,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.21273,111.07,3547.12,2944.68,1.0845,51.34,1.0,51.34,64.06,64.06,0.0,44.55,1.0,44.55,64.06,64.06,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit.xml,67.48,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,77.93,2489.05,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.25,1.0,56.25,76.14,76.14,0.0,50.65,1.0,50.65,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 base-dhw-combi-tankless.xml,64.49,28.79,8.58,10.49,47.16,5.33,18.31,32.17,4.64,10.29,21.28,0.0,0.0,0.23006,146.05,8340.47,5648.96,1.011,55.08,1.0,55.08,64.49,64.49,0.0,49.53,1.0,49.53,64.49,64.49,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 base-dhw-desuperheater.xml,83.18,29.51,8.31,10.49,47.0,5.2,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185,160.23,9146.86,5648.96,1.0106,71.49,1.0,71.49,83.18,83.18,0.0,62.0,1.0,62.0,83.18,83.18,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 base-dhw-dwhr.xml,75.5,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149,149.25,8287.82,5495.15,1.0105,56.51,1.0,56.51,75.5,75.5,0.0,50.8,1.0,50.8,75.5,75.5,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 From 85e9288e1f1b647ad3da12b8ba25f28eb72945da Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 11 Jan 2024 09:48:45 -0700 Subject: [PATCH 12/35] A little cleanup. --- docs/source/workflow_inputs.rst | 40 ++++++++++++++--------------- rulesets/resources/301validator.xml | 4 +-- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index dc0466f81..816c61a9d 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -300,52 +300,52 @@ Note that ELA is different than Equivalent Leakage Area (EqLA), which involves a HPXML Attics ************ -If the dwelling unit has an unvented attic, whether it is within the infiltration volume is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="false"]]``. +If the dwelling unit has an unvented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="false"]]``. ============================ ======= ===== =========== ======== ======= =============================================== Element Type Units Constraints Required Default Notes ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean Yes In accordance with ANSI/RESNET/ICC Standard 380 + ``WithinInfiltrationVolume`` boolean Yes Included in the air infiltration measurement? ============================ ======= ===== =========== ======== ======= =============================================== -If the dwelling unit has a vented attic, attic ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate``. +If the dwelling unit has a vented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]``. - ================= ====== ===== =========== ======== ======= ========================== - Element Type Units Constraints Required Default Notes - ================= ====== ===== =========== ======== ======= ========================== - ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``Value`` double > 0 No 1/300 Value for ventilation rate - ================= ====== ===== =========== ======== ======= ========================== + ================================= ====== ===== =========== ======== ======= ========================== + Element Type Units Constraints Required Default Notes + ================================= ====== ===== =========== ======== ======= ========================== + ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``VentilationRate/Value`` double > 0 No 1/300 Value for ventilation rate + ================================= ====== ===== =========== ======== ======= ========================== .. [#] UnitofMeasure choices are "SLA" (specific leakage area) or "ACHnatural" (natural air changes per hour). HPXML Foundations ***************** -If the dwelling unit has an unconditioned basement, whether it is within the infiltration volume is entered in ``Enclosure/Foundations/Foundation/FoundationType/Basement[Conditioned='false']``. +If the dwelling unit has an unconditioned basement, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Basement[Conditioned='false']]``. ============================ ======= ===== =========== ======== ======= =============================================== Element Type Units Constraints Required Default Notes ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean Yes In accordance with ANSI/RESNET/ICC Standard 380 + ``WithinInfiltrationVolume`` boolean Yes Included in the air infiltration measurement? ============================ ======= ===== =========== ======== ======= =============================================== -If the dwelling unit has an unvented crawlspace, whether it is within the infiltration volume is entered in ``Enclosure/Foundations/Foundation/FoundationType/Crawlspace[Vented='false']``. +If the dwelling unit has an unvented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented='false']]``. ============================ ======= ===== =========== ======== ======= =============================================== Element Type Units Constraints Required Default Notes ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean Yes In accordance with ANSI/RESNET/ICC Standard 380 + ``WithinInfiltrationVolume`` boolean Yes Included in the air infiltration measurement? ============================ ======= ===== =========== ======== ======= =============================================== -If the dwelling unit has a vented crawlspace, crawlspace ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]/VentilationRate``. +If the dwelling unit has a vented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]``. - ================= ====== ===== =========== ======== ======= ========================== - Element Type Units Constraints Required Default Notes - ================= ====== ===== =========== ======== ======= ========================== - ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``Value`` double > 0 No 1/150 Value for ventilation rate - ================= ====== ===== =========== ======== ======= ========================== + ================================= ====== ===== =========== ======== ======= ========================== + Element Type Units Constraints Required Default Notes + ================================= ====== ===== =========== ======== ======= ========================== + ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``VentilationRate/Value`` double > 0 No 1/150 Value for ventilation rate + ================================= ====== ===== =========== ======== ======= ========================== .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). diff --git a/rulesets/resources/301validator.xml b/rulesets/resources/301validator.xml index 79c2fc4da..4bb09536f 100644 --- a/rulesets/resources/301validator.xml +++ b/rulesets/resources/301validator.xml @@ -279,7 +279,7 @@ Temporarily disabled until RESNET allows this. [Roof] - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or 1 element(s) for xpath: Azimuth @@ -360,7 +360,7 @@ Temporarily disabled until RESNET allows this. Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'ground' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'garage' Expected 0 or 1 element(s) for xpath: Type Expected Type to be 'solid concrete' or 'concrete block' or 'concrete block foam core' or 'concrete block vermiculite core' or 'concrete block perlite core' or 'concrete block solid core' or 'double brick' or 'wood' From d777d99687929b31acc42bf1ab0365e4fdea426f Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 11 Jan 2024 09:49:42 -0700 Subject: [PATCH 13/35] Squashed 'hpxml-measures/' changes from d42c040f55..6be89690f6 6be89690f6 Expose WithinInfiltrationVolume inputs for some attic/foundation types. git-subtree-dir: hpxml-measures git-subtree-split: 6be89690f61aa7d3f2eebbc488741f5a9e93271b --- HPXMLtoOpenStudio/measure.xml | 10 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 55 +++++++++++----- .../hpxml_schematron/EPvalidator.xml | 27 +++++++- docs/source/workflow_inputs.rst | 66 +++++++++++++------ 5 files changed, 114 insertions(+), 46 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a619e67a2..cd78d6d7b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 84752f39-818c-42fa-a75c-239e9ae36e16 - 2024-01-10T20:32:20Z + 56c9a811-7c64-4a38-8872-30c4ed5f687f + 2024-01-11T16:45:08Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -304,13 +304,13 @@ hpxml.rb rb resource - 44987E3C + 3B46EAA2 hpxml_defaults.rb rb resource - 348C4650 + 55F50B58 hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 07465552 + C02EF09F hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index efcbd19e9..fb77cf200 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -2292,7 +2292,7 @@ def to_doc(building) fail "Unhandled attic type '#{@attic_type}'." end end - XMLHelper.add_element(attic, 'WithinInfiltrationVolume', within_infiltration_volume, :boolean) unless @within_infiltration_volume.nil? + XMLHelper.add_element(attic, 'WithinInfiltrationVolume', @within_infiltration_volume, :boolean, @within_infiltration_volume_isdefaulted) unless @within_infiltration_volume.nil? if not @attached_to_roof_idrefs.nil? @attached_to_roof_idrefs.each do |roof| roof_attached = XMLHelper.add_element(attic, 'AttachedToRoof') diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 33c80b5db..c1384ecd6 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -28,9 +28,9 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_building_occupancy(hpxml_bldg, schedules_file) apply_building_construction(hpxml_bldg, cfa, nbeds, infil_measurement) apply_climate_and_risk_zones(hpxml_bldg, epw_file) - apply_infiltration(hpxml_bldg, infil_measurement) apply_attics(hpxml_bldg) apply_foundations(hpxml_bldg) + apply_infiltration(hpxml_bldg, infil_measurement) apply_roofs(hpxml_bldg) apply_rim_joists(hpxml_bldg) apply_walls(hpxml_bldg) @@ -646,26 +646,16 @@ def self.apply_climate_and_risk_zones(hpxml_bldg, epw_file) end end - def self.apply_infiltration(hpxml_bldg, infil_measurement) - if infil_measurement.infiltration_volume.nil? - infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - infil_measurement.infiltration_volume_isdefaulted = true - end - if infil_measurement.infiltration_height.nil? - infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) - infil_measurement.infiltration_height_isdefaulted = true - end - if infil_measurement.a_ext.nil? - if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && - [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) - tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() - infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) - infil_measurement.a_ext_isdefaulted = true + def self.apply_attics(hpxml_bldg) + hpxml_bldg.attics.each do |attic| + next unless attic.within_infiltration_volume.nil? + + if [HPXML::AtticTypeUnvented].include? attic.attic_type + attic.within_infiltration_volume = false + attic.within_infiltration_volume_isdefaulted = true end end - end - def self.apply_attics(hpxml_bldg) return unless hpxml_bldg.has_location(HPXML::LocationAtticVented) vented_attics = hpxml_bldg.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } @@ -684,6 +674,16 @@ def self.apply_attics(hpxml_bldg) end def self.apply_foundations(hpxml_bldg) + hpxml_bldg.foundations.each do |foundation| + next unless foundation.within_infiltration_volume.nil? + + next unless [HPXML::FoundationTypeBasementUnconditioned, + HPXML::FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type + + foundation.within_infiltration_volume = false + foundation.within_infiltration_volume_isdefaulted = true + end + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceVented) vented_crawls = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } if vented_crawls.empty? @@ -717,6 +717,25 @@ def self.apply_foundations(hpxml_bldg) end end + def self.apply_infiltration(hpxml_bldg, infil_measurement) + if infil_measurement.infiltration_volume.nil? + infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + infil_measurement.infiltration_volume_isdefaulted = true + end + if infil_measurement.infiltration_height.nil? + infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) + infil_measurement.infiltration_height_isdefaulted = true + end + if infil_measurement.a_ext.nil? + if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && + [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) + tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() + infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) + infil_measurement.a_ext_isdefaulted = true + end + end + end + def self.apply_roofs(hpxml_bldg) hpxml_bldg.roofs.each do |roof| if roof.azimuth.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index da1fbcf0c..036bc132c 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -449,7 +449,7 @@ [Roof] - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation @@ -472,7 +472,14 @@ Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate[UnitofMeasure="SLA" or UnitofMeasure="ACHnatural"]/Value - + + + [RoofType=AdjacentToUnventedAttic] + + Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="false"]]/WithinInfiltrationVolume + + + [Roof_RadiantBarrier] @@ -531,7 +538,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'ground' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 0 or 1 element(s) for xpath: Type Expected Type to be 'solid concrete' or 'concrete block' or 'concrete block foam core' or 'concrete block vermiculite core' or 'concrete block perlite core' or 'concrete block solid core' or 'double brick' or 'wood' @@ -561,6 +568,20 @@ + + [FoundationWallType=AdjacentToUnventedCrawl] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Crawlspace[Vented="false"]]/WithinInfiltrationVolume + + + + + [FoundationWallType=AdjacentToUncondBasement] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Basement[Conditioned="false"]]/WithinInfiltrationVolume + + + [FoundationWallInsulationLayer] diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 4359187c1..11895fbe2 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -887,14 +887,22 @@ The presence of a flue or chimney with combustion air from conditioned space can HPXML Attics ************ -If the dwelling unit has a vented attic, attic ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate``. +If the dwelling unit has an unvented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="false"]]``. - ================= ====== ===== =========== ======== ========== ========================== - Element Type Units Constraints Required Default Notes - ================= ====== ===== =========== ======== ========== ========================== - ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``Value`` double > 0 No 1/300 [#]_ Value for ventilation rate - ================= ====== ===== =========== ======== ========== ========================== + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? + ============================ ======= ===== =========== ======== ======= =============================================== + +If the dwelling unit has a vented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]``. + + ================================= ====== ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================================= ====== ===== =========== ======== ========== ========================== + ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``VentilationRate/Value`` double > 0 No 1/300 [#]_ Value for ventilation rate + ================================= ====== ===== =========== ======== ========== ========================== .. [#] UnitofMeasure choices are "SLA" (specific leakage area) or "ACHnatural" (natural air changes per hour). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. @@ -902,23 +910,43 @@ If the dwelling unit has a vented attic, attic ventilation information can be op HPXML Foundations ***************** -If the dwelling unit has a vented crawlspace, crawlspace ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]/VentilationRate``. +If the dwelling unit has an unconditioned basement, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Basement[Conditioned='false']]``. - ================= ====== ===== =========== ======== ========== ========================== - Element Type Units Constraints Required Default Notes - ================= ====== ===== =========== ======== ========== ========================== - ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``Value`` double > 0 No 1/150 [#]_ Value for ventilation rate - ================= ====== ===== =========== ======== ========== ========================== + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? + ============================ ======= ===== =========== ======== ======= =============================================== + +If the dwelling unit has an unvented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented='false']]``. + + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? + ============================ ======= ===== =========== ======== ======= =============================================== + +If the dwelling unit has a vented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]``. + + ================================= ======= ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================================= ======= ===== =========== ======== ========== ========================== + ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``VentilationRate/Value`` double > 0 No 1/150 [#]_ Value for ventilation rate + ================================= ======= ===== =========== ======== ========== ========================== .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. -If the dwelling has a manufactured home belly-and-wing foundation, whether a -skirt is present can be optionally entered in -``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing/SkirtPresent``. -The default, if that value is missing, is to assume there is a skirt present and -the floors above that foundation do not have exposure to the wind. +If the dwelling has a manufactured home belly-and-wing foundation, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing``. + + ================================= ======= ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================================= ======= ===== =========== ======== ========== ========================== + ``SkirtPresent`` boolean No true Presence of foundation skirt [#]_ + ================================= ======= ===== =========== ======== ========== ========================== + + .. [#] When a skirt is present, the floors above that foundation are modeled without exposure to wind. HPXML Roofs *********** From 6031f7aafe43885e2e0b01ca94ecf406969922ce Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 12 Jan 2024 08:01:46 +0000 Subject: [PATCH 14/35] Latest results. --- workflow/tests/base_results/real_homes.csv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 0361a304a..b18b35256 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,6 +1,6 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) house001.xml,62.9,9.08,2.02,6.49,14.51,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.21322,71.36,5785.85,7603.83,1.0663,55.82,1.0,55.82,62.9,62.9,0.0,46.52,1.0,46.52,62.9,62.9,0.0,60.2,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21322 -house002.xml,74.57,51.51,21.17,9.54,41.6,12.18,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462,75.61,13121.97,17649.0,0.9834,50.67,1.0,50.67,74.57,74.57,0.0,48.26,1.0,48.26,74.57,74.57,0.0,69.17,59.81,21.26,9.54,48.17,12.71,10.56,31.9,6.27,9.45,24.05,0.0,0.0,0.18462 +house002.xml,70.09,51.25,21.35,9.54,41.41,12.27,10.56,26.95,6.31,9.45,24.05,1.85,0.0,0.18462,71.0,12455.22,17839.91,0.9834,50.67,1.0,50.67,70.09,70.09,0.0,48.26,1.0,48.26,70.09,70.09,0.0,64.71,59.54,21.44,9.54,47.97,12.8,10.56,26.68,6.3,9.45,24.05,1.79,0.0,0.18462 house003.xml,62.61,27.3,21.76,8.83,30.61,12.45,16.04,18.880000000000003,6.86,7.24,22.14,1.18,0.0,0.24283,73.74,9356.39,12784.26,0.9925,48.91,1.0,48.91,62.61,62.61,0.0,47.01,1.0,47.01,62.61,62.61,0.0,59.47,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.700000000000003,6.84,7.24,22.14,1.13,0.0,0.24283 house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,56.17,1.0,56.17,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 house005.xml,60.52,4.67,4.06,5.79,4.1,2.31,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,83.61,2687.5,2982.32,1.0778,50.04,1.0,50.04,60.52,60.52,0.0,44.92,1.0,44.92,60.52,60.52,0.0,58.73,5.57,3.98,5.79,4.74,2.32,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 @@ -9,12 +9,12 @@ house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0. house008.xml,62.72,96.27,10.33,13.22,153.4,6.79,22.26,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.42,24257.2,33975.74,0.9724,51.34,1.0,51.34,62.72,62.72,0.0,46.37,1.0,46.37,62.72,62.72,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 house009.xml,62.21,19.29,42.09,8.99,30.91,25.18,16.38,16.78,13.53,12.35,23.29,0.64,0.0,0.28642,84.89,9976.47,11470.79,1.0245,48.51,1.0,48.51,62.21,62.21,0.0,45.45,1.0,45.45,62.21,62.21,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.52,1.0,48.52,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,61.76,8.4,6.51,7.89,13.44,4.51,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26131,79.02,3440.31,4080.5,1.0669,56.55,1.0,56.55,61.76,61.76,0.0,53.04,1.0,53.04,61.76,61.76,0.0,59.71,9.79,6.4,7.89,15.66,4.52,8.9,6.68,1.71,8.2,12.64,0.0,0.0,0.26131 -house012.xml,52.09,34.67,2.59,11.63,29.51,1.47,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688,53.17,5525.34,9931.01,1.0463,51.68,1.0,51.68,52.09,52.09,1.0,44.07,1.0,44.07,52.09,52.09,0.0,48.05,40.72,2.44,11.63,34.43,1.45,12.68,10.39,0.49,10.73,14.75,0.0,0.0,0.31688 +house011.xml,66.94,8.34,6.55,7.89,13.34,4.53,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131,91.92,4030.96,4110.11,1.0669,56.55,1.0,56.55,66.94,66.94,0.0,53.04,1.0,53.04,66.94,66.94,0.0,64.88,9.75,6.43,7.89,15.6,4.54,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131 +house012.xml,50.09,34.31,2.68,11.63,29.25,1.52,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688,51.29,5415.74,10091.88,1.0463,51.68,1.0,51.68,50.09,50.09,1.0,44.07,1.0,44.07,50.09,50.09,0.0,46.25,40.35,2.52,11.63,34.16,1.49,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688 house013.xml,58.87,12.03,1.85,10.35,8.85,0.88,11.96,6.61,0.18,3.38,13.97,0.66,0.0,0.16792,57.5,1700.72,2805.93,1.0542,52.81,1.0,52.81,58.87,58.87,0.0,47.6,1.0,47.6,58.87,58.87,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,48.05,1.0,48.05,54.98,54.98,0.0,45.72,1.0,45.72,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3424.1,1.1353,49.61,1.0,49.61,49.76,49.76,1.0,47.58,1.0,47.58,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 -house016.xml,51.52,0.58,72.46,5.61,0.52,39.17,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776,72.58,5977.7,7902.55,1.0422,50.9,1.0,50.9,51.52,51.52,0.0,48.75,1.0,48.75,51.52,51.52,0.0,51.34,0.64,72.69,5.61,0.56,39.35,11.57,0.24,18.46,10.53,18.36,0.0,0.0,0.2776 +house016.xml,51.4,0.56,72.72,5.61,0.51,39.29,11.57,0.23,18.51,10.53,18.36,0.37,0.0,0.2776,72.23,6031.27,8011.42,1.0422,50.9,1.0,50.9,51.4,51.4,1.0,48.75,1.0,48.75,51.4,51.4,0.0,51.19,0.62,72.94,5.61,0.55,39.46,11.57,0.23,18.48,10.53,18.36,0.37,0.0,0.2776 house017.xml,69.06,20.26,5.69,10.95,32.32,3.82,18.88,37.14,1.36,9.12,15.89,0.5,0.0,0.20226,177.48,8210.66,4416.32,1.0475,52.34,1.0,52.34,69.06,69.06,0.0,47.44,1.0,47.44,69.06,69.06,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 house018.xml,30.9,149.43,32.13,17.34,238.12,21.1,27.24,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635,98.29,24234.19,25723.6,0.9585,50.88,1.0,50.88,54.13,54.13,0.0,46.91,1.0,46.91,54.13,54.13,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 house019.xml,63.49,97.19,10.14,13.22,155.04,6.84,22.25,98.39,2.01,15.29,29.84,4.58,0.0,0.1912,75.95,25465.55,34331.59,0.9766,51.79,1.0,51.79,63.49,63.49,0.0,46.55,1.0,46.55,63.49,63.49,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 From 7ef616b6336ffb098fb7cb5c736648ef8ded2ff3 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 12 Jan 2024 09:53:44 -0700 Subject: [PATCH 15/35] Add supplemental balanced mech vent to the Rated Home if needed. --- rulesets/resources/301ruleset.rb | 31 ++++++++++++++++---- rulesets/tests/test_es_zerh_ventilation.rb | 4 +-- rulesets/tests/test_ventilation.rb | 33 ++++++++++++++++++++-- 3 files changed, 58 insertions(+), 10 deletions(-) diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index 555181f45..68de799d7 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -1473,7 +1473,7 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ else # Calculate weighted-average fan W/cfm - q_fans = calc_rated_home_q_fans_by_system(orig_bldg, mech_vent_fans) + q_fans, q_fan_bal_remain = calc_rated_home_q_fans_by_system(orig_bldg, mech_vent_fans) sum_fan_w = 0.0 sum_fan_cfm = 0.0 q_fans.each do |fan_id, flow_rate| @@ -1487,6 +1487,8 @@ def self.set_systems_mechanical_ventilation_reference(orig_bldg, new_bldg, iecc_ end sum_fan_cfm += flow_rate end + sum_fan_w += 0.70 * q_fan_bal_remain + sum_fan_cfm += q_fan_bal_remain # Calculate fan power is_balanced, frac_imbal = get_mech_vent_imbal_properties(orig_bldg.ventilation_fans) @@ -1515,7 +1517,7 @@ def self.set_systems_mechanical_ventilation_rated(orig_bldg, new_bldg) (f.flow_rate_not_tested || f.flow_rate > 0) } - q_fans = calc_rated_home_q_fans_by_system(orig_bldg, mech_vent_fans) + q_fans, q_fan_bal_remain = calc_rated_home_q_fans_by_system(orig_bldg, mech_vent_fans) # Table 4.2.2(1) - Whole-House Mechanical ventilation mech_vent_fans.each do |orig_vent_fan| @@ -1618,9 +1620,16 @@ def self.set_systems_mechanical_ventilation_rated(orig_bldg, new_bldg) end end - # FIXME: Where the resulting dwelling unit total air exchange rate is less than - # Qtot = 0.03 x CFA + 7.5 x (Nbr+1) cfm, a supplemental balanced ventilation system - # shall be added to the Rated Home to meet Qtot. + if q_fan_bal_remain > 0 + fan_power_w = 0.70 * q_fan_bal_remain + new_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeBalanced, + tested_flow_rate: q_fan_bal_remain.round(2), + hours_in_operation: 24, + fan_power: fan_power_w.round(3), + used_for_whole_building_ventilation: true, + is_shared_system: false) + end end def self.set_systems_mechanical_ventilation_iad(new_bldg) @@ -2433,7 +2442,17 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) q_fans[orig_vent_fan.id] = q_fans[parent_cfis_fan.id] end - return q_fans + q_fan_bal_remain = 0 + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022C') + # Check if supplemental balanced ventilation is needed + # This should only happen when the home has no mechanical ventilation, because + # otherwise the existing ventilation fans would have been increased instead. + if min_q_fan > q_fans.values.sum + q_fan_bal_remain = min_q_fan - q_fans.values.sum + end + end + + return q_fans, q_fan_bal_remain end def self.calc_rated_home_infiltration_ach50(orig_bldg) diff --git a/rulesets/tests/test_es_zerh_ventilation.rb b/rulesets/tests/test_es_zerh_ventilation.rb index b5ca89914..9cd931c67 100644 --- a/rulesets/tests/test_es_zerh_ventilation.rb +++ b/rulesets/tests/test_es_zerh_ventilation.rb @@ -104,7 +104,7 @@ def test_mech_vent end end - def test_mech_vent_attached_or_multifamily + def test_mech_vent_attached_housing ESConstants.AllVersions.each do |program_version| _convert_to_es_zerh('base-bldgtype-mf-unit.xml', program_version) _hpxml, hpxml_bldg = _test_ruleset(program_version) @@ -164,7 +164,7 @@ def test_mech_vent_location_miami_fl end end - def test_mech_vent_attached_or_multifamily_location_miami_fl + def test_mech_vent_attached_housing_location_miami_fl [*ESConstants.AllVersions, *ZERHConstants.AllVersions].each do |program_version| next unless ESConstants.NationalVersions.include?(program_version) diff --git a/rulesets/tests/test_ventilation.rb b/rulesets/tests/test_ventilation.rb index b2cc87bc5..71d38bbe6 100644 --- a/rulesets/tests/test_ventilation.rb +++ b/rulesets/tests/test_ventilation.rb @@ -24,6 +24,21 @@ def teardown def test_mech_vent_none hpxml_name = 'base.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 5.6, hours: 24, power: 3.9 }]) # Supplemental balanced ventilation to meet total airflow requirement + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 42.0 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -53,9 +68,24 @@ def test_mech_vent_none end end - def test_mech_vent_attached_or_multifamily + def test_mech_vent_attached_housing hpxml_name = 'base-bldgtype-mf-unit.xml' + _all_calc_types.each do |calc_type| + _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) + if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy + elsif [Constants.CalcTypeERIRatedHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 39.1, hours: 24, power: 27.3 }]) # Supplemental balanced ventilation to meet total airflow requirement + elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) + elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 8.7, hours: 24, power: 49.4 }]) + end + end + + hpxml_name = _change_eri_version(hpxml_name, '2019ABCD') + _all_calc_types.each do |calc_type| _hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type) if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type @@ -69,7 +99,6 @@ def test_mech_vent_attached_or_multifamily end end - # Test w/ 301-2014 hpxml_name = _change_eri_version(hpxml_name, '2014') _all_calc_types.each do |calc_type| From 98ee59317ecea0767d408648ab2c22ba521830b8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 12 Jan 2024 18:57:20 +0000 Subject: [PATCH 16/35] Latest results. --- .../RESNET_Test_4.6_Hot_Water.csv | 22 +- workflow/tests/base_results/real_homes.csv | 8 +- workflow/tests/base_results/sample_files.csv | 312 +++++++++--------- 3 files changed, 171 insertions(+), 171 deletions(-) diff --git a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv index eb0d83572..bb8764f89 100644 --- a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv +++ b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv @@ -1,15 +1,15 @@ Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD -L100AD-HW-01.xml,196.0,0.0,44 -L100AD-HW-02.xml,260.6,0.0,64 +L100AD-HW-01.xml,196.1,0.0,44 +L100AD-HW-02.xml,260.8,0.0,64 L100AD-HW-03.xml,174.8,0.0,44 -L100AD-HW-04.xml,252.3,0.0,62 -L100AD-HW-05.xml,551.1,439.6,55 -L100AD-HW-06.xml,228.6,5.9,55 -L100AD-HW-07.xml,207.6,0.0,59 +L100AD-HW-04.xml,252.6,0.0,62 +L100AD-HW-05.xml,551.6,439.6,55 +L100AD-HW-06.xml,228.8,5.9,55 +L100AD-HW-07.xml,207.8,0.0,59 L100AM-HW-01.xml,110.4,0.0,33 -L100AM-HW-02.xml,136.3,0.0,48 +L100AM-HW-02.xml,136.5,0.0,48 L100AM-HW-03.xml,91.4,0.0,33 -L100AM-HW-04.xml,133.2,0.0,46 -L100AM-HW-05.xml,297.4,439.6,42 -L100AM-HW-06.xml,123.4,5.9,42 -L100AM-HW-07.xml,121.1,0.0,44 +L100AM-HW-04.xml,133.3,0.0,46 +L100AM-HW-05.xml,297.7,439.6,42 +L100AM-HW-06.xml,123.5,5.9,42 +L100AM-HW-07.xml,121.2,0.0,44 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index b18b35256..f05d39187 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -39,8 +39,8 @@ house037.xml,66.92,63.84,6.69,13.22,101.87,4.86,14.55,69.19,2.89,10.99,21.25,0.4 house038.xml,64.68,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.759999999999998,11.940000000000001,12.25,27.65,0.92,0.0,0.26786,72.94,13801.57,19459.29,0.9724,47.09,1.0,47.09,64.68,64.68,0.0,45.07,1.0,45.07,64.68,64.68,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.61,11058.09,0.9975,53.95,1.0,53.95,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 house040.xml,63.53,123.7,12.21,11.07,197.17,7.93,19.46,110.31,8.88,15.32,32.38,2.11,0.0,0.18417,74.66,28943.99,40512.52,0.957,52.69,1.0,52.69,63.53,63.53,0.0,49.54,1.0,49.54,63.53,63.53,0.0,58.85,139.57,11.88,11.07,222.4,7.69,19.47,110.31,8.88,15.32,32.38,2.11,0.0,0.18417 -house041.xml,77.69,24.75,8.16,12.54,39.48,5.2,20.94,27.24,3.89,20.39,23.5,0.0,0.0,0.13022,170.64,9245.97,5294.1,1.0235,52.71,1.0,52.71,77.69,77.69,0.0,46.6,1.0,46.6,77.69,77.69,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 -house042.xml,87.15,49.11,21.04,11.39,78.44,12.99,19.74,76.46,9.92,15.57,27.23,0.0,0.0,0.21961,112.81,20258.12,18000.96,0.9976,49.74,1.0,49.74,87.15,87.15,0.0,46.7,1.0,46.7,87.15,87.15,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 +house041.xml,83.7,24.75,8.16,12.54,39.48,5.2,20.94,33.52,3.82,20.4,23.5,0.88,0.0,0.13022,188.85,10232.9,5294.1,1.0235,52.71,1.0,52.71,83.7,83.7,0.0,46.6,1.0,46.6,83.7,83.7,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 +house042.xml,89.92,49.11,21.04,11.39,78.44,12.99,19.74,80.36,10.09,15.57,27.23,0.46,0.0,0.21961,116.66,20948.32,18000.96,0.9976,49.74,1.0,49.74,89.92,89.92,0.0,46.7,1.0,46.7,89.92,89.92,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 house043.xml,-8.67,12.16,5.34,10.49,9.81,2.81,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3973.44,1.035,53.31,1.0,53.31,40.43,40.43,1.0,47.81,1.0,47.81,40.43,40.43,1.0,35.62,16.34,5.23,10.49,12.72,2.76,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 house044.xml,69.13,18.71,3.36,6.35,29.87,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.09,7589.41,9339.61,1.0541,52.29,1.0,52.29,69.13,69.13,0.0,48.53,1.0,48.53,69.13,69.13,0.0,67.04,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 house045.xml,88.94,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001,100.18,25297.81,26306.02,0.96,49.32,1.0,49.32,88.94,88.94,0.0,45.51,1.0,45.51,88.94,88.94,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 @@ -58,7 +58,7 @@ house056.xml,62.58,24.84,5.16,11.92,39.76,3.47,20.93,21.64,1.91,11.91,24.34,2.69 house057.xml,82.68,17.86,4.12,9.98,28.47,2.82,11.54,16.12,2.93,3.24,19.13,12.04,0.0,0.15957,140.44,5064.26,3555.53,1.0142,57.81,1.0,57.81,82.68,82.68,0.0,53.06,1.0,53.06,82.68,82.68,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 house058.xml,64.48,3.14,82.82,6.7,5.03,47.9,12.51,1.6,29.31,10.89,21.41,0.99,0.0,0.33359,79.35,7798.01,9707.3,1.0124,50.47,1.0,50.47,64.48,64.48,0.0,45.84,1.0,45.84,64.48,64.48,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 house059.xml,55.68,7.23,2.94,7.98,5.69,1.48,15.03,2.72,0.45,6.95,14.27,0.13,0.0,0.1901,105.15,2426.76,2150.04,1.0734,50.65,1.0,50.65,55.68,55.68,0.0,46.45,1.0,46.45,55.68,55.68,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 -house060.xml,69.74,30.94,33.66,11.51,49.52,20.259999999999998,19.93,38.8,11.84,13.8,27.47,0.0,0.0,0.23113,87.03,15130.83,17200.83,1.0107,49.65,1.0,49.65,69.74,69.74,0.0,46.07,1.0,46.07,69.74,69.74,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 +house060.xml,73.42,30.94,33.66,11.51,49.52,20.259999999999998,19.93,43.02,12.280000000000001,13.8,27.47,0.85,0.0,0.23113,91.98,15991.1,17200.83,1.0107,49.65,1.0,49.65,73.42,73.42,0.0,46.07,1.0,46.07,73.42,73.42,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 house061.xml,66.56,4.56,3.06,5.79,7.28,1.78,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.20355,93.48,2933.83,2946.5,1.0651,59.92,1.0,59.92,66.56,66.56,0.0,50.94,1.0,50.94,66.56,66.56,0.0,64.37,5.59,2.99,5.79,8.91,1.78,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20355 house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.33,1.0,49.33,74.3,74.3,0.0,45.87,1.0,45.87,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 house063.xml,77.83,16.03,40.12,6.02,25.67,23.63,12.48,21.79,15.83,9.48,20.91,4.23,0.0,0.25386,104.51,10777.22,10255.08,1.0056,48.88,1.0,48.88,77.83,77.83,0.0,46.1,1.0,46.1,77.83,77.83,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 @@ -73,7 +73,7 @@ house071.xml,75.17,19.67,8.69,9.86,15.690000000000001,4.96,11.46,17.66,2.16,8.07 house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.49,21.11,0.6,0.0,0.22812,155.31,16055.81,10515.45,0.9831,55.95,1.0,55.95,60.86,60.86,0.0,49.0,1.0,49.0,60.86,60.86,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,50.07,1.0,50.07,54.01,54.01,0.0,47.26,1.0,47.26,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 house074.xml,72.27,14.0,33.43,7.53,10.24,19.53,8.68,6.23,13.35,6.54,21.4,0.83,0.0,0.24424,73.99,7229.3,9278.57,1.053,43.73,1.0,43.73,72.27,72.27,0.0,42.07,1.0,42.07,72.27,72.27,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 -house075.xml,64.51,31.57,15.71,11.39,50.45,9.98,19.41,31.46,5.23,18.51,17.85,0.0,0.0,0.21678,85.62,11409.83,12849.2,1.0372,46.34,1.0,46.34,64.51,64.51,0.0,43.59,1.0,43.59,64.51,64.51,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 +house075.xml,70.89,31.57,15.71,11.39,50.45,9.98,19.41,38.39,5.5,18.53,17.85,0.98,0.0,0.21678,94.97,12656.94,12849.2,1.0372,46.34,1.0,46.34,70.89,70.89,0.0,43.59,1.0,43.59,70.89,70.89,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 house076.xml,65.69,6.61,4.85,5.79,10.54,3.46,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.17942,109.68,3884.22,3349.01,1.0574,52.56,1.0,52.56,65.69,65.69,0.0,46.87,1.0,46.87,65.69,65.69,0.0,64.08,7.46,4.77,5.79,11.9,3.46,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.17942 house077.xml,77.43,8.59,5.14,8.66,13.72,3.67,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.20678,82.25,7461.65,8478.23,1.0701,56.09,1.0,56.09,77.43,77.43,0.0,46.33,1.0,46.33,77.43,77.43,0.0,74.51,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20678 house078.xml,57.17,29.41,57.23,8.99,47.12,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.87,11821.67,15183.26,0.9872,53.43,1.0,53.43,57.17,57.17,0.0,50.27,1.0,50.27,57.17,57.17,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index 83886a0d1..25a739584 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -1,161 +1,161 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -base-appliances-dehumidifier-ief-portable.xml,66.92,9.33,26.8,7.53,14.89,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332,70.31,5715.81,7575.66,1.0731,48.17,1.0,48.17,66.92,66.92,0.0,46.6,1.0,46.6,66.92,66.92,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 -base-appliances-dehumidifier-ief-whole-home.xml,66.91,9.33,26.79,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332,70.3,5715.51,7576.38,1.0731,48.25,1.0,48.25,66.91,66.91,0.0,46.81,1.0,46.81,66.91,66.91,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 -base-appliances-dehumidifier-multiple.xml,66.91,9.37,26.82,7.53,14.91,15.88,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332,70.32,5715.43,7573.95,1.0731,48.02,1.0,48.02,66.91,66.91,0.0,46.25,1.0,46.25,66.91,66.91,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-dehumidifier.xml,66.9,9.33,26.8,7.53,14.89,15.88,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332,70.29,5714.36,7575.66,1.0731,48.17,1.0,48.17,66.9,66.9,0.0,46.6,1.0,46.6,66.9,66.9,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-gas.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,160.0,8882.55,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-modified.xml,79.23,29.51,8.31,10.49,47.03,5.17,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149,153.62,8530.54,5495.15,1.0105,56.77,1.0,56.77,79.23,79.23,0.0,51.03,1.0,51.03,79.23,79.23,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 -base-appliances-none.xml,80.28,29.51,8.31,10.49,47.03,5.17,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149,154.47,8578.12,5495.15,1.0105,56.51,1.0,56.51,80.28,80.28,0.0,50.8,1.0,50.8,80.28,80.28,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 -base-appliances-oil.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,164.26,9119.04,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-propane.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,162.67,9030.96,5495.15,1.0103,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-wood.xml,78.93,29.06,8.52,10.49,46.3,5.27,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552,,,,,57.33,1.0,57.33,78.93,78.93,0.0,51.75,1.0,51.75,78.93,78.93,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-atticroof-cathedral.xml,71.87,32.31,8.49,10.49,51.46,5.18,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844,137.53,7901.41,5691.51,1.0094,55.97,1.0,55.97,71.87,71.87,0.0,51.23,1.0,51.23,71.87,71.87,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 +base-appliances-dehumidifier-ief-portable.xml,71.7,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.74,6.72,15.13,0.78,0.1,0.27332,76.96,6255.99,7575.66,1.0731,48.17,1.0,48.17,71.7,71.7,0.0,46.6,1.0,46.6,71.7,71.7,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 +base-appliances-dehumidifier-ief-whole-home.xml,71.69,9.33,26.79,7.53,14.89,15.88,8.51,6.03,13.74,6.72,15.13,0.78,0.1,0.27332,76.95,6256.09,7576.38,1.0731,48.25,1.0,48.25,71.69,71.69,0.0,46.81,1.0,46.81,71.69,71.69,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 +base-appliances-dehumidifier-multiple.xml,71.69,9.37,26.82,7.53,14.91,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.96,6255.1,7573.95,1.0731,48.02,1.0,48.02,71.69,71.69,0.0,46.25,1.0,46.25,71.69,71.69,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-dehumidifier.xml,71.66,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.93,6254.05,7575.66,1.0731,48.17,1.0,48.17,71.66,71.66,0.0,46.6,1.0,46.6,71.66,71.66,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-gas.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,162.59,9026.23,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-modified.xml,80.07,29.51,8.31,10.49,47.03,5.17,11.53,39.41,4.92,9.55,21.6,0.12,0.0,0.22149,156.21,8674.48,5495.15,1.0105,56.77,1.0,56.77,80.07,80.07,0.0,51.03,1.0,51.03,80.07,80.07,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 +base-appliances-none.xml,81.13,29.51,8.31,10.49,47.03,5.17,11.53,39.29,4.95,9.46,22.52,0.12,0.0,0.22149,157.07,8722.23,5495.15,1.0105,56.51,1.0,56.51,81.13,81.13,0.0,50.8,1.0,50.8,81.13,81.13,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 +base-appliances-oil.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,166.85,9262.72,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-propane.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,165.26,9174.64,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-wood.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,,,,,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-atticroof-cathedral.xml,72.6,32.31,8.49,10.49,51.46,5.18,11.53,35.63,4.46,9.02,21.28,0.12,0.0,0.19844,139.72,8027.33,5691.51,1.0094,55.97,1.0,55.97,72.6,72.6,0.0,51.23,1.0,51.23,72.6,72.6,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.38,1.0,57.38,74.48,74.48,0.0,51.31,1.0,51.31,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 -base-atticroof-flat.xml,71.37,29.29,8.56,10.49,46.65,5.24,11.52,32.1,3.91,9.02,21.28,0.0,0.0,0.19801,134.61,7461.88,5491.72,1.0094,56.48,1.0,56.48,71.37,71.37,0.0,50.79,1.0,50.79,71.37,71.37,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 -base-atticroof-radiant-barrier.xml,72.95,9.39,26.65,7.53,15.05,15.84,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811,78.77,6304.3,7545.78,1.0606,46.94,1.0,46.94,72.95,72.95,0.0,44.1,1.0,44.1,72.95,72.95,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 -base-atticroof-unvented-insulated-roof.xml,74.09,29.51,8.31,10.49,47.03,5.17,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867,142.76,7914.63,5495.15,1.0089,56.51,1.0,56.51,74.09,74.09,0.0,50.8,1.0,50.8,74.09,74.09,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 -base-atticroof-vented.xml,76.42,30.04,8.11,10.49,47.87,5.07,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173,150.14,8416.16,5547.13,1.0106,57.26,1.0,57.26,76.42,76.42,0.0,51.7,1.0,51.7,76.42,76.42,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,72.9,7.78,5.19,10.49,12.44,3.55,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303,108.7,3626.8,3076.07,1.0846,67.66,1.0,67.66,72.9,72.9,0.0,58.7,1.0,58.7,72.9,72.9,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-location-portland-or.xml,71.36,3.38,3.51,9.98,5.41,2.44,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156,78.11,2227.55,2661.18,1.0717,62.19,1.0,62.19,71.36,71.36,0.0,51.3,1.0,51.3,71.36,71.36,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,70.02,5.34,5.98,10.49,8.78,3.91,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213,77.85,2572.23,3036.78,1.0881,59.65,1.0,59.65,70.02,70.02,0.0,51.1,1.0,51.1,70.02,70.02,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,70.3,5.34,5.98,10.49,8.78,3.91,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213,78.65,2598.87,3036.78,1.0881,59.79,1.0,59.79,70.3,70.3,0.0,51.19,1.0,51.19,70.3,70.3,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,70.06,5.34,5.98,10.49,8.78,3.91,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213,77.77,2569.58,3036.78,1.0881,59.79,1.0,59.79,70.06,70.06,0.0,51.19,1.0,51.19,70.06,70.06,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,69.52,5.34,5.97,10.49,8.45,3.91,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748,75.47,2489.93,3036.78,1.0865,58.82,1.0,58.82,69.52,70.98,0.0,50.71,1.0,50.71,69.52,70.98,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,69.26,5.34,5.98,10.49,8.51,3.91,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338,81.12,2672.41,3036.78,1.0848,63.39,1.0,63.39,69.26,69.26,0.0,51.94,1.0,51.94,69.26,69.26,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,71.17,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338,82.29,2710.95,3036.78,1.0848,63.89,1.0,63.89,71.17,71.17,0.0,52.4,1.0,52.4,71.17,71.17,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,69.84,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338,81.47,2683.72,3036.78,1.0848,63.89,1.0,63.89,69.84,69.84,0.0,52.4,1.0,52.4,69.84,69.84,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,80.49,5.34,5.98,10.49,8.51,3.91,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338,87.87,2894.79,3036.78,1.0848,67.24,1.0,67.24,80.49,80.49,0.0,55.45,1.0,55.45,80.49,80.49,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,70.76,5.34,5.98,10.49,8.51,3.91,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338,82.05,2702.85,3036.78,1.0848,63.53,1.0,63.53,70.76,70.76,0.0,52.06,1.0,52.06,70.76,70.76,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-generator.xml,65.07,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,138.95,4437.89,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,76.61,5.34,5.98,10.49,4.82,3.03,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113,72.81,2324.06,2944.68,1.0839,65.33,1.0,65.33,76.61,76.61,0.0,56.52,1.0,56.52,76.61,76.61,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,66.99,5.01,6.17,10.5,8.02,3.97,18.18,2.7,3.08,14.5,13.08,0.0,0.0,0.21273,119.9,3836.06,2950.08,1.0845,51.39,1.0,51.39,66.99,66.99,0.0,44.5,1.0,44.5,66.99,66.99,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-laundry-room.xml,63.91,5.01,6.17,10.49,8.02,3.97,18.18,3.06,2.93,12.33,13.08,0.0,0.0,0.21273,111.25,3558.78,2949.68,1.0845,51.39,1.0,51.39,63.91,63.91,0.0,44.5,1.0,44.5,63.91,63.91,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 +base-atticroof-flat.xml,72.12,29.29,8.56,10.49,46.65,5.24,11.52,32.89,3.9,9.02,21.28,0.12,0.0,0.19801,136.87,7587.11,5491.72,1.0094,56.48,1.0,56.48,72.12,72.12,0.0,50.79,1.0,50.79,72.12,72.12,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 +base-atticroof-radiant-barrier.xml,78.23,9.39,26.65,7.53,15.05,15.84,8.51,9.26,14.82,6.72,15.13,0.78,0.0,0.22811,86.16,6895.88,7545.78,1.0606,46.94,1.0,46.94,78.23,78.23,0.0,44.1,1.0,44.1,78.23,78.23,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 +base-atticroof-unvented-insulated-roof.xml,74.87,29.51,8.31,10.49,47.03,5.17,11.53,35.9,4.15,9.02,21.28,0.12,0.0,0.1867,145.08,8043.17,5495.15,1.0089,56.51,1.0,56.51,74.87,74.87,0.0,50.8,1.0,50.8,74.87,74.87,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 +base-atticroof-vented.xml,77.29,30.04,8.11,10.49,47.87,5.07,11.83,39.35,4.34,9.19,21.28,0.12,0.0,0.22173,152.75,8562.46,5547.13,1.0106,57.26,1.0,57.26,77.29,77.29,0.0,51.7,1.0,51.7,77.29,77.29,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.92,7.78,5.19,10.49,12.44,3.55,11.51,17.7,2.44,9.57,13.08,0.82,0.0,0.21303,140.48,4687.07,3076.07,1.0846,67.66,1.0,67.66,83.92,83.92,0.0,58.7,1.0,58.7,83.92,83.92,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-location-portland-or.xml,77.83,3.38,3.51,9.98,5.41,2.44,10.99,5.28,1.86,9.12,13.08,0.82,0.0,0.18156,97.93,2793.02,2661.18,1.0717,62.19,1.0,62.19,77.83,77.83,0.0,51.3,1.0,51.3,77.83,77.83,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,77.2,5.34,5.98,10.49,8.78,3.91,11.5,7.68,3.54,9.56,13.08,0.82,0.0,0.2213,99.73,3295.13,3036.78,1.0881,59.65,1.0,59.65,77.2,77.2,0.0,51.1,1.0,51.1,77.2,77.2,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.78,5.34,5.98,10.49,8.78,3.91,11.5,8.12,3.54,9.56,13.08,0.82,0.0,0.2213,101.36,3348.99,3036.78,1.0881,59.79,1.0,59.79,77.78,77.78,0.0,51.19,1.0,51.19,77.78,77.78,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.29,5.34,5.98,10.49,8.78,3.91,11.5,7.75,3.54,9.56,13.08,0.82,0.0,0.2213,99.58,3290.2,3036.78,1.0881,59.79,1.0,59.79,77.29,77.29,0.0,51.19,1.0,51.19,77.29,77.29,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.82,5.34,5.97,10.49,8.45,3.91,11.5,6.43,3.54,9.56,13.08,0.82,0.0,0.21748,93.65,3089.91,3036.78,1.0865,58.82,1.0,58.82,75.82,76.27,0.0,50.71,1.0,50.71,75.82,76.27,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.3,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.71,9.56,13.08,0.82,0.0,0.21338,111.35,3668.22,3036.78,1.0848,63.39,1.0,63.39,80.3,80.3,0.0,51.94,1.0,51.94,80.3,80.3,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.02,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.18,9.56,13.08,0.82,0.0,0.21338,112.4,3702.63,3036.78,1.0848,63.89,1.0,63.89,82.02,82.02,0.0,52.4,1.0,52.4,82.02,82.02,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,80.83,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.85,9.56,13.08,0.82,0.0,0.21338,111.67,3678.64,3036.78,1.0848,63.89,1.0,63.89,80.83,80.83,0.0,52.4,1.0,52.4,80.83,80.83,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,5.34,5.98,10.49,8.51,3.91,11.5,10.66,5.51,9.56,13.08,0.82,0.0,0.21338,117.51,3871.08,3036.78,1.0848,67.24,1.0,67.24,90.59,90.59,0.0,55.45,1.0,55.45,90.59,90.59,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.64,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.08,9.56,13.08,0.82,0.0,0.21338,112.17,3695.21,3036.78,1.0848,63.53,1.0,63.53,81.64,81.64,0.0,52.06,1.0,52.06,81.64,81.64,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-generator.xml,72.4,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,160.88,5138.24,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.41,5.34,5.98,10.49,4.82,3.03,11.5,4.39,3.24,9.56,13.08,0.82,0.0,0.2113,79.76,2545.81,2944.68,1.0839,65.33,1.0,65.33,81.41,81.41,0.0,56.52,1.0,56.52,81.41,81.41,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.29,5.01,6.17,10.5,8.02,3.97,18.18,6.99,2.88,14.58,13.08,0.82,0.0,0.21273,141.59,4529.85,2950.08,1.0845,51.39,1.0,51.39,74.29,74.29,0.0,44.5,1.0,44.5,74.29,74.29,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-laundry-room.xml,71.53,5.01,6.17,10.49,8.02,3.97,18.18,7.55,2.76,12.35,13.08,0.82,0.0,0.21273,133.67,4275.95,2949.68,1.0845,51.39,1.0,51.39,71.53,71.53,0.0,44.5,1.0,44.5,71.53,71.53,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.49,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21303,89.53,2903.59,2990.17,1.0846,57.89,1.0,57.89,74.49,74.49,0.0,49.37,1.0,49.37,74.49,74.49,0.0,72.78,6.15,5.95,10.49,9.83,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21303 base-bldgtype-mf-unit-shared-mechvent.xml,69.61,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21303,78.63,2550.1,2990.17,1.0846,57.89,1.0,57.89,69.61,69.61,0.0,49.37,1.0,49.37,69.61,69.61,0.0,68.4,6.15,5.95,10.49,9.83,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21303 -base-bldgtype-mf-unit-shared-pv.xml,5.96,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,25.48,813.67,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,65.58,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,13.43,13.08,0.0,0.0,0.21273,113.83,3635.34,2944.68,1.0845,52.23,1.0,52.23,65.58,65.58,0.0,45.28,1.0,45.28,65.58,65.58,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-water-heater.xml,64.06,4.83,6.38,10.49,7.73,4.07,18.17,2.95,2.99,12.33,13.08,0.0,0.0,0.21273,111.07,3547.12,2944.68,1.0845,51.34,1.0,51.34,64.06,64.06,0.0,44.55,1.0,44.55,64.06,64.06,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit.xml,67.48,5.34,5.98,10.49,8.55,3.89,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303,77.93,2489.05,2944.68,1.0846,57.89,1.0,57.89,67.48,67.48,0.0,49.37,1.0,49.37,67.48,67.48,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-sfa-unit.xml,76.14,17.77,5.74,10.49,28.33,3.85,11.52,23.75,3.23,9.29,17.18,0.0,0.0,0.22149,135.6,5890.32,4182.74,1.0385,56.25,1.0,56.25,76.14,76.14,0.0,50.65,1.0,50.65,76.14,76.14,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 -base-dhw-combi-tankless.xml,64.49,28.79,8.58,10.49,47.16,5.33,18.31,32.17,4.64,10.29,21.28,0.0,0.0,0.23006,146.05,8340.47,5648.96,1.011,55.08,1.0,55.08,64.49,64.49,0.0,49.53,1.0,49.53,64.49,64.49,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 -base-dhw-desuperheater.xml,83.18,29.51,8.31,10.49,47.0,5.2,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185,160.23,9146.86,5648.96,1.0106,71.49,1.0,71.49,83.18,83.18,0.0,62.0,1.0,62.0,83.18,83.18,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 -base-dhw-dwhr.xml,75.5,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149,149.25,8287.82,5495.15,1.0105,56.51,1.0,56.51,75.5,75.5,0.0,50.8,1.0,50.8,75.5,75.5,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 -base-dhw-indirect-standbyloss.xml,68.34,28.71,8.61,10.49,47.04,5.35,18.65,30.49,4.92,14.07,21.28,0.0,0.0,0.22512,151.38,8668.97,5665.98,1.0107,55.08,1.0,55.08,68.34,68.34,0.0,49.53,1.0,49.53,68.34,68.34,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 -base-dhw-jacket-gas.xml,78.34,28.71,8.61,10.49,45.75,5.31,18.65,37.69,5.04,14.23,21.28,0.0,0.0,0.21632,174.62,9725.04,5512.62,1.0103,54.17,1.0,54.17,78.34,78.34,0.0,48.26,1.0,48.26,78.34,78.34,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 -base-dhw-jacket-hpwh.xml,74.23,29.04,8.49,10.49,46.27,5.25,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148,154.72,8672.64,5549.67,1.0101,56.81,1.0,56.81,74.23,74.23,0.0,51.07,1.0,51.07,74.23,74.23,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 -base-dhw-jacket-indirect.xml,67.25,28.71,8.61,10.49,47.04,5.35,18.65,30.97,4.84,13.1,21.28,0.0,0.0,0.22512,150.02,8591.33,5665.98,1.0107,55.08,1.0,55.08,67.25,67.25,0.0,49.53,1.0,49.53,67.25,67.25,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 -base-dhw-low-flow-fixtures.xml,77.94,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149,152.21,8452.36,5495.15,1.0105,56.51,1.0,56.51,77.94,77.94,0.0,50.8,1.0,50.8,77.94,77.94,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 -base-dhw-multiple.xml,67.49,29.51,8.31,10.5,48.31,5.2,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306,130.34,7444.44,5649.43,1.011,61.5,1.0,61.5,67.49,67.49,0.0,55.83,1.0,55.83,67.49,67.49,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 -base-dhw-none.xml,82.56,28.79,8.58,10.49,45.88,5.3,18.31,37.17,5.11,18.31,22.38,0.0,0.0,0.22122,186.22,10340.75,5495.15,1.0105,61.46,1.0,61.46,82.56,82.56,0.0,56.36,1.0,56.36,82.56,82.56,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 -base-dhw-recirc-demand.xml,78.15,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149,152.45,8465.52,5495.15,1.0105,56.51,1.0,56.51,78.15,78.15,0.0,50.8,1.0,50.8,78.15,78.15,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 -base-dhw-solar-fraction.xml,71.36,29.51,8.31,10.49,47.03,5.17,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149,144.76,8038.65,5495.15,1.0105,56.51,1.0,56.51,71.36,71.36,0.0,50.8,1.0,50.8,71.36,71.36,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 -base-dhw-solar-indirect-flat-plate.xml,69.54,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149,141.21,7841.31,5495.15,1.0105,56.51,1.0,56.51,69.54,69.54,0.0,50.8,1.0,50.8,69.54,69.54,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 -base-dhw-tank-elec-uef.xml,78.22,29.59,8.28,10.49,47.15,5.15,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302,152.71,8468.01,5486.95,1.0106,56.73,1.0,56.73,78.22,78.22,0.0,50.97,1.0,50.97,78.22,78.22,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 -base-dhw-tank-gas-uef.xml,78.17,28.95,8.52,10.49,46.13,5.27,17.66,37.56,5.05,14.75,21.28,0.0,0.0,0.23059,176.36,9783.13,5486.95,1.011,54.17,1.0,54.17,78.17,78.17,0.0,48.26,1.0,48.26,78.17,78.17,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 -base-dhw-tank-heat-pump-uef.xml,73.35,29.36,8.37,10.49,46.79,5.2,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183,156.55,8719.84,5512.62,1.0104,56.53,1.0,56.53,73.35,73.35,0.0,50.84,1.0,50.84,73.35,73.35,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 -base-dhw-tank-oil.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,189.83,10572.36,5512.62,1.0103,54.17,1.0,54.17,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tank-wood.xml,78.96,28.71,8.61,10.49,45.75,5.31,18.65,37.26,5.1,15.33,21.28,0.0,0.0,0.21632,,,,,54.17,1.0,54.17,78.96,78.96,0.0,48.26,1.0,48.26,78.96,78.96,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tankless-electric-uef.xml,78.59,29.51,8.31,10.49,47.03,5.17,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149,153.8,8540.76,5495.15,1.0105,56.64,1.0,56.64,78.59,78.59,0.0,50.91,1.0,50.91,78.59,78.59,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 -base-dhw-tankless-gas-uef.xml,71.89,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,9.66,21.28,0.0,0.0,0.22122,166.21,9229.64,5495.15,1.0105,54.17,1.0,54.17,71.89,71.89,0.0,48.26,1.0,48.26,71.89,71.89,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 -base-dhw-tankless-propane.xml,74.22,28.79,8.58,10.49,45.88,5.3,18.31,39.0,4.86,11.2,21.28,0.0,0.0,0.22122,176.43,9797.08,5495.15,1.0105,54.17,1.0,54.17,74.22,74.22,0.0,48.26,1.0,48.26,74.22,74.22,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 +base-bldgtype-mf-unit-shared-pv.xml,12.26,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,47.4,1514.01,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,73.05,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,13.44,13.08,0.82,0.0,0.21273,135.99,4342.76,2944.68,1.0845,52.23,1.0,52.23,73.05,73.05,0.0,45.28,1.0,45.28,73.05,73.05,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-water-heater.xml,71.53,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,12.35,13.08,0.82,0.0,0.21273,133.22,4254.54,2944.68,1.0845,51.34,1.0,51.34,71.53,71.53,0.0,44.55,1.0,44.55,71.53,71.53,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit.xml,74.88,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,99.86,3189.39,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-sfa-unit.xml,83.07,17.77,5.74,10.49,28.33,3.85,11.52,29.6,3.2,9.3,17.18,0.69,0.0,0.22149,156.5,6798.04,4182.74,1.0385,56.25,1.0,56.25,83.07,83.07,0.0,50.65,1.0,50.65,83.07,83.07,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 +base-dhw-combi-tankless.xml,65.22,28.79,8.58,10.49,47.16,5.33,18.31,32.96,4.64,10.29,21.28,0.12,0.0,0.23006,148.23,8465.14,5648.96,1.011,55.08,1.0,55.08,65.22,65.22,0.0,49.53,1.0,49.53,65.22,65.22,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 +base-dhw-desuperheater.xml,84.27,29.51,8.31,10.49,47.0,5.2,11.53,45.37,5.16,6.98,21.28,0.12,0.0,0.22185,163.34,9324.55,5648.96,1.0106,71.49,1.0,71.49,84.27,84.27,0.0,62.0,1.0,62.0,84.27,84.27,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 +base-dhw-dwhr.xml,76.35,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,6.75,21.28,0.12,0.0,0.22149,151.84,8431.86,5495.15,1.0105,56.51,1.0,56.51,76.35,76.35,0.0,50.8,1.0,50.8,76.35,76.35,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 +base-dhw-indirect-standbyloss.xml,69.06,28.71,8.61,10.49,47.04,5.35,18.65,31.27,4.92,14.07,21.28,0.12,0.0,0.22512,153.55,8793.16,5665.98,1.0107,55.08,1.0,55.08,69.06,69.06,0.0,49.53,1.0,49.53,69.06,69.06,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 +base-dhw-jacket-gas.xml,79.19,28.71,8.61,10.49,45.75,5.31,18.65,38.61,5.03,14.24,21.28,0.12,0.0,0.21632,177.2,9869.09,5512.62,1.0103,54.17,1.0,54.17,79.19,79.19,0.0,48.26,1.0,48.26,79.19,79.19,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 +base-dhw-jacket-hpwh.xml,75.1,29.04,8.49,10.49,46.27,5.25,12.42,44.25,4.34,3.37,21.28,0.12,0.0,0.21148,157.32,8818.38,5549.67,1.0101,56.81,1.0,56.81,75.1,75.1,0.0,51.07,1.0,51.07,75.1,75.1,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 +base-dhw-jacket-indirect.xml,67.97,28.71,8.61,10.49,47.04,5.35,18.65,31.76,4.84,13.1,21.28,0.12,0.0,0.22512,152.19,8715.57,5665.98,1.0107,55.08,1.0,55.08,67.97,67.97,0.0,49.53,1.0,49.53,67.97,67.97,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 +base-dhw-low-flow-fixtures.xml,78.79,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.8,21.28,0.12,0.0,0.22149,154.8,8596.35,5495.15,1.0105,56.51,1.0,56.51,78.79,78.79,0.0,50.8,1.0,50.8,78.79,78.79,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 +base-dhw-multiple.xml,68.21,29.51,8.31,10.5,48.31,5.2,11.54,31.95,4.81,6.01,21.28,0.12,0.0,0.2306,132.52,7569.02,5649.43,1.011,61.5,1.0,61.5,68.21,68.21,0.0,55.83,1.0,55.83,68.21,68.21,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 +base-dhw-none.xml,83.4,28.79,8.58,10.49,45.88,5.3,18.31,38.09,5.11,18.31,22.38,0.12,0.0,0.22122,188.81,10484.46,5495.15,1.0105,61.46,1.0,61.46,83.4,83.4,0.0,56.36,1.0,56.36,83.4,83.4,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 +base-dhw-recirc-demand.xml,79.0,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.98,21.28,0.12,0.0,0.22149,155.05,8609.9,5495.15,1.0105,56.51,1.0,56.51,79.0,79.0,0.0,50.8,1.0,50.8,79.0,79.0,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 +base-dhw-solar-fraction.xml,72.21,29.51,8.31,10.49,47.03,5.17,11.53,39.77,4.87,3.16,21.28,0.12,0.0,0.22149,147.36,8182.96,5495.15,1.0105,56.51,1.0,56.51,72.21,72.21,0.0,50.8,1.0,50.8,72.21,72.21,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 +base-dhw-solar-indirect-flat-plate.xml,70.39,29.51,8.31,10.49,47.03,5.17,11.53,39.06,5.06,1.74,21.28,0.12,0.0,0.22149,143.8,7985.16,5495.15,1.0105,56.51,1.0,56.51,70.39,70.39,0.0,50.8,1.0,50.8,70.39,70.39,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 +base-dhw-tank-elec-uef.xml,79.07,29.59,8.28,10.49,47.15,5.15,11.39,39.41,4.92,9.1,21.28,0.12,0.0,0.22302,155.3,8611.97,5486.95,1.0106,56.73,1.0,56.73,79.07,79.07,0.0,50.97,1.0,50.97,79.07,79.07,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 +base-dhw-tank-gas-uef.xml,79.02,28.95,8.52,10.49,46.13,5.27,17.66,38.48,5.05,14.75,21.28,0.12,0.0,0.23059,178.96,9927.13,5486.95,1.011,54.17,1.0,54.17,79.02,79.02,0.0,48.26,1.0,48.26,79.02,79.02,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 +base-dhw-tank-heat-pump-uef.xml,74.22,29.36,8.37,10.49,46.79,5.2,11.81,45.15,4.25,2.4,21.28,0.12,0.0,0.2183,159.17,8865.76,5512.62,1.0104,56.53,1.0,56.53,74.22,74.22,0.0,50.84,1.0,50.84,74.22,74.22,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 +base-dhw-tank-oil.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,192.41,10716.16,5512.62,1.0103,54.17,1.0,54.17,79.81,79.81,0.0,48.26,1.0,48.26,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tank-wood.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,,,,,54.17,1.0,54.17,79.81,79.81,0.0,48.26,1.0,48.26,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tankless-electric-uef.xml,79.44,29.51,8.31,10.49,47.03,5.17,11.53,39.93,4.85,9.17,21.28,0.12,0.0,0.22149,156.4,8684.95,5495.15,1.0105,56.64,1.0,56.64,79.44,79.44,0.0,50.91,1.0,50.91,79.44,79.44,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 +base-dhw-tankless-gas-uef.xml,72.75,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,9.66,21.28,0.12,0.0,0.22122,168.81,9373.82,5495.15,1.0105,54.17,1.0,54.17,72.75,72.75,0.0,48.26,1.0,48.26,72.75,72.75,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 +base-dhw-tankless-propane.xml,75.08,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,11.2,21.28,0.12,0.0,0.22122,179.02,9941.26,5495.15,1.0105,54.17,1.0,54.17,75.08,75.08,0.0,48.26,1.0,48.26,75.08,75.08,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,56.39,1.0,56.39,76.62,76.62,0.0,51.17,1.0,51.17,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,56.2,1.0,56.2,76.85,76.85,0.0,50.87,1.0,50.87,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,58.11,1.0,58.11,82.95,82.95,0.0,52.84,1.0,52.84,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.28,1.0,57.28,80.46,80.46,0.0,51.75,1.0,51.75,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 -base-enclosure-beds-4.xml,76.14,29.69,8.62,12.54,47.33,5.33,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142,143.88,8510.11,5764.99,1.026,55.68,1.0,55.68,76.14,76.14,0.0,49.81,1.0,49.81,76.14,76.14,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 -base-enclosure-beds-5.xml,74.22,29.88,8.93,14.54,47.62,5.5,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134,136.28,8550.2,6024.65,1.0414,54.87,1.0,54.87,74.22,74.22,0.0,48.86,1.0,48.86,74.22,74.22,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 -base-enclosure-ceilingtypes.xml,88.62,29.51,8.31,10.49,47.03,5.17,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078,187.74,10354.9,5495.15,1.0037,56.39,1.0,56.39,88.62,88.62,0.0,50.69,1.0,50.69,88.62,88.62,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 -base-enclosure-floortypes.xml,96.84,19.32,7.11,10.49,30.85,4.53,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149,208.3,9113.48,4132.16,1.0588,54.77,1.0,54.77,96.84,96.84,0.0,49.36,1.0,49.36,96.84,96.84,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 -base-enclosure-garage.xml,77.35,29.47,6.84,10.49,46.97,4.45,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149,156.84,8685.46,5479.85,1.0105,57.15,1.0,57.15,77.35,77.35,0.0,51.3,1.0,51.3,77.35,77.35,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 -base-enclosure-infil-ach-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm-house-pressure.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm50.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-ela.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-ach.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-cfm.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-overhangs.xml,78.06,29.51,8.31,10.49,47.03,5.17,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149,153.15,8504.35,5495.15,1.0105,56.51,1.0,56.51,78.06,78.06,0.0,50.8,1.0,50.8,78.06,78.06,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-skylights.xml,78.7,29.51,8.31,10.49,47.03,5.17,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166,149.68,8303.87,5495.15,1.0096,56.51,1.0,56.51,78.7,78.7,0.0,50.8,1.0,50.8,78.7,78.7,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 -base-enclosure-walltypes.xml,92.09,29.48,8.3,10.49,46.97,5.16,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335,204.13,11198.2,5497.0,0.9979,56.62,1.0,56.62,92.09,92.09,0.0,50.91,1.0,50.91,92.09,92.09,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 -base-foundation-ambient.xml,79.94,19.32,7.11,10.49,30.85,4.53,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149,141.21,6178.12,4132.16,1.0588,54.97,1.0,54.97,79.94,79.94,0.0,49.58,1.0,49.58,79.94,79.94,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 -base-foundation-basement-garage.xml,75.58,26.74,7.06,10.49,42.6,4.52,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149,143.2,7231.75,4880.55,1.0347,55.29,1.0,55.29,75.58,75.58,0.0,50.06,1.0,50.06,75.58,75.58,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 -base-foundation-conditioned-basement-slab-insulation.xml,77.66,29.51,8.31,10.49,47.03,5.17,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149,149.31,8291.22,5495.15,1.0105,56.51,1.0,56.51,77.66,77.66,0.0,50.8,1.0,50.8,77.66,77.66,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 -base-foundation-conditioned-basement-wall-insulation.xml,78.25,28.09,7.95,10.49,44.76,4.99,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149,151.65,8266.99,5394.52,1.0105,57.45,1.0,57.45,78.25,78.25,0.0,51.58,1.0,51.58,78.25,78.25,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 -base-foundation-multiple.xml,73.18,19.04,6.51,10.49,30.42,4.25,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149,122.78,5323.37,4094.86,1.0588,54.49,1.0,54.49,73.18,73.18,0.0,48.97,1.0,48.97,73.18,73.18,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 -base-foundation-slab.xml,65.76,20.75,6.58,10.49,33.09,4.28,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149,106.43,4691.57,4163.06,1.0588,54.08,1.0,54.08,65.76,65.76,0.0,48.9,1.0,48.9,65.76,65.76,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-assembly-r.xml,70.72,18.96,6.69,10.49,30.29,4.34,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149,117.84,5109.04,4094.68,1.0588,53.91,1.0,53.91,70.72,70.72,0.0,48.45,1.0,48.45,70.72,70.72,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-wall-insulation.xml,77.59,18.96,6.69,10.49,30.29,4.34,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149,144.13,6249.01,4094.68,1.0588,53.91,1.0,53.91,77.59,77.59,0.0,48.45,1.0,48.45,77.59,77.59,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement.xml,73.45,18.96,6.69,10.49,30.29,4.34,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149,123.49,5354.2,4094.68,1.0588,53.91,1.0,53.91,73.45,73.45,0.0,48.45,1.0,48.45,73.45,73.45,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unvented-crawlspace.xml,71.43,17.55,7.45,10.49,28.04,4.71,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149,114.08,4900.05,4056.7,1.0588,55.71,1.0,55.71,71.43,71.43,0.0,50.26,1.0,50.26,71.43,71.43,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace-above-grade.xml,73.64,17.59,7.35,10.49,28.09,4.65,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149,120.75,5184.23,4054.81,1.0588,55.86,1.0,55.86,73.64,73.64,0.0,50.41,1.0,50.41,73.64,73.64,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace.xml,73.26,17.55,7.45,10.49,28.04,4.71,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149,120.77,5187.51,4056.7,1.0588,55.71,1.0,55.71,73.26,73.26,0.0,50.26,1.0,50.26,73.26,73.26,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 -base-foundation-walkout-basement.xml,79.74,33.11,9.36,10.49,52.77,5.71,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149,161.69,9291.36,5792.15,0.9921,56.2,1.0,56.2,79.74,79.74,0.0,50.98,1.0,50.98,79.74,79.74,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137,162.4,9134.41,5565.81,1.0105,70.01,1.0,70.01,84.35,84.35,0.0,60.55,1.0,60.55,84.35,84.35,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.62,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902,84.74,4836.86,5648.96,1.0104,56.0,1.0,56.0,85.62,85.62,0.0,50.13,1.0,50.13,85.62,85.62,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.07,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198,83.35,4628.32,5495.15,1.0105,53.22,1.0,53.22,84.07,84.07,0.0,47.28,1.0,47.28,84.07,84.07,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.05,29.51,8.31,10.49,22.05,4.36,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198,83.31,4626.14,5495.15,1.0105,53.22,1.0,53.22,84.05,84.05,0.0,47.28,1.0,47.28,84.05,84.05,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed.xml,83.82,29.51,8.31,10.49,22.05,4.36,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198,83.1,4614.03,5495.15,1.0105,53.22,1.0,53.22,83.82,83.82,0.0,47.28,1.0,47.28,83.82,83.82,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-2-speed.xml,72.33,29.51,8.31,10.49,22.05,4.36,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198,73.55,4083.89,5495.15,1.0105,53.22,1.0,53.22,72.33,72.33,0.0,47.28,1.0,47.28,72.33,72.33,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-var-speed.xml,72.1,29.51,8.31,10.49,22.05,4.22,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969,73.91,4096.58,5484.97,1.0105,53.29,1.0,53.29,72.1,72.1,0.0,47.34,1.0,47.34,72.1,72.1,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 -base-hvac-boiler-elec-only.xml,98.64,29.51,8.31,10.49,22.92,5.2,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902,96.73,5521.07,5648.96,1.0104,56.0,1.0,56.0,98.64,98.64,0.0,50.13,1.0,50.13,98.64,98.64,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-boiler-gas-only.xml,71.31,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,131.3,7498.58,5648.96,1.011,57.08,1.0,57.08,71.31,71.31,0.0,51.67,1.0,51.67,71.31,71.31,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-oil-only.xml,71.32,29.51,8.31,10.49,48.31,5.2,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058,157.92,9018.63,5648.96,1.011,57.08,1.0,57.08,71.32,71.32,0.0,51.67,1.0,51.67,71.32,71.32,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-propane-only.xml,71.3,29.51,8.31,10.49,48.31,5.2,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058,148.2,8463.62,5648.96,1.011,57.08,1.0,57.08,71.3,71.3,0.0,51.67,1.0,51.67,71.3,71.3,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-central-ac-only-1-speed-seer2.xml,84.8,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185,161.59,9224.46,5648.96,1.0106,71.49,1.0,71.49,84.8,84.8,0.0,62.0,1.0,62.0,84.8,84.8,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-1-speed.xml,84.82,29.51,8.31,10.49,47.0,5.2,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185,161.6,9225.32,5648.96,1.0106,71.49,1.0,71.49,84.82,84.82,0.0,62.0,1.0,62.0,84.82,84.82,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-2-speed.xml,82.53,29.51,8.31,10.49,47.0,5.2,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185,160.21,9145.67,5648.96,1.0106,71.49,1.0,71.49,82.53,82.53,0.0,62.0,1.0,62.0,82.53,82.53,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-var-speed.xml,81.48,29.51,8.31,10.49,47.0,5.05,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172,159.73,9101.14,5638.15,1.0106,71.52,1.0,71.52,81.48,81.48,0.0,62.03,1.0,62.03,81.48,81.48,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.18,29.51,8.31,10.49,22.92,5.2,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902,85.03,4853.47,5648.96,1.0104,54.85,1.0,54.85,86.18,86.18,0.0,48.88,1.0,48.88,86.18,86.18,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 -base-hvac-dse.xml,78.18,29.51,8.31,10.49,47.03,5.17,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149,150.0,8329.47,5495.15,1.0105,56.5,1.0,56.5,78.18,78.18,0.0,50.8,1.0,50.8,78.18,78.18,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.78,29.52,8.31,10.49,31.7,4.36,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195,109.48,6079.06,5495.15,1.0105,53.22,1.0,53.22,80.78,80.78,0.0,47.28,1.0,47.28,80.78,80.78,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.07,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935,120.03,6664.7,5495.15,1.0104,53.22,1.0,53.22,80.07,80.07,0.0,47.28,1.0,47.28,80.07,80.07,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 -base-hvac-ducts-buried.xml,75.28,29.51,8.31,10.49,47.03,5.17,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149,144.76,8038.85,5495.15,1.0105,56.51,1.0,56.51,75.28,75.28,0.0,50.8,1.0,50.8,75.28,75.28,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 -base-hvac-ducts-leakage-cfm50.xml,76.63,29.51,8.31,10.49,47.03,5.17,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149,148.39,8240.02,5495.15,1.0105,56.51,1.0,56.51,76.63,76.63,0.0,50.8,1.0,50.8,76.63,76.63,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 -base-hvac-elec-resistance-only.xml,94.64,29.51,8.31,10.49,22.92,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902,93.1,5314.07,5648.96,1.0104,56.0,1.0,56.0,94.64,94.64,0.0,50.13,1.0,50.13,94.64,94.64,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-evap-cooler-only-ducted.xml,75.9,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185,156.01,8905.79,5648.96,1.0106,71.49,1.0,71.49,75.9,75.9,0.0,62.0,1.0,62.0,75.9,75.9,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 -base-hvac-evap-cooler-only.xml,75.74,29.51,8.31,10.49,47.0,5.2,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185,155.91,8900.38,5648.96,1.0106,71.49,1.0,71.49,75.74,75.74,0.0,62.0,1.0,62.0,75.74,75.74,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 -base-hvac-fireplace-wood-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.65,1.0,57.65,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-floor-furnace-propane-only.xml,76.27,29.51,8.31,10.49,47.0,5.2,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185,156.54,8936.5,5648.96,1.0106,57.65,1.0,57.65,76.27,76.27,0.0,52.05,1.0,52.05,76.27,76.27,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-furnace-elec-only.xml,110.77,29.51,8.31,10.49,22.92,5.2,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902,108.25,6178.56,5648.96,1.0104,56.0,1.0,56.0,110.77,110.77,0.0,50.13,1.0,50.13,110.77,110.77,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-furnace-gas-only.xml,78.37,29.51,8.31,10.49,47.0,5.2,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185,150.09,8568.33,5648.96,1.0106,57.65,1.0,57.65,78.37,78.37,0.0,52.05,1.0,52.05,78.37,78.37,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.25,29.51,8.29,10.49,47.0,4.24,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137,161.91,9106.79,5565.81,1.0105,70.01,1.0,70.01,83.25,83.25,0.0,60.55,1.0,60.55,83.25,83.25,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.21,29.51,8.31,10.49,22.92,5.2,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902,70.95,4049.95,5648.96,1.0104,56.0,1.0,56.0,71.21,71.21,0.0,50.13,1.0,50.13,71.21,71.21,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-ground-to-air-heat-pump.xml,68.82,29.51,8.31,10.49,22.05,4.36,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198,69.44,3855.92,5495.15,1.0105,53.22,1.0,53.22,68.82,68.82,0.0,47.28,1.0,47.28,68.82,68.82,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.34,29.51,8.31,10.49,22.05,4.36,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198,82.08,4557.71,5495.15,1.0105,53.22,1.0,53.22,82.34,82.34,0.0,47.28,1.0,47.28,82.34,82.34,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.38,29.51,8.31,10.49,47.03,5.17,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149,152.46,8466.12,5495.15,1.0105,56.51,1.0,56.51,77.38,77.38,0.0,50.8,1.0,50.8,77.38,77.38,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 -base-hvac-install-quality-ground-to-air-heat-pump.xml,67.33,29.51,8.31,10.49,22.05,4.36,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198,68.43,3799.72,5495.15,1.0105,53.22,1.0,53.22,67.33,67.33,0.0,47.28,1.0,47.28,67.33,67.33,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.34,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185,158.88,9069.91,5648.96,1.0106,71.49,1.0,71.49,80.34,80.34,0.0,62.0,1.0,62.0,80.34,80.34,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.08,29.51,8.31,10.49,22.05,4.36,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198,69.29,3847.67,5495.15,1.0105,53.22,1.0,53.22,67.08,67.08,0.0,47.28,1.0,47.28,67.08,67.08,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-air-conditioner-only-ducted.xml,80.6,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185,159.03,9078.55,5648.96,1.0106,71.49,1.0,71.49,80.6,80.6,0.0,62.0,1.0,62.0,80.6,80.6,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-air-conditioner-only-ductless.xml,79.79,29.51,8.31,10.49,47.0,5.2,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185,158.55,9051.28,5648.96,1.0106,71.49,1.0,71.49,79.79,79.79,0.0,62.0,1.0,62.0,79.79,79.79,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.49,29.51,8.29,10.49,47.0,4.24,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137,159.96,8997.14,5565.81,1.0105,70.01,1.0,70.01,79.49,79.49,0.0,60.55,1.0,60.55,79.49,79.49,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.09,29.51,8.31,10.49,22.92,5.2,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902,72.03,4111.18,5648.96,1.0104,56.0,1.0,56.0,72.09,72.09,0.0,50.13,1.0,50.13,72.09,72.09,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-mini-split-heat-pump-ducted.xml,67.42,29.51,8.31,10.49,22.05,4.36,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198,69.57,3863.24,5495.15,1.0105,53.22,1.0,53.22,67.42,67.42,0.0,47.28,1.0,47.28,67.42,67.42,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-heat-pump-ductless.xml,62.42,29.51,8.31,10.49,22.05,4.36,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198,65.21,3620.81,5495.15,1.0105,53.22,1.0,53.22,62.42,62.42,0.0,47.28,1.0,47.28,62.42,62.42,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 -base-hvac-multiple.xml,95.49,29.5,8.31,10.49,35.480000000000004,7.12,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189,136.55,8482.63,6150.07,1.0101,55.48,1.0,55.48,95.49,95.49,0.0,50.64,1.0,50.64,95.49,95.49,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 -base-hvac-none.xml,90.0,0.0,42.92,5.18,0.0,23.98,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415,,,,,69.6,1.0,69.6,90.0,90.0,0.0,62.74,1.0,62.74,90.0,90.0,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 -base-hvac-programmable-thermostat.xml,75.25,29.51,8.31,10.49,47.03,5.17,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149,146.42,8130.61,5495.15,1.0105,56.51,1.0,56.51,75.25,75.25,0.0,50.8,1.0,50.8,75.25,75.25,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 -base-hvac-ptac-with-heating-electricity.xml,93.55,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006,92.75,5182.77,5529.74,1.0105,53.13,1.0,53.13,93.55,93.55,0.0,47.17,1.0,47.17,93.55,93.55,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 -base-hvac-ptac-with-heating-natural-gas.xml,72.35,29.51,8.31,10.49,47.0,5.68,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194,138.82,7757.36,5529.74,1.0106,56.44,1.0,56.44,72.35,72.35,0.0,50.75,1.0,50.75,72.35,72.35,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-ptac.xml,80.34,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194,158.06,9077.51,5683.08,1.0106,71.43,1.0,71.43,80.34,80.34,0.0,61.95,1.0,61.95,80.34,80.34,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-pthp.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,53.13,1.0,53.13,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-only-ceer.xml,81.88,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9135.33,5683.08,1.0106,71.43,1.0,71.43,81.88,81.88,0.0,61.95,1.0,61.95,81.88,81.88,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-only.xml,81.87,29.51,8.31,10.49,47.0,5.68,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194,159.06,9134.8,5683.08,1.0106,71.43,1.0,71.43,81.87,81.87,0.0,61.95,1.0,61.95,81.87,81.87,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-with-heating.xml,95.34,29.51,8.31,10.49,22.05,4.85,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006,93.78,5240.07,5529.74,1.0105,53.13,1.0,53.13,95.34,95.34,0.0,47.17,1.0,47.17,95.34,95.34,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-with-reverse-cycle.xml,66.17,29.51,8.31,10.49,22.05,4.85,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006,67.57,3775.37,5529.74,1.0105,53.13,1.0,53.13,66.17,66.17,0.0,47.17,1.0,47.17,66.17,66.17,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-space-heater-gas-only.xml,68.36,29.51,8.31,10.49,47.0,5.2,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185,120.46,6876.48,5648.96,1.0106,57.65,1.0,57.65,68.36,68.36,0.0,52.05,1.0,52.05,68.36,68.36,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-stove-wood-pellets-only.xml,76.25,29.51,8.31,10.49,47.0,5.2,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185,,,,,57.65,1.0,57.65,76.25,76.25,0.0,52.05,1.0,52.05,76.25,76.25,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-undersized.xml,73.37,29.51,8.31,10.49,47.03,5.17,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149,139.53,7748.01,5495.15,1.0105,56.51,1.0,56.51,73.37,73.37,0.0,50.8,1.0,50.8,73.37,73.37,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 -base-hvac-wall-furnace-elec-only.xml,95.58,29.51,8.31,10.49,22.92,5.2,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902,93.99,5364.75,5648.96,1.0104,56.0,1.0,56.0,95.58,95.58,0.0,50.13,1.0,50.13,95.58,95.58,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 -base-lighting-ceiling-fans.xml,77.88,29.5,8.0,10.49,47.0,5.01,11.52,38.52,4.67,9.02,21.8,0.0,0.0,0.21919,151.51,8495.16,5548.98,1.0104,56.53,1.0,56.53,77.88,77.88,0.0,50.88,1.0,50.88,77.88,77.88,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 -base-location-baltimore-md.xml,68.24,20.19,10.68,9.61,32.31,6.71,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306,70.99,8820.06,11579.58,1.073,51.29,1.0,51.29,68.24,68.24,0.0,48.91,1.0,48.91,68.24,68.24,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 -base-location-capetown-zaf.xml,78.8,3.94,4.59,8.35,6.31,2.51,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223,,,,,50.48,1.0,50.48,78.8,78.8,0.0,48.28,1.0,48.28,78.8,78.8,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 -base-location-dallas-tx.xml,67.1,9.39,26.65,7.53,15.05,15.84,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332,70.54,5711.56,7545.78,1.0731,46.94,1.0,46.94,67.1,67.1,0.0,44.1,1.0,44.1,67.1,67.1,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 -base-location-duluth-mn.xml,71.86,44.99,1.76,13.08,71.67,1.98,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692,156.08,10525.35,6310.8,1.0686,54.17,1.0,54.17,71.86,71.86,0.0,47.1,1.0,47.1,71.86,71.86,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 -base-location-helena-mt.xml,77.6,48.36,3.58,11.9,77.03,2.64,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296,199.29,11627.03,5772.96,1.0106,57.98,1.0,57.98,77.6,77.6,0.0,51.0,1.0,51.0,77.6,77.6,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 -base-location-honolulu-hi.xml,79.2,0.0,42.93,5.18,0.0,23.77,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335,,,,,62.57,1.0,62.57,79.2,79.2,0.0,41.39,1.0,41.39,79.2,79.2,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 -base-location-miami-fl.xml,75.69,0.05,41.23,5.34,0.08,24.09,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399,75.32,5834.28,7348.59,1.0541,63.34,1.0,63.34,75.69,75.69,0.0,43.37,1.0,43.37,75.69,75.69,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 -base-location-phoenix-az.xml,70.04,1.23,51.89,5.61,1.96,29.4,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826,70.31,4738.53,6265.71,1.0757,48.88,1.0,48.88,70.04,70.04,0.0,44.5,1.0,44.5,70.04,70.04,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 -base-location-portland-or.xml,74.85,12.85,3.42,9.98,20.58,2.47,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847,132.0,3966.42,2862.1,1.0498,66.31,1.0,66.31,74.85,74.85,0.0,50.01,1.0,50.01,74.85,74.85,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 +base-enclosure-beds-4.xml,80.89,29.69,8.62,12.54,47.33,5.33,13.57,42.92,5.04,10.72,21.99,0.7,0.0,0.22142,158.38,9367.63,5764.99,1.026,55.68,1.0,55.68,80.89,80.89,0.0,49.81,1.0,49.81,80.89,80.89,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 +base-enclosure-beds-5.xml,80.83,29.88,8.93,14.54,47.62,5.5,15.57,44.42,5.18,12.39,22.7,1.04,0.0,0.22134,156.44,9815.49,6024.65,1.0414,54.87,1.0,54.87,80.83,80.83,0.0,48.86,1.0,48.86,80.83,80.83,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 +base-enclosure-ceilingtypes.xml,89.46,29.51,8.31,10.49,47.03,5.17,11.53,52.16,4.98,9.03,21.28,0.12,0.0,0.078,190.27,10494.5,5495.15,1.0037,56.39,1.0,56.39,89.46,89.46,0.0,50.69,1.0,50.69,89.46,89.46,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 +base-enclosure-floortypes.xml,104.52,19.32,7.11,10.49,30.85,4.53,11.52,52.94,4.56,9.22,15.13,0.78,0.0,0.22149,231.18,10114.68,4132.16,1.0588,54.77,1.0,54.77,104.52,104.52,0.0,49.36,1.0,49.36,104.52,104.52,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 +base-enclosure-garage.xml,78.25,29.47,6.84,10.49,46.97,4.45,11.73,41.67,3.26,9.11,21.42,0.12,0.0,0.22149,159.53,8834.44,5479.85,1.0105,57.15,1.0,57.15,78.25,78.25,0.0,51.3,1.0,51.3,78.25,78.25,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 +base-enclosure-infil-ach-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm50.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-ela.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-ach.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-cfm.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-overhangs.xml,78.91,29.51,8.31,10.49,47.03,5.17,11.53,39.8,4.72,9.02,21.28,0.12,0.0,0.22149,155.75,8648.83,5495.15,1.0105,56.51,1.0,56.51,78.91,78.91,0.0,50.8,1.0,50.8,78.91,78.91,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-skylights.xml,79.53,29.51,8.31,10.49,47.03,5.17,11.53,37.88,5.68,9.02,21.28,0.12,0.0,0.20166,152.24,8446.18,5495.15,1.0096,56.51,1.0,56.51,79.53,79.53,0.0,50.8,1.0,50.8,79.53,79.53,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 +base-enclosure-walltypes.xml,93.06,29.48,8.3,10.49,46.97,5.16,11.53,58.7,4.04,9.03,21.28,0.12,0.0,-0.04335,206.89,11349.14,5497.0,0.9979,56.62,1.0,56.62,93.06,93.06,0.0,50.91,1.0,50.91,93.06,93.06,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 +base-foundation-ambient.xml,87.48,19.32,7.11,10.49,30.85,4.53,11.52,32.25,5.76,9.21,15.13,0.78,0.0,0.22149,164.31,7188.92,4132.16,1.0588,54.97,1.0,54.97,87.48,87.48,0.0,49.58,1.0,49.58,87.48,87.48,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 +base-foundation-basement-garage.xml,80.98,26.74,7.06,10.49,42.6,4.52,11.53,37.17,5.01,9.26,17.78,0.66,0.0,0.22149,159.69,8064.5,4880.55,1.0347,55.29,1.0,55.29,80.98,80.98,0.0,50.06,1.0,50.06,80.98,80.98,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 +base-foundation-conditioned-basement-slab-insulation.xml,78.51,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.14,9.02,21.28,0.12,0.0,0.22149,151.91,8435.87,5495.15,1.0105,56.51,1.0,56.51,78.51,78.51,0.0,50.8,1.0,50.8,78.51,78.51,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 +base-foundation-conditioned-basement-wall-insulation.xml,79.12,28.09,7.95,10.49,44.76,4.99,11.53,38.33,4.52,9.02,21.28,0.12,0.0,0.22149,154.29,8411.05,5394.52,1.0105,57.45,1.0,57.45,79.12,79.12,0.0,51.58,1.0,51.58,79.12,79.12,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 +base-foundation-multiple.xml,80.44,19.04,6.51,10.49,30.42,4.25,11.67,26.36,5.01,9.17,15.13,0.78,0.0,0.22149,144.51,6265.48,4094.86,1.0588,54.49,1.0,54.49,80.44,80.44,0.0,48.97,1.0,48.97,80.44,80.44,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 +base-foundation-slab.xml,72.05,20.75,6.58,10.49,33.09,4.28,11.53,21.48,4.4,9.21,15.13,0.78,0.0,0.22149,125.08,5513.5,4163.06,1.0588,54.08,1.0,54.08,72.05,72.05,0.0,48.9,1.0,48.9,72.05,72.05,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-assembly-r.xml,77.91,18.96,6.69,10.49,30.29,4.34,11.67,25.03,4.55,9.19,15.13,0.78,0.0,0.22149,139.31,6039.93,4094.68,1.0588,53.91,1.0,53.91,77.91,77.91,0.0,48.45,1.0,48.45,77.91,77.91,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-wall-insulation.xml,84.7,18.96,6.69,10.49,30.29,4.34,11.67,32.84,4.23,9.13,15.13,0.78,0.0,0.22149,165.03,7155.15,4094.68,1.0588,53.91,1.0,53.91,84.7,84.7,0.0,48.45,1.0,48.45,84.7,84.7,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement.xml,80.81,18.96,6.69,10.49,30.29,4.34,11.67,26.65,5.05,9.18,15.13,0.78,0.0,0.22149,145.59,6312.01,4094.68,1.0588,53.91,1.0,53.91,80.81,80.81,0.0,48.45,1.0,48.45,80.81,80.81,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unvented-crawlspace.xml,78.45,17.55,7.45,10.49,28.04,4.71,11.78,23.13,4.98,9.29,15.13,0.78,0.0,0.22149,135.05,5800.87,4056.7,1.0588,55.71,1.0,55.71,78.45,78.45,0.0,50.26,1.0,50.26,78.45,78.45,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace-above-grade.xml,80.97,17.59,7.35,10.49,28.09,4.65,11.79,25.28,5.06,9.36,15.13,0.78,0.0,0.22149,142.73,6127.71,4054.81,1.0588,55.86,1.0,55.86,80.97,80.97,0.0,50.41,1.0,50.41,80.97,80.97,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace.xml,80.62,17.55,7.45,10.49,28.04,4.71,11.78,25.4,4.9,9.37,15.13,0.78,0.0,0.22149,142.82,6134.59,4056.7,1.0588,55.71,1.0,55.71,80.62,80.62,0.0,50.26,1.0,50.26,80.62,80.62,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 +base-foundation-walkout-basement.xml,80.57,33.11,9.36,10.49,52.77,5.71,11.53,45.02,5.14,9.02,21.28,0.12,0.0,0.22149,164.23,9437.16,5792.15,0.9921,56.2,1.0,56.2,80.57,80.57,0.0,50.98,1.0,50.98,80.57,80.57,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.45,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22137,165.56,9311.77,5565.81,1.0105,70.01,1.0,70.01,85.45,85.45,0.0,60.55,1.0,60.55,85.45,85.45,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.58,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.7,9.02,21.28,0.12,0.0,0.21902,85.66,4889.24,5648.96,1.0104,56.0,1.0,56.0,86.58,86.58,0.0,50.13,1.0,50.13,86.58,86.58,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.77,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.66,9.02,21.28,0.12,0.0,0.2198,84.04,4666.35,5495.15,1.0105,53.22,1.0,53.22,84.77,84.77,0.0,47.28,1.0,47.28,84.77,84.77,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.75,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.65,9.02,21.28,0.12,0.0,0.2198,84.0,4664.31,5495.15,1.0105,53.22,1.0,53.22,84.75,84.75,0.0,47.28,1.0,47.28,84.75,84.75,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed.xml,84.52,29.51,8.31,10.49,22.05,4.36,11.53,20.98,3.66,9.02,21.28,0.12,0.0,0.2198,83.78,4651.96,5495.15,1.0105,53.22,1.0,53.22,84.52,84.52,0.0,47.28,1.0,47.28,84.52,84.52,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-2-speed.xml,73.18,29.51,8.31,10.49,22.05,4.36,11.53,15.98,2.62,9.02,21.28,0.12,0.0,0.2198,74.37,4129.69,5495.15,1.0105,53.22,1.0,53.22,73.18,73.18,0.0,47.28,1.0,47.28,73.18,73.18,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-var-speed.xml,72.86,29.51,8.31,10.49,22.05,4.22,11.53,16.59,1.99,9.02,21.28,0.12,0.0,0.21969,74.65,4137.62,5484.97,1.0105,53.29,1.0,53.29,72.86,72.86,0.0,47.34,1.0,47.34,72.86,72.86,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 +base-hvac-boiler-elec-only.xml,100.03,29.51,8.31,10.49,22.92,5.2,11.53,30.6,4.7,9.02,21.28,0.12,0.0,0.21902,98.04,5595.85,5648.96,1.0104,56.0,1.0,56.0,100.03,100.03,0.0,50.13,1.0,50.13,100.03,100.03,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-boiler-gas-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.59,4.7,9.02,21.28,0.12,0.0,0.23058,133.48,7623.09,5648.96,1.011,57.08,1.0,57.08,72.02,72.02,0.0,51.67,1.0,51.67,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-oil-only.xml,72.04,29.51,8.31,10.49,48.31,5.2,11.53,32.6,4.7,9.02,21.28,0.12,0.0,0.23058,160.75,9180.54,5648.96,1.011,57.08,1.0,57.08,72.04,72.04,0.0,51.67,1.0,51.67,72.04,72.04,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-propane-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.58,4.7,9.02,21.28,0.12,0.0,0.23058,150.79,8611.85,5648.96,1.011,57.08,1.0,57.08,72.02,72.02,0.0,51.67,1.0,51.67,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-central-ac-only-1-speed-seer2.xml,85.88,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.96,9.02,21.28,0.12,0.0,0.22185,164.69,9401.4,5648.96,1.0106,71.49,1.0,71.49,85.88,85.88,0.0,62.0,1.0,62.0,85.88,85.88,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-1-speed.xml,85.91,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.97,9.02,21.28,0.12,0.0,0.22185,164.7,9402.26,5648.96,1.0106,71.49,1.0,71.49,85.91,85.91,0.0,62.0,1.0,62.0,85.91,85.91,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-2-speed.xml,83.62,29.51,8.31,10.49,47.0,5.2,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22185,163.31,9322.77,5648.96,1.0106,71.49,1.0,71.49,83.62,83.62,0.0,62.0,1.0,62.0,83.62,83.62,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-var-speed.xml,82.6,29.51,8.31,10.49,47.0,5.05,11.53,44.89,3.28,9.02,21.28,0.12,0.0,0.22172,162.86,9279.24,5638.15,1.0106,71.52,1.0,71.52,82.6,82.6,0.0,62.03,1.0,62.03,82.6,82.6,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.13,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.97,9.02,21.28,0.12,0.0,0.21902,85.94,4905.54,5648.96,1.0104,54.85,1.0,54.85,87.13,87.13,0.0,48.88,1.0,48.88,87.13,87.13,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 +base-hvac-dse.xml,79.08,29.51,8.31,10.49,47.03,5.17,11.53,38.26,5.36,9.02,21.28,0.12,0.0,0.22149,152.75,8482.26,5495.15,1.0105,56.5,1.0,56.5,79.08,79.08,0.0,50.8,1.0,50.8,79.08,79.08,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.45,29.52,8.31,10.49,31.7,4.36,11.53,28.259999999999998,3.66,9.02,21.28,0.12,0.0,0.2195,110.57,6139.57,5495.15,1.0105,53.22,1.0,53.22,81.45,81.45,0.0,47.28,1.0,47.28,81.45,81.45,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.75,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,31.39,3.66,9.02,21.28,0.12,0.0,0.21935,121.32,6736.23,5495.15,1.0104,53.22,1.0,53.22,80.75,80.75,0.0,47.28,1.0,47.28,80.75,80.75,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 +base-hvac-ducts-buried.xml,76.13,29.51,8.31,10.49,47.03,5.17,11.53,36.7,4.53,9.02,21.28,0.12,0.0,0.22149,147.35,8182.4,5495.15,1.0105,56.51,1.0,56.51,76.13,76.13,0.0,50.8,1.0,50.8,76.13,76.13,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 +base-hvac-ducts-leakage-cfm50.xml,77.47,29.51,8.31,10.49,47.03,5.17,11.53,37.97,4.7,9.02,21.28,0.12,0.0,0.22149,150.94,8381.95,5495.15,1.0105,56.51,1.0,56.51,77.47,77.47,0.0,50.8,1.0,50.8,77.47,77.47,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 +base-hvac-elec-resistance-only.xml,96.0,29.51,8.31,10.49,22.92,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.21902,94.4,5388.07,5648.96,1.0104,56.0,1.0,56.0,96.0,96.0,0.0,50.13,1.0,50.13,96.0,96.0,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-evap-cooler-only-ducted.xml,77.0,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.7,9.02,21.28,0.12,0.0,0.22185,159.11,9083.28,5648.96,1.0106,71.49,1.0,71.49,77.0,77.0,0.0,62.0,1.0,62.0,77.0,77.0,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 +base-hvac-evap-cooler-only.xml,76.84,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.63,9.02,21.28,0.12,0.0,0.22185,159.02,9077.87,5648.96,1.0106,71.49,1.0,71.49,76.84,76.84,0.0,62.0,1.0,62.0,76.84,76.84,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 +base-hvac-fireplace-wood-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.65,1.0,57.65,77.16,77.16,0.0,52.05,1.0,52.05,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-floor-furnace-propane-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,159.53,9106.71,5648.96,1.0106,57.65,1.0,57.65,77.16,77.16,0.0,52.05,1.0,52.05,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-furnace-elec-only.xml,112.37,29.51,8.31,10.49,22.92,5.2,11.53,37.93,4.7,9.02,21.28,0.12,0.0,0.21902,109.76,6264.68,5648.96,1.0104,56.0,1.0,56.0,112.37,112.37,0.0,50.13,1.0,50.13,112.37,112.37,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-furnace-gas-only.xml,79.22,29.51,8.31,10.49,47.0,5.2,11.53,40.33,4.7,9.02,21.28,0.12,0.0,0.22185,152.59,8710.82,5648.96,1.0106,57.65,1.0,57.65,79.22,79.22,0.0,52.05,1.0,52.05,79.22,79.22,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.44,9.02,21.28,0.12,0.0,0.22137,165.07,9284.29,5565.81,1.0105,70.01,1.0,70.01,84.35,84.35,0.0,60.55,1.0,60.55,84.35,84.35,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.93,29.51,8.31,10.49,22.92,5.2,11.53,13.9,4.7,9.02,21.28,0.12,0.0,0.21902,71.64,4089.39,5648.96,1.0104,56.0,1.0,56.0,71.93,71.93,0.0,50.13,1.0,50.13,71.93,71.93,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-ground-to-air-heat-pump.xml,69.13,29.51,8.31,10.49,22.05,4.36,11.53,12.84,3.19,9.02,21.28,0.12,0.0,0.2198,69.76,3873.7,5495.15,1.0105,53.22,1.0,53.22,69.13,69.13,0.0,47.28,1.0,47.28,69.13,69.13,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,83.06,29.51,8.31,10.49,22.05,4.36,11.53,20.65,3.31,9.02,21.28,0.12,0.0,0.2198,82.78,4596.73,5495.15,1.0105,53.22,1.0,53.22,83.06,83.06,0.0,47.28,1.0,47.28,83.06,83.06,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,78.23,29.51,8.31,10.49,47.03,5.17,11.53,39.53,4.5,9.02,21.28,0.12,0.0,0.22149,155.07,8610.94,5495.15,1.0105,56.51,1.0,56.51,78.23,78.23,0.0,50.8,1.0,50.8,78.23,78.23,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 +base-hvac-install-quality-ground-to-air-heat-pump.xml,67.7,29.51,8.31,10.49,22.05,4.36,11.53,12.55,2.83,9.02,21.28,0.12,0.0,0.2198,68.81,3820.55,5495.15,1.0105,53.22,1.0,53.22,67.7,67.7,0.0,47.28,1.0,47.28,67.7,67.7,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.45,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.83,9.02,21.28,0.12,0.0,0.22185,161.99,9247.5,5648.96,1.0106,71.49,1.0,71.49,81.45,81.45,0.0,62.0,1.0,62.0,81.45,81.45,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.8,29.51,8.31,10.49,22.05,4.36,11.53,13.89,1.93,9.02,21.28,0.12,0.0,0.2198,69.99,3886.36,5495.15,1.0105,53.22,1.0,53.22,67.8,67.8,0.0,47.28,1.0,47.28,67.8,67.8,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-air-conditioner-only-ducted.xml,81.7,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.96,9.02,21.28,0.12,0.0,0.22185,162.14,9256.21,5648.96,1.0106,71.49,1.0,71.49,81.7,81.7,0.0,62.0,1.0,62.0,81.7,81.7,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-air-conditioner-only-ductless.xml,80.9,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.57,9.02,21.28,0.12,0.0,0.22185,161.67,9228.88,5648.96,1.0106,71.49,1.0,71.49,80.9,80.9,0.0,62.0,1.0,62.0,80.9,80.9,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.59,29.51,8.29,10.49,47.0,4.24,11.53,44.89,1.97,9.02,21.28,0.12,0.0,0.22137,163.12,9174.59,5565.81,1.0105,70.01,1.0,70.01,80.59,80.59,0.0,60.55,1.0,60.55,80.59,80.59,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.81,29.51,8.31,10.49,22.92,5.2,11.53,14.43,4.7,9.02,21.28,0.12,0.0,0.21902,72.73,4151.1,5648.96,1.0104,56.0,1.0,56.0,72.81,72.81,0.0,50.13,1.0,50.13,72.81,72.81,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-mini-split-heat-pump-ducted.xml,68.14,29.51,8.31,10.49,22.05,4.36,11.53,14.03,1.97,9.02,21.28,0.12,0.0,0.2198,70.28,3902.38,5495.15,1.0105,53.22,1.0,53.22,68.14,68.14,0.0,47.28,1.0,47.28,68.14,68.14,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-heat-pump-ductless.xml,63.08,29.51,8.31,10.49,22.05,4.36,11.53,11.53,1.69,9.02,21.28,0.12,0.0,0.2198,65.86,3656.89,5495.15,1.0105,53.22,1.0,53.22,63.08,63.08,0.0,47.28,1.0,47.28,63.08,63.08,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 +base-hvac-multiple.xml,96.79,29.5,8.31,10.49,35.480000000000004,7.12,11.53,44.97,5.4399999999999995,9.02,21.28,0.12,0.0,0.21189,138.98,8633.7,6150.07,1.0101,55.48,1.0,55.48,96.79,96.79,0.0,50.64,1.0,50.64,96.79,96.79,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 +base-hvac-none.xml,94.49,0.0,42.92,5.18,0.0,23.98,6.1,0.0,26.17,4.75,15.13,0.78,0.0,0.18415,,,,,69.6,1.0,69.6,94.49,94.49,0.0,62.74,1.0,62.74,94.49,94.49,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 +base-hvac-programmable-thermostat.xml,76.08,29.51,8.31,10.49,47.03,5.17,11.53,37.4,4.25,9.03,21.28,0.12,0.0,0.22149,148.95,8271.56,5495.15,1.0105,56.51,1.0,56.51,76.08,76.08,0.0,50.8,1.0,50.8,76.08,76.08,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 +base-hvac-ptac-with-heating-electricity.xml,94.97,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.09,9.02,21.28,0.12,0.0,0.22006,94.08,5256.75,5529.74,1.0105,53.13,1.0,53.13,94.97,94.97,0.0,47.17,1.0,47.17,94.97,94.97,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 +base-hvac-ptac-with-heating-natural-gas.xml,73.24,29.51,8.31,10.49,47.0,5.68,11.53,35.26,3.09,9.02,21.28,0.12,0.0,0.22194,141.37,7900.01,5529.74,1.0106,56.44,1.0,56.44,73.24,73.24,0.0,50.75,1.0,50.75,73.24,73.24,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-ptac.xml,81.44,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.09,9.02,21.28,0.12,0.0,0.22194,161.14,9254.72,5683.08,1.0106,71.43,1.0,71.43,81.44,81.44,0.0,61.95,1.0,61.95,81.44,81.44,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-pthp.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.13,1.0,53.13,66.83,66.83,0.0,47.17,1.0,47.17,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-only-ceer.xml,82.98,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.89,9.02,21.28,0.12,0.0,0.22194,162.15,9312.47,5683.08,1.0106,71.43,1.0,71.43,82.98,82.98,0.0,61.95,1.0,61.95,82.98,82.98,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-only.xml,82.96,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.88,9.02,21.28,0.12,0.0,0.22194,162.14,9311.95,5683.08,1.0106,71.43,1.0,71.43,82.96,82.96,0.0,61.95,1.0,61.95,82.96,82.96,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-with-heating.xml,96.76,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.88,9.02,21.28,0.12,0.0,0.22006,95.1,5313.98,5529.74,1.0105,53.13,1.0,53.13,96.76,96.76,0.0,47.17,1.0,47.17,96.76,96.76,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-with-reverse-cycle.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.13,1.0,53.13,66.83,66.83,0.0,47.17,1.0,47.17,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-space-heater-gas-only.xml,69.04,29.51,8.31,10.49,47.0,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.22185,122.49,6992.53,5648.96,1.0106,57.65,1.0,57.65,69.04,69.04,0.0,52.05,1.0,52.05,69.04,69.04,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-stove-wood-pellets-only.xml,77.14,29.51,8.31,10.49,47.0,5.2,11.53,35.23,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.65,1.0,57.65,77.14,77.14,0.0,52.05,1.0,52.05,77.14,77.14,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-undersized.xml,74.16,29.51,8.31,10.49,47.03,5.17,11.53,34.76,4.29,9.02,21.28,0.12,0.0,0.22149,141.93,7881.32,5495.15,1.0105,56.51,1.0,56.51,74.16,74.16,0.0,50.8,1.0,50.8,74.16,74.16,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 +base-hvac-wall-furnace-elec-only.xml,96.97,29.51,8.31,10.49,22.92,5.2,11.53,28.78,4.7,9.02,21.28,0.12,0.0,0.21902,95.31,5440.07,5648.96,1.0104,56.0,1.0,56.0,96.97,96.97,0.0,50.13,1.0,50.13,96.97,96.97,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 +base-lighting-ceiling-fans.xml,78.72,29.5,8.0,10.49,47.0,5.01,11.52,39.45,4.67,9.02,21.8,0.12,0.0,0.21919,154.08,8639.13,5548.98,1.0104,56.53,1.0,56.53,78.72,78.72,0.0,50.88,1.0,50.88,78.72,78.72,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 +base-location-baltimore-md.xml,75.37,20.19,10.68,9.61,32.31,6.71,10.82,23.26,7.15,8.51,15.13,0.78,0.0,0.27306,79.59,9889.08,11579.58,1.073,51.29,1.0,51.29,75.37,75.37,0.0,48.91,1.0,48.91,75.37,75.37,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 +base-location-capetown-zaf.xml,79.78,3.94,4.59,8.35,6.31,2.51,9.47,1.65,3.66,7.51,15.13,0.78,0.0,0.17223,,,,,50.48,1.0,50.48,79.78,79.78,0.0,48.28,1.0,48.28,79.78,79.78,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 +base-location-dallas-tx.xml,71.82,9.39,26.65,7.53,15.05,15.84,8.51,6.07,13.71,6.72,15.13,0.78,0.0,0.27332,77.15,6246.97,7545.78,1.0731,46.94,1.0,46.94,71.82,71.82,0.0,44.1,1.0,44.1,71.82,71.82,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 +base-location-duluth-mn.xml,80.9,44.99,1.76,13.08,71.67,1.98,14.52,69.08,2.23,11.42,15.13,0.78,0.0,0.25692,182.79,12326.56,6310.8,1.0686,54.17,1.0,54.17,80.9,80.9,0.0,47.1,1.0,47.1,80.9,80.9,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 +base-location-helena-mt.xml,78.49,48.36,3.58,11.9,77.03,2.64,12.95,66.03,2.35,10.17,21.28,0.12,0.0,0.22296,202.54,11816.8,5772.96,1.0106,57.98,1.0,57.98,78.49,78.49,0.0,51.0,1.0,51.0,78.49,78.49,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 +base-location-honolulu-hi.xml,83.24,0.0,42.93,5.18,0.0,23.77,6.1,0.0,21.53,4.75,15.13,0.78,0.0,0.18335,,,,,62.57,1.0,62.57,83.24,83.24,0.0,41.39,1.0,41.39,83.24,83.24,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 +base-location-miami-fl.xml,80.63,0.05,41.23,5.34,0.08,24.09,6.27,0.01,21.0,4.88,15.13,0.78,0.0,0.20399,79.68,6171.56,7348.59,1.0541,63.34,1.0,63.34,80.63,80.63,0.0,43.37,1.0,43.37,80.63,80.63,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 +base-location-phoenix-az.xml,72.82,1.23,51.89,5.61,1.96,29.4,6.56,0.27,23.05,5.11,15.13,0.78,0.0,0.2826,73.51,4954.67,6265.71,1.0757,48.88,1.0,48.88,72.82,72.82,0.0,44.5,1.0,44.5,72.82,72.82,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 +base-location-portland-or.xml,82.44,12.85,3.42,9.98,20.58,2.47,11.26,20.52,2.67,8.93,15.13,0.78,0.0,0.18847,159.44,4790.85,2862.1,1.0498,66.31,1.0,66.31,82.44,82.44,0.0,50.01,1.0,50.01,82.44,82.44,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.51,1.0,56.51,82.2,82.2,0.0,50.8,1.0,50.8,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 base-mechvent-cfis-airflow-fraction-zero.xml,78.85,29.25,8.43,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.85,8439.57,5573.33,1.0105,56.51,1.0,56.51,78.85,78.85,0.0,50.8,1.0,50.8,78.85,78.85,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 base-mechvent-cfis-supplemental-fan-exhaust.xml,75.9,29.25,8.43,10.49,46.61,5.22,11.53,35.86,4.9,9.02,21.28,0.5,0.0,0.22149,144.33,8128.72,5573.33,1.0105,56.51,1.0,56.51,75.9,75.9,0.0,50.8,1.0,50.8,75.9,75.9,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 @@ -167,12 +167,12 @@ base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9. base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 base-mechvent-multiple.xml,82.61,29.06,8.52,10.49,46.31,6.16,11.53,42.72,5.86,9.03,21.28,1.49,0.0,0.22163,162.64,9331.67,5677.62,1.0106,57.25,1.0,57.25,82.61,82.61,0.0,51.55,1.0,51.55,82.61,82.61,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 base-mechvent-supply.xml,77.83,29.25,8.43,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.26,8406.48,5573.33,1.0105,56.51,1.0,56.51,77.83,77.83,0.0,50.8,1.0,50.8,77.83,77.83,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-whole-house-fan.xml,76.48,29.51,8.31,10.49,47.03,5.17,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149,151.87,8433.6,5495.15,1.0105,56.51,1.0,56.51,76.48,76.48,0.0,50.8,1.0,50.8,76.48,76.48,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 -base-misc-generators.xml,76.33,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,192.73,10702.6,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-pv.xml,37.1,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,119.79,6652.11,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-mechvent-whole-house-fan.xml,77.36,29.51,8.31,10.49,47.03,5.17,11.53,39.6,3.41,9.03,21.28,0.12,0.0,0.22149,154.5,8579.36,5495.15,1.0105,56.51,1.0,56.51,77.36,77.36,0.0,50.8,1.0,50.8,77.36,77.36,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 +base-misc-generators.xml,77.17,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,195.32,10846.58,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-pv.xml,37.9,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,122.38,6796.09,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 base-version-co2-2019ABCD.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022C.xml,,,,,,,,,,,,,,,155.11,8613.37,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014.xml,77.95,30.86,8.3,11.44,49.09,4.34,12.37,37.01,3.95,11.49,21.71,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014A.xml,75.36,30.81,8.32,10.39,49.02,4.35,11.42,36.97,3.96,8.56,21.71,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014AE.xml,74.49,30.81,8.32,10.39,49.02,4.35,11.42,36.97,3.96,8.56,21.71,0.0,0.0,0.24606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -183,8 +183,8 @@ base-version-eri-2019AB.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9. base-version-eri-2019ABC.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2019ABCD.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2022.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022C.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.82,30.81,8.32,10.39,49.02,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.38,33.54,8.27,10.39,53.36,4.32,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,152.52,8469.39,5495.15,1.0105,56.51,1.0,56.51,78.2,78.2,0.0,50.8,1.0,50.8,78.2,78.2,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 From c3f4f194e21ccaad070ddbbfeff54eee7ae03e6a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 17 Jan 2024 16:51:42 -0700 Subject: [PATCH 17/35] Squashed 'hpxml-measures/' changes from 6be89690f6..dc687d155e dc687d155e Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 14fb976588 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022 0d2ad4c32e Merge pull request #1590 from NREL/revert_xmlvalidator 5e0f974989 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into revert_xmlvalidator 451001898c Merge pull request #1589 from NREL/flatten_documentation 7cb579f037 Some cleanup/fixes. 612c71105d Update test. 9d22e625c0 Update BuildResHPXML measure links. 188a92825c Handle hot water distribution [ci skip] 53249533f4 Handle solar thermal [ci skip] c482b8eb41 Use consistent language [ci skip] ec645b9a5e Handle ventilation fans. [ci skip] 32f2f2c567 Address HVAC distribution [ci skip] 5305dbff27 Address water heaters. [ci skip] 80c4a2586a Address heat pumps [ci skip] a1db341e67 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022 d2191ea01f Merge pull request #1577 from NREL/ansi_301_2022_programmable_thermostat a5934e0e09 Remove Changelog.md entry [ci skip] 1c83895eb8 Update measure.xml [ci skip] 7292979287 Try reverting XMLValidator workaround for https://github.com/NREL/OpenStudio/issues/4824. 00f8b38767 Merge branch 'ansi_301_2022_programmable_thermostat' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_programmable_thermostat 287d318baa Revert changes in test_defaults [ci skip] a4fdb6476f Latest results. 72c5f982f3 Fix default heating/cooling setpoints when there's no HVAC system b9b2eef38b Flatten HVAC heating and cooling systems. [ci skip] 9d6504d6c3 Clarify operable window area [ci skip] 9345750def Minor stuff. [ci skip] 4eae84d5f5 Run update_measures [ci skip] 42143ff8b9 Update changelog [ci skip] 5b5b964f95 Fix test_defaults.rb 03173ee833 Bugfix 0890573cab Simplify getting default setpoints for HVAC control type manual bd4c75beec Update HPXMLtoOpenStudio/resources/hpxml_defaults.rb 595311b61d Merge pull request #1583 from NREL/perf-data-args 970991b687 A little more clarification that min/max refer to speeds, not the capacities/cops themselves. Also adds more conditionals on when we attach the detailed performance data to cooling systems or heat pumps. c1d7100790 Update argument names and descriptions. a6b697c506 Merge branch 'master' into perf-data-args 9fb96818d8 Latest results. c2598cc89b Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_programmable_thermostat 78ad111379 Use 24-hr weekday/weekend setpoints for older ERI versions be7cf3a60f Add build tests for errors. 294004fb47 Update hpxml_inputs json. 4670c314e3 Simplify new perf data arguments. 9d36c872c8 Merge branch 'master' into perf-data-args 03d3c8f477 Generate detailed performance sample files using build measure. d80b4f80ce Add detailed performance data arguments. 3f5105ea24 Run update_measures 6696a7e5b6 Support 301-2022 programmable thermostat schedules git-subtree-dir: hpxml-measures git-subtree-split: dc687d155e77b6303ab13769fe58c4313c8c5505 --- BuildResidentialHPXML/README.md | 159 +- BuildResidentialHPXML/measure.rb | 255 ++- BuildResidentialHPXML/measure.xml | 151 +- .../tests/test_build_residential_hpxml.rb | 24 + Changelog.md | 1 + HPXMLtoOpenStudio/measure.xml | 16 +- HPXMLtoOpenStudio/resources/airflow.rb | 14 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 20 +- .../hpxml_schematron/EPvalidator.xml | 286 ++- HPXMLtoOpenStudio/resources/hvac.rb | 40 +- HPXMLtoOpenStudio/resources/xmlvalidator.rb | 8 +- HPXMLtoOpenStudio/tests/test_validation.rb | 3 +- docs/source/workflow_inputs.rst | 1922 +++++++++++------ tasks.rb | 267 +-- workflow/hpxml_inputs.json | 72 +- 15 files changed, 2069 insertions(+), 1169 deletions(-) diff --git a/BuildResidentialHPXML/README.md b/BuildResidentialHPXML/README.md index cb5e9b4e0..84a4ad40d 100644 --- a/BuildResidentialHPXML/README.md +++ b/BuildResidentialHPXML/README.md @@ -2278,6 +2278,129 @@ Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-ai
+**HVAC Detailed Performance Data: Capacity Type** + +Type of capacity values for detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). + +- **Name:** ``hvac_perf_data_capacity_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `Absolute capacities` + +
+ +**HVAC Detailed Performance Data: Heating Outdoor Temperatures** + +Outdoor temperatures of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 47 deg-F. At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_heating_outdoor_temperatures`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Heating Minimum Speed Capacities** + +Minimum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_heating_min_speed_capacities`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Heating Maximum Speed Capacities** + +Maximum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_heating_max_speed_capacities`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Heating Minimum Speed COPs** + +Minimum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_heating_min_speed_cops`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Heating Maximum Speed COPs** + +Maximum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_heating_max_speed_cops`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Cooling Outdoor Temperatures** + +Outdoor temperatures of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 95 deg-F. At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_cooling_outdoor_temperatures`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Cooling Minimum Speed Capacities** + +Minimum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_cooling_min_speed_capacities`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Cooling Maximum Speed Capacities** + +Maximum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_cooling_max_speed_capacities`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Cooling Minimum Speed COPs** + +Minimum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_cooling_min_speed_cops`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Detailed Performance Data: Cooling Maximum Speed COPs** + +Maximum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + +- **Name:** ``hvac_perf_data_cooling_max_speed_cops`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ **Geothermal Loop: Configuration** Configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default (see Ground-to-Air Heat Pump) is used. @@ -2732,7 +2855,7 @@ The type of the mechanical ventilation. Use 'none' if there is no mechanical ven **Mechanical Ventilation: Flow Rate** -The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. +The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used. - **Name:** ``mech_vent_flow_rate`` - **Type:** ``Double`` @@ -2745,7 +2868,7 @@ The flow rate of the mechanical ventilation. If not provided, the OS-HPXML defau **Mechanical Ventilation: Hours In Operation** -The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. +The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used. - **Name:** ``mech_vent_hours_in_operation`` - **Type:** ``Double`` @@ -2797,7 +2920,7 @@ The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventil **Mechanical Ventilation: Fan Power** -The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. +The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used. - **Name:** ``mech_vent_fan_power`` - **Type:** ``Double`` @@ -3005,7 +3128,7 @@ The fan power of the second mechanical ventilation. **Kitchen Fans: Quantity** -The quantity of the kitchen fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The quantity of the kitchen fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``kitchen_fans_quantity`` - **Type:** ``Integer`` @@ -3018,7 +3141,7 @@ The quantity of the kitchen fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``kitchen_fans_flow_rate`` - **Type:** ``Double`` @@ -3031,7 +3154,7 @@ The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``kitchen_fans_hours_in_operation`` - **Type:** ``Double`` @@ -3044,7 +3167,7 @@ The hours in operation of the kitchen fan. If not provided, the OS-HPXML default **Kitchen Fans: Fan Power** -The fan power of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The fan power of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``kitchen_fans_power`` - **Type:** ``Double`` @@ -3057,7 +3180,7 @@ The fan power of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The start hour of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``kitchen_fans_start_hour`` - **Type:** ``Integer`` @@ -3070,7 +3193,7 @@ The start hour of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The quantity of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``bathroom_fans_quantity`` - **Type:** ``Integer`` @@ -3083,7 +3206,7 @@ The quantity of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``bathroom_fans_flow_rate`` - **Type:** ``Double`` @@ -3096,7 +3219,7 @@ The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see < **Bathroom Fans: Hours In Operation** -The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``bathroom_fans_hours_in_operation`` - **Type:** ``Double`` @@ -3109,7 +3232,7 @@ The hours in operation of the bathroom fans. If not provided, the OS-HPXML defau **Bathroom Fans: Fan Power** -The fan power of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The fan power of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``bathroom_fans_power`` - **Type:** ``Double`` @@ -3122,7 +3245,7 @@ The fan power of the bathroom fans. If not provided, the OS-HPXML default (see < **Bathroom Fans: Start Hour** -The start hour of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. +The start hour of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used. - **Name:** ``bathroom_fans_start_hour`` - **Type:** ``Integer`` @@ -3146,7 +3269,7 @@ Whether there is a whole house fan. **Whole House Fan: Flow Rate** -The flow rate of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used. +The flow rate of the whole house fan. If not provided, the OS-HPXML default (see HPXML Whole House Fans) is used. - **Name:** ``whole_house_fan_flow_rate`` - **Type:** ``Double`` @@ -3159,7 +3282,7 @@ The flow rate of the whole house fan. If not provided, the OS-HPXML default (see **Whole House Fan: Fan Power** -The fan power of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used. +The fan power of the whole house fan. If not provided, the OS-HPXML default (see HPXML Whole House Fans) is used. - **Name:** ``whole_house_fan_power`` - **Type:** ``Double`` @@ -3415,7 +3538,7 @@ If the distribution system is Recirculation, the type of hot water recirculation **Hot Water Distribution: Recirculation Piping Length** -If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation) is used. +If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used. - **Name:** ``hot_water_distribution_recirc_piping_length`` - **Type:** ``Double`` @@ -3428,7 +3551,7 @@ If the distribution system is Recirculation, the length of the recirculation pip **Hot Water Distribution: Recirculation Branch Piping Length** -If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation) is used. +If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used. - **Name:** ``hot_water_distribution_recirc_branch_piping_length`` - **Type:** ``Double`` @@ -3441,7 +3564,7 @@ If the distribution system is Recirculation, the length of the recirculation bra **Hot Water Distribution: Recirculation Pump Power** -If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation) is used. +If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used. - **Name:** ``hot_water_distribution_recirc_pump_power`` - **Type:** ``Double`` diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index c08d9ab4d..aaf6dd1bd 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1382,6 +1382,76 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('W') args << arg + perf_data_capacity_type_choices = OpenStudio::StringVector.new + perf_data_capacity_type_choices << 'Absolute capacities' + # perf_data_capacity_type_choices << 'Normalized capacity fractions' + + arg = OpenStudio::Measure::OSArgument.makeChoiceArgument('hvac_perf_data_capacity_type', perf_data_capacity_type_choices, false) + arg.setDisplayName('HVAC Detailed Performance Data: Capacity Type') + arg.setDescription('Type of capacity values for detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps).') + arg.setUnits('Absolute capacities') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_heating_outdoor_temperatures', false) + arg.setDisplayName('HVAC Detailed Performance Data: Heating Outdoor Temperatures') + arg.setDescription('Outdoor temperatures of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 47 deg-F. At least two performance data points are required using a comma-separated list.') + arg.setUnits('deg-F') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_heating_min_speed_capacities', false) + arg.setDisplayName('HVAC Detailed Performance Data: Heating Minimum Speed Capacities') + arg.setDescription('Minimum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('Btu/hr or Frac') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_heating_max_speed_capacities', false) + arg.setDisplayName('HVAC Detailed Performance Data: Heating Maximum Speed Capacities') + arg.setDescription('Maximum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('Btu/hr or Frac') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_heating_min_speed_cops', false) + arg.setDisplayName('HVAC Detailed Performance Data: Heating Minimum Speed COPs') + arg.setDescription('Minimum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('W/W') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_heating_max_speed_cops', false) + arg.setDisplayName('HVAC Detailed Performance Data: Heating Maximum Speed COPs') + arg.setDescription('Maximum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('W/W') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_cooling_outdoor_temperatures', false) + arg.setDisplayName('HVAC Detailed Performance Data: Cooling Outdoor Temperatures') + arg.setDescription('Outdoor temperatures of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 95 deg-F. At least two performance data points are required using a comma-separated list.') + arg.setUnits('deg-F') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_cooling_min_speed_capacities', false) + arg.setDisplayName('HVAC Detailed Performance Data: Cooling Minimum Speed Capacities') + arg.setDescription('Minimum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('Btu/hr or Frac') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_cooling_max_speed_capacities', false) + arg.setDisplayName('HVAC Detailed Performance Data: Cooling Maximum Speed Capacities') + arg.setDescription('Maximum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('Btu/hr or Frac') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_cooling_min_speed_cops', false) + arg.setDisplayName('HVAC Detailed Performance Data: Cooling Minimum Speed COPs') + arg.setDescription('Minimum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('W/W') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hvac_perf_data_cooling_max_speed_cops', false) + arg.setDisplayName('HVAC Detailed Performance Data: Cooling Maximum Speed COPs') + arg.setDescription('Maximum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list.') + arg.setUnits('W/W') + args << arg + geothermal_loop_configuration_choices = OpenStudio::StringVector.new geothermal_loop_configuration_choices << 'none' # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationDiagonal @@ -1673,13 +1743,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_flow_rate', false) arg.setDisplayName('Mechanical Ventilation: Flow Rate') - arg.setDescription("The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") + arg.setDescription("The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_hours_in_operation', false) arg.setDisplayName('Mechanical Ventilation: Hours In Operation') - arg.setDescription("The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") + arg.setDescription("The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used.") arg.setUnits('hrs/day') args << arg @@ -1705,7 +1775,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_fan_power', false) arg.setDisplayName('Mechanical Ventilation: Fan Power') - arg.setDescription("The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") + arg.setDescription("The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see HPXML Mechanical Ventilation Fans) is used.") arg.setUnits('W') args << arg @@ -1816,61 +1886,61 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_quantity', false) arg.setDisplayName('Kitchen Fans: Quantity') - arg.setDescription("The quantity of the kitchen fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The quantity of the kitchen fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('#') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_flow_rate', false) arg.setDisplayName('Kitchen Fans: Flow Rate') - arg.setDescription("The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_hours_in_operation', false) arg.setDisplayName('Kitchen Fans: Hours In Operation') - arg.setDescription("The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('hrs/day') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_power', false) arg.setDisplayName('Kitchen Fans: Fan Power') - arg.setDescription("The fan power of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The fan power of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('W') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_start_hour', false) arg.setDisplayName('Kitchen Fans: Start Hour') - arg.setDescription("The start hour of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The start hour of the kitchen fan. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('hr') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_quantity', false) arg.setDisplayName('Bathroom Fans: Quantity') - arg.setDescription("The quantity of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The quantity of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('#') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_flow_rate', false) arg.setDisplayName('Bathroom Fans: Flow Rate') - arg.setDescription("The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_hours_in_operation', false) arg.setDisplayName('Bathroom Fans: Hours In Operation') - arg.setDescription("The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('hrs/day') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_power', false) arg.setDisplayName('Bathroom Fans: Fan Power') - arg.setDescription("The fan power of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The fan power of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('W') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_start_hour', false) arg.setDisplayName('Bathroom Fans: Start Hour') - arg.setDescription("The start hour of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") + arg.setDescription("The start hour of the bathroom fans. If not provided, the OS-HPXML default (see HPXML Local Ventilation Fans) is used.") arg.setUnits('hr') args << arg @@ -1882,13 +1952,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('whole_house_fan_flow_rate', false) arg.setDisplayName('Whole House Fan: Flow Rate') - arg.setDescription("The flow rate of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used.") + arg.setDescription("The flow rate of the whole house fan. If not provided, the OS-HPXML default (see HPXML Whole House Fans) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('whole_house_fan_power', false) arg.setDisplayName('Whole House Fan: Fan Power') - arg.setDescription("The fan power of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used.") + arg.setDescription("The fan power of the whole house fan. If not provided, the OS-HPXML default (see HPXML Whole House Fans) is used.") arg.setUnits('W') args << arg @@ -2068,19 +2138,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_piping_length', false) arg.setDisplayName('Hot Water Distribution: Recirculation Piping Length') arg.setUnits('ft') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation) is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_branch_piping_length', false) arg.setDisplayName('Hot Water Distribution: Recirculation Branch Piping Length') arg.setUnits('ft') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation) is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_pump_power', false) arg.setDisplayName('Hot Water Distribution: Recirculation Pump Power') arg.setUnits('W') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation) is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation (In-Unit)) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_pipe_r', false) @@ -3395,6 +3465,44 @@ def argument_errors(args) error = args[:rim_joist_assembly_r].is_initialized && !args[:geometry_rim_joist_height].is_initialized errors << 'Specified a rim joist assembly R-value but no rim joist height.' if error + hvac_perf_data_heating_args_initialized = [args[:hvac_perf_data_heating_outdoor_temperatures].is_initialized, + args[:hvac_perf_data_heating_min_speed_capacities].is_initialized, + args[:hvac_perf_data_heating_max_speed_capacities].is_initialized, + args[:hvac_perf_data_heating_min_speed_cops].is_initialized, + args[:hvac_perf_data_heating_max_speed_cops].is_initialized] + error = (hvac_perf_data_heating_args_initialized.uniq.size != 1) + errors << 'Did not specify all required heating detailed performance data arguments.' if error + + if hvac_perf_data_heating_args_initialized.uniq.size == 1 && hvac_perf_data_heating_args_initialized.uniq[0] + heating_data_points_lengths = [args[:hvac_perf_data_heating_outdoor_temperatures].get.count(','), + args[:hvac_perf_data_heating_min_speed_capacities].get.count(','), + args[:hvac_perf_data_heating_max_speed_capacities].get.count(','), + args[:hvac_perf_data_heating_min_speed_cops].get.count(','), + args[:hvac_perf_data_heating_max_speed_cops].get.count(',')] + + error = (heating_data_points_lengths.uniq.size != 1) + errors << 'One or more detailed heating performance data arguments does not have enough comma-separated elements specified.' if error + end + + hvac_perf_data_cooling_args_initialized = [args[:hvac_perf_data_cooling_outdoor_temperatures].is_initialized, + args[:hvac_perf_data_cooling_min_speed_capacities].is_initialized, + args[:hvac_perf_data_cooling_max_speed_capacities].is_initialized, + args[:hvac_perf_data_cooling_min_speed_cops].is_initialized, + args[:hvac_perf_data_cooling_max_speed_cops].is_initialized] + error = (hvac_perf_data_cooling_args_initialized.uniq.size != 1) + errors << 'Did not specify all required cooling detailed performance data arguments.' if error + + if hvac_perf_data_cooling_args_initialized.uniq.size == 1 && hvac_perf_data_cooling_args_initialized.uniq[0] + cooling_data_points_lengths = [args[:hvac_perf_data_cooling_outdoor_temperatures].get.count(','), + args[:hvac_perf_data_cooling_min_speed_capacities].get.count(','), + args[:hvac_perf_data_cooling_max_speed_capacities].get.count(','), + args[:hvac_perf_data_cooling_min_speed_cops].get.count(','), + args[:hvac_perf_data_cooling_max_speed_cops].get.count(',')] + + error = (cooling_data_points_lengths.uniq.size != 1) + errors << 'One or more detailed cooling performance data arguments does not have enough comma-separated elements specified.' if error + end + emissions_args_initialized = [args[:emissions_scenario_names].is_initialized, args[:emissions_types].is_initialized, args[:emissions_electricity_units].is_initialized, @@ -5106,6 +5214,43 @@ def self.set_cooling_systems(hpxml_bldg, args) integrated_heating_system_capacity: integrated_heating_system_capacity, integrated_heating_system_efficiency_percent: integrated_heating_system_efficiency_percent, integrated_heating_system_fraction_heat_load_served: integrated_heating_system_fraction_heat_load_served) + + if args[:hvac_perf_data_capacity_type].is_initialized && [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include?(cooling_system_type) && compressor_type == HPXML::HVACCompressorTypeVariableSpeed + hvac_perf_data_capacity_type = args[:hvac_perf_data_capacity_type].get + hvac_perf_data_cooling_outdoor_temperatures = args[:hvac_perf_data_cooling_outdoor_temperatures].get.split(',').map(&:strip) + hvac_perf_data_cooling_min_speed_capacities = args[:hvac_perf_data_cooling_min_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_cooling_max_speed_capacities = args[:hvac_perf_data_cooling_max_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_cooling_min_speed_cops = args[:hvac_perf_data_cooling_min_speed_cops].get.split(',').map(&:strip) + hvac_perf_data_cooling_max_speed_cops = args[:hvac_perf_data_cooling_max_speed_cops].get.split(',').map(&:strip) + + clg_perf_data = hpxml_bldg.cooling_systems[0].cooling_detailed_performance_data + cooling_perf_data_data_points = hvac_perf_data_cooling_outdoor_temperatures.zip(hvac_perf_data_cooling_min_speed_capacities, + hvac_perf_data_cooling_max_speed_capacities, + hvac_perf_data_cooling_min_speed_cops, + hvac_perf_data_cooling_max_speed_cops) + cooling_perf_data_data_points.each do |cooling_perf_data_data_point| + outdoor_temperature, min_speed_cap_or_frac, max_speed_cap_or_frac, min_speed_cop, max_speed_cop = cooling_perf_data_data_point + + if hvac_perf_data_capacity_type == 'Absolute capacities' + min_speed_capacity = min_speed_cap_or_frac + max_speed_capacity = max_speed_cap_or_frac + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = min_speed_cap_or_frac + max_speed_capacity_fraction_of_nominal = max_speed_cap_or_frac + end + + clg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: min_speed_cop) + clg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: max_speed_cop) + end + end end def self.set_heat_pumps(hpxml_bldg, args) @@ -5250,6 +5395,80 @@ def self.set_heat_pumps(hpxml_bldg, args) crankcase_heater_watts: heat_pump_crankcase_heater_watts, primary_heating_system: primary_heating_system, primary_cooling_system: primary_cooling_system) + + if args[:hvac_perf_data_capacity_type].is_initialized && [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include?(heat_pump_type) && compressor_type == HPXML::HVACCompressorTypeVariableSpeed + hvac_perf_data_capacity_type = args[:hvac_perf_data_capacity_type].get + hvac_perf_data_heating_outdoor_temperatures = args[:hvac_perf_data_heating_outdoor_temperatures].get.split(',').map(&:strip) + hvac_perf_data_heating_min_speed_capacities = args[:hvac_perf_data_heating_min_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_heating_max_speed_capacities = args[:hvac_perf_data_heating_max_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_heating_min_speed_cops = args[:hvac_perf_data_heating_min_speed_cops].get.split(',').map(&:strip) + hvac_perf_data_heating_max_speed_cops = args[:hvac_perf_data_heating_max_speed_cops].get.split(',').map(&:strip) + + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + heating_perf_data_data_points = hvac_perf_data_heating_outdoor_temperatures.zip(hvac_perf_data_heating_min_speed_capacities, + hvac_perf_data_heating_max_speed_capacities, + hvac_perf_data_heating_min_speed_cops, + hvac_perf_data_heating_max_speed_cops) + heating_perf_data_data_points.each do |heating_perf_data_data_point| + outdoor_temperature, min_speed_cap_or_frac, max_speed_cap_or_frac, min_speed_cop, max_speed_cop = heating_perf_data_data_point + + if hvac_perf_data_capacity_type == 'Absolute capacities' + min_speed_capacity = min_speed_cap_or_frac + max_speed_capacity = max_speed_cap_or_frac + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = min_speed_cap_or_frac + max_speed_capacity_fraction_of_nominal = max_speed_cap_or_frac + end + + htg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: min_speed_cop) + htg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: max_speed_cop) + end + end + + if args[:hvac_perf_data_capacity_type].is_initialized + hvac_perf_data_capacity_type = args[:hvac_perf_data_capacity_type].get + hvac_perf_data_cooling_outdoor_temperatures = args[:hvac_perf_data_cooling_outdoor_temperatures].get.split(',').map(&:strip) + hvac_perf_data_cooling_min_speed_capacities = args[:hvac_perf_data_cooling_min_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_cooling_max_speed_capacities = args[:hvac_perf_data_cooling_max_speed_capacities].get.split(',').map(&:strip) + hvac_perf_data_cooling_min_speed_cops = args[:hvac_perf_data_cooling_min_speed_cops].get.split(',').map(&:strip) + hvac_perf_data_cooling_max_speed_cops = args[:hvac_perf_data_cooling_max_speed_cops].get.split(',').map(&:strip) + + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + cooling_perf_data_data_points = hvac_perf_data_cooling_outdoor_temperatures.zip(hvac_perf_data_cooling_min_speed_capacities, + hvac_perf_data_cooling_max_speed_capacities, + hvac_perf_data_cooling_min_speed_cops, + hvac_perf_data_cooling_max_speed_cops) + cooling_perf_data_data_points.each do |cooling_perf_data_data_point| + outdoor_temperature, min_speed_cap_or_frac, max_speed_cap_or_frac, min_speed_cop, max_speed_cop = cooling_perf_data_data_point + + if hvac_perf_data_capacity_type == 'Absolute capacities' + min_speed_capacity = min_speed_cap_or_frac + max_speed_capacity = max_speed_cap_or_frac + elsif hvac_perf_data_capacity_type == 'Normalized capacity fractions' + min_speed_capacity_fraction_of_nominal = min_speed_cap_or_frac + max_speed_capacity_fraction_of_nominal = max_speed_cap_or_frac + end + + clg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: min_speed_capacity, + capacity_fraction_of_nominal: min_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: min_speed_cop) + clg_perf_data.add(outdoor_temperature: outdoor_temperature, + capacity: max_speed_capacity, + capacity_fraction_of_nominal: max_speed_capacity_fraction_of_nominal, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: max_speed_cop) + end + end end def self.set_geothermal_loop(hpxml_bldg, args) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 1bc947c94..0f7703d69 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 85668c9a-823d-476d-ade1-3e1c9208cd22 - 2024-01-02T21:45:15Z + 54215a14-93ab-4f56-b310-4fdb6cc374e9 + 2024-01-17T16:52:35Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2885,6 +2885,111 @@ false false + + hvac_perf_data_capacity_type + HVAC Detailed Performance Data: Capacity Type + Type of capacity values for detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). + Choice + Absolute capacities + false + false + + + Absolute capacities + Absolute capacities + + + + + hvac_perf_data_heating_outdoor_temperatures + HVAC Detailed Performance Data: Heating Outdoor Temperatures + Outdoor temperatures of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 47 deg-F. At least two performance data points are required using a comma-separated list. + String + deg-F + false + false + + + hvac_perf_data_heating_min_speed_capacities + HVAC Detailed Performance Data: Heating Minimum Speed Capacities + Minimum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_heating_max_speed_capacities + HVAC Detailed Performance Data: Heating Maximum Speed Capacities + Maximum speed capacities of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_heating_min_speed_cops + HVAC Detailed Performance Data: Heating Minimum Speed COPs + Minimum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + W/W + false + false + + + hvac_perf_data_heating_max_speed_cops + HVAC Detailed Performance Data: Heating Maximum Speed COPs + Maximum speed efficiency COP values of heating detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + W/W + false + false + + + hvac_perf_data_cooling_outdoor_temperatures + HVAC Detailed Performance Data: Cooling Outdoor Temperatures + Outdoor temperatures of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). One of the outdoor temperatures must be 95 deg-F. At least two performance data points are required using a comma-separated list. + String + deg-F + false + false + + + hvac_perf_data_cooling_min_speed_capacities + HVAC Detailed Performance Data: Cooling Minimum Speed Capacities + Minimum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_cooling_max_speed_capacities + HVAC Detailed Performance Data: Cooling Maximum Speed Capacities + Maximum speed capacities of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + Btu/hr or Frac + false + false + + + hvac_perf_data_cooling_min_speed_cops + HVAC Detailed Performance Data: Cooling Minimum Speed COPs + Minimum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + W/W + false + false + + + hvac_perf_data_cooling_max_speed_cops + HVAC Detailed Performance Data: Cooling Maximum Speed COPs + Maximum speed efficiency COP values of cooling detailed performance data if available. Applies only to variable-speed air-source HVAC systems (central air conditioners, mini-split air conditioners, air-to-air heat pumps, and mini-split heat pumps). At least two performance data points are required using a comma-separated list. + String + W/W + false + false + geothermal_loop_configuration Geothermal Loop: Configuration @@ -3588,7 +3693,7 @@ mech_vent_flow_rate Mechanical Ventilation: Flow Rate - The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. + The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-mechanical-ventilation-fans'>HPXML Mechanical Ventilation Fans</a>) is used. Double CFM false @@ -3597,7 +3702,7 @@ mech_vent_hours_in_operation Mechanical Ventilation: Hours In Operation - The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. + The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-mechanical-ventilation-fans'>HPXML Mechanical Ventilation Fans</a>) is used. Double hrs/day false @@ -3645,7 +3750,7 @@ mech_vent_fan_power Mechanical Ventilation: Fan Power - The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. + The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-mechanical-ventilation-fans'>HPXML Mechanical Ventilation Fans</a>) is used. Double W false @@ -3865,7 +3970,7 @@ kitchen_fans_quantity Kitchen Fans: Quantity - The quantity of the kitchen fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The quantity of the kitchen fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Integer # false @@ -3874,7 +3979,7 @@ kitchen_fans_flow_rate Kitchen Fans: Flow Rate - The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double CFM false @@ -3883,7 +3988,7 @@ kitchen_fans_hours_in_operation Kitchen Fans: Hours In Operation - The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double hrs/day false @@ -3892,7 +3997,7 @@ kitchen_fans_power Kitchen Fans: Fan Power - The fan power of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The fan power of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double W false @@ -3901,7 +4006,7 @@ kitchen_fans_start_hour Kitchen Fans: Start Hour - The start hour of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The start hour of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Integer hr false @@ -3910,7 +4015,7 @@ bathroom_fans_quantity Bathroom Fans: Quantity - The quantity of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The quantity of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Integer # false @@ -3919,7 +4024,7 @@ bathroom_fans_flow_rate Bathroom Fans: Flow Rate - The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double CFM false @@ -3928,7 +4033,7 @@ bathroom_fans_hours_in_operation Bathroom Fans: Hours In Operation - The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double hrs/day false @@ -3937,7 +4042,7 @@ bathroom_fans_power Bathroom Fans: Fan Power - The fan power of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The fan power of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Double W false @@ -3946,7 +4051,7 @@ bathroom_fans_start_hour Bathroom Fans: Start Hour - The start hour of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. + The start hour of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-local-ventilation-fans'>HPXML Local Ventilation Fans</a>) is used. Integer hr false @@ -3974,7 +4079,7 @@ whole_house_fan_flow_rate Whole House Fan: Flow Rate - The flow rate of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. + The flow rate of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-whole-house-fans'>HPXML Whole House Fans</a>) is used. Double CFM false @@ -3983,7 +4088,7 @@ whole_house_fan_power Whole House Fan: Fan Power - The fan power of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. + The fan power of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-whole-house-fans'>HPXML Whole House Fans</a>) is used. Double W false @@ -4367,7 +4472,7 @@ hot_water_distribution_recirc_piping_length Hot Water Distribution: Recirculation Piping Length - If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. + If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation-in-unit'>Recirculation (In-Unit)</a>) is used. Double ft false @@ -4376,7 +4481,7 @@ hot_water_distribution_recirc_branch_piping_length Hot Water Distribution: Recirculation Branch Piping Length - If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. + If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation-in-unit'>Recirculation (In-Unit)</a>) is used. Double ft false @@ -4385,7 +4490,7 @@ hot_water_distribution_recirc_pump_power Hot Water Distribution: Recirculation Pump Power - If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. + If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation-in-unit'>Recirculation (In-Unit)</a>) is used. Double W false @@ -7005,7 +7110,7 @@ README.md md readme - 58036A34 + 3BA4B197
README.md.erb @@ -7022,7 +7127,7 @@ measure.rb rb script - 85851B5C + EEE134EA geometry.rb @@ -7034,7 +7139,7 @@ test_build_residential_hpxml.rb rb test - EDC4A88B + 03168F56 diff --git a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 064a3f443..11249a007 100644 --- a/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -184,6 +184,10 @@ def test_workflows 'error-sfd-with-shared-system.xml' => 'base-sfd.xml', 'error-rim-joist-height-but-no-assembly-r.xml' => 'base-sfd.xml', 'error-rim-joist-assembly-r-but-no-height.xml' => 'base-sfd.xml', + 'error-heating-perf-data-not-all-specified.xml' => 'base-sfd.xml', + 'error-heating-perf-data-not-all-same-size.xml' => 'base-sfd.xml', + 'error-cooling-perf-data-not-all-specified.xml' => 'base-sfd.xml', + 'error-cooling-perf-data-not-all-same-size.xml' => 'base-sfd.xml', 'error-emissions-args-not-all-specified.xml' => 'base-sfd.xml', 'error-emissions-args-not-all-same-size.xml' => 'base-sfd.xml', 'error-emissions-natural-gas-args-not-all-specified.xml' => 'base-sfd.xml', @@ -244,6 +248,10 @@ def test_workflows 'error-sfd-with-shared-system.xml' => ['Specified a shared system for a single-family detached unit.'], 'error-rim-joist-height-but-no-assembly-r.xml' => ['Specified a rim joist height but no rim joist assembly R-value.'], 'error-rim-joist-assembly-r-but-no-height.xml' => ['Specified a rim joist assembly R-value but no rim joist height.'], + 'error-heating-perf-data-not-all-specified.xml' => ['Did not specify all required heating detailed performance data arguments.'], + 'error-heating-perf-data-not-all-same-size.xml' => ['One or more detailed heating performance data arguments does not have enough comma-separated elements specified.'], + 'error-cooling-perf-data-not-all-specified.xml' => ['Did not specify all required cooling detailed performance data arguments.'], + 'error-cooling-perf-data-not-all-same-size.xml' => ['One or more detailed cooling performance data arguments does not have enough comma-separated elements specified.'], 'error-emissions-args-not-all-specified.xml' => ['Did not specify all required emissions arguments.'], 'error-emissions-args-not-all-same-size.xml' => ['One or more emissions arguments does not have enough comma-separated elements specified.'], 'error-emissions-natural-gas-args-not-all-specified.xml' => ['Did not specify fossil fuel emissions units for natural gas emissions values.'], @@ -1154,6 +1162,22 @@ def _set_measure_argument_values(hpxml_file, args) args.delete('rim_joist_assembly_r') elsif ['error-rim-joist-assembly-r-but-no-height.xml'].include? hpxml_file args.delete('geometry_rim_joist_height') + elsif ['error-heating-perf-data-not-all-specified.xml'].include? hpxml_file + args['hvac_perf_data_heating_outdoor_temperatures'] = '47.0' + elsif ['error-heating-perf-data-not-all-same-size.xml'].include? hpxml_file + args['hvac_perf_data_heating_outdoor_temperatures'] = '47.0' + args['hvac_perf_data_heating_min_speed_capacities'] = '10000, 4200' + args['hvac_perf_data_heating_max_speed_capacities'] = '36000, 24800' + args['hvac_perf_data_heating_min_speed_cops'] = '4.73, 1.84' + args['hvac_perf_data_heating_max_speed_cops'] = '3.44, 2.66' + elsif ['error-cooling-perf-data-not-all-specified.xml'].include? hpxml_file + args['hvac_perf_data_cooling_outdoor_temperatures'] = '95.0' + elsif ['error-cooling-perf-data-not-all-same-size.xml'].include? hpxml_file + args['hvac_perf_data_cooling_outdoor_temperatures'] = '95.0' + args['hvac_perf_data_cooling_min_speed_capacities'] = '11700, 13200' + args['hvac_perf_data_cooling_max_speed_capacities'] = '36000, 40000' + args['hvac_perf_data_cooling_min_speed_cops'] = '4.47, 6.34' + args['hvac_perf_data_cooling_max_speed_cops'] = '2.71, 3.53' elsif ['error-emissions-args-not-all-specified.xml'].include? hpxml_file args['emissions_scenario_names'] = 'Scenario1' elsif ['error-emissions-args-not-all-same-size.xml'].include? hpxml_file diff --git a/Changelog.md b/Changelog.md index 6dedcae74..7140a9ae9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,6 +10,7 @@ __New Features__ - Updated heating/cooling performance curves to reflect newer equipment. - BuildResidentialHPXML measure: - **Breaking change**: Replaces `roof_radiant_barrier`/`roof_radiant_barrier_grade` arguments with `radiant_barrier_attic_location`/`radiant_barrier_grade`. + - Adds detailed performance data inputs for variable-speed air source HVAC systems. - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - The "Geometry: Building Number of Units" input is now written to the HPXML `NumberofUnitsInBuilding` element. - Updates per ANSI/RESNET/ICC 301-2022: diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index cd78d6d7b..eb084df7d 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 56c9a811-7c64-4a38-8872-30c4ed5f687f - 2024-01-11T16:45:08Z + 4ae4d36e-900f-488c-811f-333903c6b555 + 2024-01-17T23:50:19Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - BAC68282 + 340760F9 battery.rb @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 55F50B58 + E08FC4C1 hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - C02EF09F + 8BD16928 hpxml_schematron/iso-schematron.xsd @@ -340,7 +340,7 @@ hvac.rb rb resource - 4CEA3B45 + 55CA34C5 hvac_sizing.rb @@ -574,7 +574,7 @@ xmlvalidator.rb rb resource - 84D0E4E1 + 87937B84 test_airflow.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 5E426D14 + 3B854F22 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 30dfb9e6c..301243ba7 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -421,8 +421,18 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh vent_program.addLine("Set Tnvsp = (#{htg_sp_sensor.name} + #{clg_sp_sensor.name}) / 2") else # No HVAC system; use the average of defaulted heating/cooling setpoints. - default_htg_sp = UnitConversions.convert(HVAC.get_default_heating_setpoint(HPXML::HVACControlTypeManual)[0], 'F', 'C') - default_clg_sp = UnitConversions.convert(HVAC.get_default_cooling_setpoint(HPXML::HVACControlTypeManual)[0], 'F', 'C') + htg_weekday_setpoints, htg_weekend_setpoints = HVAC.get_default_heating_setpoint(HPXML::HVACControlTypeManual, @eri_version) + clg_weekday_setpoints, clg_weekend_setpoints = HVAC.get_default_cooling_setpoint(HPXML::HVACControlTypeManual, @eri_version) + if htg_weekday_setpoints.split(', ').uniq.size == 1 && htg_weekend_setpoints.split(', ').uniq.size == 1 && htg_weekday_setpoints.split(', ').uniq == htg_weekend_setpoints.split(', ').uniq + default_htg_sp = UnitConversions.convert(htg_weekend_setpoints.split(', ').uniq[0].to_f, 'F', 'C') + else + fail 'Unexpected heating setpoints.' + end + if clg_weekday_setpoints.split(', ').uniq.size == 1 && clg_weekend_setpoints.split(', ').uniq.size == 1 && clg_weekday_setpoints.split(', ').uniq == clg_weekend_setpoints.split(', ').uniq + default_clg_sp = UnitConversions.convert(clg_weekend_setpoints.split(', ').uniq[0].to_f, 'F', 'C') + else + fail 'Unexpected cooling setpoints.' + end vent_program.addLine("Set Tnvsp = (#{default_htg_sp} + #{default_clg_sp}) / 2") end vent_program.addLine("Set NVavail = #{nv_avail_sensor.name}") diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index c1384ecd6..d6ad62c4a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -43,7 +43,7 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_partition_wall_mass(hpxml_bldg) apply_furniture_mass(hpxml_bldg) apply_hvac(runner, hpxml, hpxml_bldg, weather, convert_shared_systems) - apply_hvac_control(hpxml_bldg, schedules_file) + apply_hvac_control(hpxml_bldg, schedules_file, eri_version) apply_hvac_distribution(hpxml_bldg, ncfl, ncfl_ag) apply_hvac_location(hpxml_bldg) apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) @@ -1713,21 +1713,29 @@ def self.apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) end end - def self.apply_hvac_control(hpxml_bldg, schedules_file) + def self.apply_hvac_control(hpxml_bldg, schedules_file, eri_version) hpxml_bldg.hvac_controls.each do |hvac_control| schedules_file_includes_heating_setpoint_temp = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnHeatingSetpoint)) if hvac_control.heating_setpoint_temp.nil? && hvac_control.weekday_heating_setpoints.nil? && !schedules_file_includes_heating_setpoint_temp # No heating setpoints; set a default heating setpoint for, e.g., natural ventilation - htg_sp, _htg_setback_sp, _htg_setback_hrs_per_week, _htg_setback_start_hr = HVAC.get_default_heating_setpoint(HPXML::HVACControlTypeManual) - hvac_control.heating_setpoint_temp = htg_sp + htg_weekday_setpoints, htg_weekend_setpoints = HVAC.get_default_heating_setpoint(HPXML::HVACControlTypeManual, eri_version) + if htg_weekday_setpoints.split(', ').uniq.size == 1 && htg_weekend_setpoints.split(', ').uniq.size == 1 && htg_weekday_setpoints.split(', ').uniq == htg_weekend_setpoints.split(', ').uniq + hvac_control.heating_setpoint_temp = htg_weekend_setpoints.split(', ').uniq[0].to_f + else + fail 'Unexpected heating setpoints.' + end hvac_control.heating_setpoint_temp_isdefaulted = true end schedules_file_includes_cooling_setpoint_temp = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnCoolingSetpoint)) if hvac_control.cooling_setpoint_temp.nil? && hvac_control.weekday_cooling_setpoints.nil? && !schedules_file_includes_cooling_setpoint_temp # No cooling setpoints; set a default cooling setpoint for, e.g., natural ventilation - clg_sp, _clg_setup_sp, _clg_setup_hrs_per_week, _clg_setup_start_hr = HVAC.get_default_cooling_setpoint(HPXML::HVACControlTypeManual) - hvac_control.cooling_setpoint_temp = clg_sp + clg_weekday_setpoints, clg_weekend_setpoints = HVAC.get_default_cooling_setpoint(HPXML::HVACControlTypeManual, eri_version) + if clg_weekday_setpoints.split(', ').uniq.size == 1 && clg_weekend_setpoints.split(', ').uniq.size == 1 && clg_weekday_setpoints.split(', ').uniq == clg_weekend_setpoints.split(', ').uniq + hvac_control.cooling_setpoint_temp = clg_weekend_setpoints.split(', ').uniq[0].to_f + else + fail 'Unexpected cooling setpoints.' + end hvac_control.cooling_setpoint_temp_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 036bc132c..839e76cd8 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -803,10 +803,7 @@ [HeatingSystem] Expected 1 element(s) for xpath: ../../HVACControl - Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' - Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | SpaceHeater | Fireplace] - Expected 1 element(s) for xpath: FractionHeatLoadServed + Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | SpaceHeater | Fireplace] @@ -819,6 +816,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Percent efficiency should typically be greater than or equal to 0.95. Heating capacity should typically be greater than or equal to 1000 Btu/hr. @@ -829,6 +827,8 @@ [HeatingSystemType=Furnace] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="regular velocity" or text()="gravity"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] + Expected 0 or 1 element(s) for xpath: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: HeatingSystemType/Furnace/PilotLight Expected 1 element(s) for xpath: HeatingSystemFuel @@ -836,6 +836,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio @@ -857,6 +858,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts Expected extension/FanPowerWatts to be greater than or equal to 0 @@ -875,6 +877,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts Expected extension/FanPowerWatts to be greater than or equal to 0 @@ -884,28 +887,23 @@ - [HeatingSystemType=Boiler] - - Expected 0 or 1 element(s) for xpath: IsSharedSystem + [HeatingSystemType=InUnitBoiler] + + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] + Expected 0 or 1 element(s) for xpath: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: HeatingSystemType/Boiler/PilotLight Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' + Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 - - AFUE should typically be greater than or equal to 0.5. - - - - - [HeatingSystemType=InUnitBoiler] - - Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] - Expected 0 or 1 element(s) for xpath: HeatingCapacity + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: ElectricAuxiliaryEnergy Heating capacity should typically be greater than or equal to 1000 Btu/hr. + AFUE should typically be greater than or equal to 0.5. @@ -914,10 +912,21 @@ Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling" or text()="water loop"] | ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="fan coil"] + Expected 0 or 1 element(s) for xpath: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' + Expected 1 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 + Expected 0 or 1 element(s) for xpath: HeatingSystemType/Boiler/PilotLight + Expected 1 element(s) for xpath: HeatingSystemFuel + Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' + Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value + Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: ElectricAuxiliaryEnergy | extension/SharedLoopWatts Expected extension/SharedLoopWatts to be greater than or equal to 0 + + AFUE should typically be greater than or equal to 0.5. @@ -947,6 +956,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts Expected extension/FanPowerWatts to be greater than or equal to 0 @@ -964,6 +974,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts Expected extension/FanPowerWatts to be greater than or equal to 0 @@ -982,6 +993,7 @@ Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 + Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts Expected extension/FanPowerWatts to be greater than or equal to 0 Heating capacity should typically be greater than or equal to 1000 Btu/hr. @@ -1000,13 +1012,8 @@ [CoolingSystem] Expected 1 element(s) for xpath: ../../HVACControl - Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: CoolingSystemType Expected CoolingSystemType to be 'central air conditioner' or 'room air conditioner' or 'evaporative cooler' or 'mini-split' or 'chiller' or 'cooling tower' or 'packaged terminal air conditioner' - Expected 1 element(s) for xpath: CoolingSystemFuel - Expected CoolingSystemFuel to be 'electricity' - Expected 1 element(s) for xpath: FractionCoolLoadServed @@ -1014,10 +1021,15 @@ [CoolingSystemType=CentralAC] 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: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: CoolingCapacity Expected 0 or 1 element(s) for xpath: CompressorType Expected CompressorType to be 'single stage' or 'two stage' or 'variable speed' + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction Expected SensibleHeatFraction to be greater than 0.5 @@ -1044,7 +1056,10 @@ [CoolingSystemType=PTACorRoomAC] Expected 0 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction Expected SensibleHeatFraction to be greater than 0.5 @@ -1059,25 +1074,15 @@ - - [CoolingSystemType=HasIntegratedHeatingSystem] - - Expected 1 element(s) for xpath: IntegratedHeatingSystemFractionHeatLoadServed - Expected 0 or 1 element(s) for xpath: IntegratedHeatingSystemCapacity - Expected 1 element(s) for xpath: IntegratedHeatingSystemAnnualEfficiency[Units="Percent"] - Expected IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value to be less than or equal to 1 - - Percent efficiency should typically be greater than or equal to 0.5. - Integrated Heating capacity should typically be greater than or equal to 1000 Btu/hr. - - - [CoolingSystemType=EvapCooler] Expected 0 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: DistributionSystem + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Cooling capacity should typically be greater than or equal to 1000 Btu/hr. @@ -1088,10 +1093,15 @@ [CoolingSystemType=MiniSplitAC] Expected 0 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: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 0 or 1 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: CoolingCapacity Expected 0 or 1 element(s) for xpath: CompressorType Expected CompressorType to be 'variable speed' + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction Expected SensibleHeatFraction to be greater than 0.5 @@ -1123,7 +1133,10 @@ Expected 1 element(s) for xpath: IsSharedSystem[text()="true"] Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' Expected 1 element(s) for xpath: CoolingCapacity + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="kW/ton"]/Value Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 1 element(s) for xpath: extension/SharedLoopWatts @@ -1158,6 +1171,9 @@ Expected 1 element(s) for xpath: IsSharedSystem[text()="true"] Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 + Expected 1 element(s) for xpath: CoolingSystemFuel + Expected CoolingSystemFuel to be 'electricity' + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 1 element(s) for xpath: extension/SharedLoopWatts Expected extension/SharedLoopWatts to be greater than or equal to 0 @@ -1166,18 +1182,25 @@ + + [CoolingSystem=HasIntegratedHeatingSystem] + + Expected 1 element(s) for xpath: IntegratedHeatingSystemFractionHeatLoadServed + Expected 0 or 1 element(s) for xpath: IntegratedHeatingSystemCapacity + Expected 1 element(s) for xpath: IntegratedHeatingSystemAnnualEfficiency[Units="Percent"] + Expected IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value to be less than or equal to 1 + + Percent efficiency should typically be greater than or equal to 0.5. + Integrated Heating capacity should typically be greater than or equal to 1000 Btu/hr. + + + [HeatPump] Expected 1 element(s) for xpath: ../../HVACControl - Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: HeatPumpType Expected HeatPumpType to be 'air-to-air' or 'mini-split' or 'ground-to-air' or 'water-loop-to-air' or 'packaged terminal heat pump' or 'room air conditioner with reverse cycle' - Expected 1 element(s) for xpath: HeatPumpFuel - Expected HeatPumpFuel to be 'electricity' - Expected 0 or 1 element(s) for xpath: BackupType - Expected BackupType to be 'integrated' or 'separate' @@ -1185,7 +1208,11 @@ [HeatPumpType=AirSource] 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: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: HeatPumpFuel + Expected HeatPumpFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 0 or 1 element(s) for xpath: extension/HeatingCapacityRetention | HeatingCapacity17F Expected HeatingCapacity17F to be less than or equal to HeatingCapacity @@ -1195,6 +1222,8 @@ Expected 0 or 1 element(s) for xpath: CompressorLockoutTemperature Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected CoolingSensibleHeatFraction to be greater than 0.5 + Expected 0 or 1 element(s) for xpath: BackupType + Expected BackupType to be 'integrated' or 'separate' Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value @@ -1224,7 +1253,11 @@ [HeatPumpType=MiniSplit] Expected 0 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: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 0 or 1 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: HeatPumpFuel + Expected HeatPumpFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 0 or 1 element(s) for xpath: extension/HeatingCapacityRetention | HeatingCapacity17F Expected HeatingCapacity17F to be less than or equal to HeatingCapacity @@ -1234,6 +1267,8 @@ Expected 0 or 1 element(s) for xpath: CompressorLockoutTemperature Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected CoolingSensibleHeatFraction to be greater than 0.5 + Expected 0 or 1 element(s) for xpath: BackupType + Expected BackupType to be 'integrated' or 'separate' Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value @@ -1263,13 +1298,19 @@ [HeatPumpType=GroundSource] 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 0 or 1 element(s) for xpath: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: DistributionSystem - Expected 0 element(s) for xpath: BackupHeatingSwitchoverTemperature + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 1 element(s) for xpath: HeatPumpFuel + Expected HeatPumpFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 0 or 1 element(s) for xpath: CoolingCapacity Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected CoolingSensibleHeatFraction to be greater than 0.5 + Expected 0 or 1 element(s) for xpath: BackupType + Expected BackupType to be 'integrated' or 'separate' + Expected 0 element(s) for xpath: BackupHeatingSwitchoverTemperature Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value @@ -1310,6 +1351,12 @@ Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="regular velocity"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 1 or more element(s) for xpath: ../HeatingSystem[HeatingSystemType/Boiler and IsSharedSystem="true"] | ../CoolingSystem[(CoolingSystemType="chiller" or CoolingSystemType="cooling tower") and IsSharedSystem="true"] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution[HydronicDistributionType="water loop"] + Expected 0 or 1 element(s) for xpath: UnitLocation + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' + Expected 1 element(s) for xpath: HeatPumpFuel + Expected HeatPumpFuel to be 'electricity' + Expected 0 or 1 element(s) for xpath: BackupType + Expected BackupType to be 'integrated' or 'separate' @@ -1317,6 +1364,8 @@ [HeatPumpType=PTHPorRoomACwithReverseCycle] Expected 0 element(s) for xpath: DistributionSystem + Expected 1 element(s) for xpath: HeatPumpFuel + Expected HeatPumpFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 0 or 1 element(s) for xpath: extension/HeatingCapacityRetention | HeatingCapacity17F Expected HeatingCapacity17F to be less than or equal to HeatingCapacity @@ -1326,6 +1375,8 @@ Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected CoolingSensibleHeatFraction to be greater than 0.5 + Expected 0 or 1 element(s) for xpath: BackupType + Expected BackupType to be 'integrated' or 'separate' Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 0 or 1 element(s) for xpath: extension/CrankcaseHeaterPowerWatts @@ -1347,6 +1398,18 @@ + + [HeatPumpBackup] + + Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | CompressorLockoutTemperature + Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | BackupHeatingLockoutTemperature + Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature + + BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. + BackupHeatingLockoutTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. + + + [HeatPumpBackup=Integrated] @@ -1372,18 +1435,6 @@ - - [HeatPumpBackup] - - Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | CompressorLockoutTemperature - Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | BackupHeatingLockoutTemperature - Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature - - BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. - BackupHeatingLockoutTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. - - - [HeatingDetailedPerformanceData] @@ -1639,18 +1690,42 @@ [MechanicalVentilation] - Expected 0 or 1 element(s) for xpath: IsSharedSystem - Expected 1 element(s) for xpath: FanType + Expected 1 element(s) for xpath: FanType Expected FanType to be 'energy recovery ventilator' or 'heat recovery ventilator' or 'exhaust only' or 'supply only' or 'balanced' or 'central fan integrated supply' + + + + + [MechanicalVentilationType=ExhaustOnly] + + Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation Expected 0 or 1 element(s) for xpath: HoursInOperation Expected 0 or 1 element(s) for xpath: FanPower + Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency + Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency - [MechanicalVentilationType=ExhaustSupplyBalanced] - + [MechanicalVentilationType=SupplyOnly] + + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation + Expected 0 or 1 element(s) for xpath: HoursInOperation + Expected 0 or 1 element(s) for xpath: FanPower + Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency + Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency + + + + + [MechanicalVentilationType=Balanced] + + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation + Expected 0 or 1 element(s) for xpath: HoursInOperation + Expected 0 or 1 element(s) for xpath: FanPower Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency @@ -1659,16 +1734,24 @@ [MechanicalVentilationType=HRV] + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation + Expected 0 or 1 element(s) for xpath: HoursInOperation Expected 0 element(s) for xpath: AdjustedTotalRecoveryEfficiency | TotalRecoveryEfficiency Expected 1 element(s) for xpath: AdjustedSensibleRecoveryEfficiency | SensibleRecoveryEfficiency + Expected 0 or 1 element(s) for xpath: FanPower [MechanicalVentilationType=ERV] + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation + Expected 0 or 1 element(s) for xpath: HoursInOperation Expected 1 element(s) for xpath: AdjustedTotalRecoveryEfficiency | TotalRecoveryEfficiency Expected 1 element(s) for xpath: AdjustedSensibleRecoveryEfficiency | SensibleRecoveryEfficiency + Expected 0 or 1 element(s) for xpath: FanPower Adjusted total recovery efficiency should typically be at least half of the adjusted sensible recovery efficiency. Total recovery efficiency should typically be at least half of the sensible recovery efficiency. @@ -1678,12 +1761,15 @@ [MechanicalVentilationType=CFIS] - Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency - Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency + Expected 0 element(s) for xpath: IsSharedSystem[text()="true"] Expected 0 or 1 element(s) for xpath: CFISControls/AdditionalRuntimeOperatingMode Expected CFISControls/AdditionalRuntimeOperatingMode to be 'air handler fan' or 'supplemental fan' + Expected 0 or more element(s) for xpath: RatedFlowRate | CalculatedFlowRate | TestedFlowRate | DeliveredVentilation + Expected 0 or 1 element(s) for xpath: HoursInOperation + Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency + Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency + Expected 0 or 1 element(s) for xpath: FanPower Expected 1 element(s) for xpath: AttachedToHVACDistributionSystem - Expected 0 element(s) for xpath: IsSharedSystem[text()="true"] Expected 0 or 1 element(s) for xpath: extension/VentilationOnlyModeAirflowFraction Expected extension/VentilationOnlyModeAirflowFraction to be greater than or equal to 0 Expected extension/VentilationOnlyModeAirflowFraction to be less than or equal to 1 @@ -1773,25 +1859,8 @@ Expected 1 element(s) for xpath: ../HotWaterDistribution Expected 1 or more element(s) for xpath: ../WaterFixture - Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: WaterHeaterType Expected WaterHeaterType to be 'storage water heater' or 'instantaneous water heater' or 'heat pump water heater' or 'space-heating boiler with storage tank' or 'space-heating boiler with tankless coil' - Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: FractionDHWLoadServed - Expected 0 or 1 element(s) for xpath: HotWaterTemperature - Expected 0 or 1 element(s) for xpath: UsesDesuperheater - - Hot water setpoint should typically be greater than or equal to 110 deg-F. - - - - - [WaterHeatingSystemType=Shared] - - 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 @@ -1800,7 +1869,11 @@ Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 0 or 1 element(s) for xpath: TankVolume + Expected 1 element(s) for xpath: FractionDHWLoadServed Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: UniformEnergyFactor | EnergyFactor Expected UniformEnergyFactor to be less than 1 @@ -1810,12 +1883,15 @@ Expected RecoveryEfficiency to be greater than EnergyFactor Expected RecoveryEfficiency to be greater than UniformEnergyFactor Expected 0 or 1 element(s) for xpath: WaterHeaterInsulation/Jacket/JacketRValue + Expected 0 or 1 element(s) for xpath: HotWaterTemperature + Expected 0 or 1 element(s) for xpath: UsesDesuperheater Expected 0 or 1 element(s) for xpath: extension/TankModelType Expected extension/TankModelType to be 'mixed' or 'stratified' UniformEnergyFactor should typically be greater than or equal to 0.45. EnergyFactor should typically be greater than or equal to 0.45. Heating capacity should typically be greater than or equal to 1000 Btu/hr. + Hot water setpoint should typically be greater than or equal to 110 deg-F. @@ -1824,13 +1900,20 @@ Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 0 or 1 element(s) for xpath: PerformanceAdjustment + Expected 1 element(s) for xpath: FractionDHWLoadServed Expected 1 element(s) for xpath: UniformEnergyFactor | EnergyFactor Expected UniformEnergyFactor to be less than 1 Expected EnergyFactor to be less than 1 + Expected 0 or 1 element(s) for xpath: HotWaterTemperature + Expected 0 or 1 element(s) for xpath: UsesDesuperheater UniformEnergyFactor should typically be greater than or equal to 0.45. EnergyFactor should typically be greater than or equal to 0.45. + Hot water setpoint should typically be greater than or equal to 110 deg-F. @@ -1838,33 +1921,64 @@ [WaterHeatingSystemType=HeatPump] Expected 1 element(s) for xpath: FuelType[text()="electricity"] + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: TankVolume + Expected 1 element(s) for xpath: FractionDHWLoadServed Expected 1 element(s) for xpath: UniformEnergyFactor | EnergyFactor + Expected UniformEnergyFactor to be greater than 1 + Expected EnergyFactor to be greater than 1 Expected 0 or 1 element(s) for xpath: HPWHOperatingMode Expected HPWHOperatingMode to be 'hybrid/auto' or 'heat pump only' Expected 0 or more element(s) for xpath: UsageBin | FirstHourRating - Expected UniformEnergyFactor to be greater than 1 - Expected EnergyFactor to be greater than 1 Expected 0 or 1 element(s) for xpath: WaterHeaterInsulation/Jacket/JacketRValue + Expected 0 or 1 element(s) for xpath: HotWaterTemperature + Expected 0 or 1 element(s) for xpath: UsesDesuperheater extension/OperatingMode has been replaced by HPWHOperatingMode + + Hot water setpoint should typically be greater than or equal to 110 deg-F. [WaterHeatingSystemType=CombiIndirect] - Expected 1 element(s) for xpath: RelatedHVACSystem + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: TankVolume + Expected 1 element(s) for xpath: FractionDHWLoadServed Expected 0 or 1 element(s) for xpath: WaterHeaterInsulation/Jacket/JacketRValue Expected 0 or 1 element(s) for xpath: StandbyLoss[Units="F/hr"]/Value + Expected 0 or 1 element(s) for xpath: HotWaterTemperature + Expected 1 element(s) for xpath: RelatedHVACSystem + + Hot water setpoint should typically be greater than or equal to 110 deg-F. [WaterHeatingSystemType=CombiTanklessCoil] + Expected 0 or 1 element(s) for xpath: Location + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected 0 or 1 element(s) for xpath: IsSharedSystem + Expected 1 element(s) for xpath: FractionDHWLoadServed + Expected 0 or 1 element(s) for xpath: HotWaterTemperature Expected 1 element(s) for xpath: RelatedHVACSystem + + Hot water setpoint should typically be greater than or equal to 110 deg-F. + + + + + [WaterHeatingSystem=Shared] + + 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 @@ -1944,16 +2058,15 @@ [SolarThermalSystem] - Expected 1 element(s) for xpath: SystemType - Expected SystemType to be 'hot water' Expected 1 element(s) for xpath: CollectorArea | SolarFraction - Expected SolarFraction to be less than 1 [SolarThermalSystemType=Detailed] + Expected 1 element(s) for xpath: SystemType + Expected SystemType to be 'hot water' Expected 1 element(s) for xpath: CollectorLoopType Expected CollectorLoopType to be 'liquid indirect' or 'liquid direct' or 'passive thermosyphon' Expected 1 element(s) for xpath: CollectorType @@ -1970,6 +2083,9 @@ [SolarThermalSystemType=Simple] + Expected 1 element(s) for xpath: SystemType + Expected SystemType to be 'hot water' + Expected SolarFraction to be less than 1 Expected 0 or 1 element(s) for xpath: ConnectedTo diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 410a9ccc6..4abc758fd 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -1059,36 +1059,40 @@ def self.get_cooling_setpoints(hvac_control, has_ceiling_fan, year, weather) return clg_weekday_setpoints, clg_weekend_setpoints end - def self.get_default_heating_setpoint(control_type) + def self.get_default_heating_setpoint(control_type, eri_version) # Per ANSI/RESNET/ICC 301 - htg_sp = 68.0 # F - htg_setback_sp = nil - htg_setback_hrs_per_week = nil - htg_setback_start_hr = nil + htg_weekday_setpoints = '68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68' + htg_weekend_setpoints = '68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68' if control_type == HPXML::HVACControlTypeProgrammable - htg_setback_sp = 66.0 # F - htg_setback_hrs_per_week = 7 * 7 # 11 p.m. to 5:59 a.m., 7 days a week - htg_setback_start_hr = 23 # 11 p.m. + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + htg_weekday_setpoints = '66, 66, 66, 66, 66, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66' + htg_weekend_setpoints = '66, 66, 66, 66, 66, 67, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66' + else + htg_weekday_setpoints = '66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66' + htg_weekend_setpoints = '66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 66' + end elsif control_type != HPXML::HVACControlTypeManual fail "Unexpected control type #{control_type}." end - return htg_sp, htg_setback_sp, htg_setback_hrs_per_week, htg_setback_start_hr + return htg_weekday_setpoints, htg_weekend_setpoints end - def self.get_default_cooling_setpoint(control_type) + def self.get_default_cooling_setpoint(control_type, eri_version) # Per ANSI/RESNET/ICC 301 - clg_sp = 78.0 # F - clg_setup_sp = nil - clg_setup_hrs_per_week = nil - clg_setup_start_hr = nil + clg_weekday_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78' + clg_weekend_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78' if control_type == HPXML::HVACControlTypeProgrammable - clg_setup_sp = 80.0 # F - clg_setup_hrs_per_week = 6 * 7 # 9 a.m. to 2:59 p.m., 7 days a week - clg_setup_start_hr = 9 # 9 a.m. + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + clg_weekday_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 80, 80, 80, 80, 80, 79, 78, 78, 78, 78, 78, 78, 78, 78, 78' + clg_weekend_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 80, 80, 80, 80, 80, 79, 78, 78, 78, 78, 78, 78, 78, 78, 78' + else + clg_weekday_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 78, 78, 78, 78' + clg_weekend_setpoints = '78, 78, 78, 78, 78, 78, 78, 78, 78, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 78, 78, 78, 78' + end elsif control_type != HPXML::HVACControlTypeManual fail "Unexpected control type #{control_type}." end - return clg_sp, clg_setup_sp, clg_setup_hrs_per_week, clg_setup_start_hr + return clg_weekday_setpoints, clg_weekend_setpoints end def self.get_default_heating_capacity_retention(compressor_type, hspf = nil) diff --git a/HPXMLtoOpenStudio/resources/xmlvalidator.rb b/HPXMLtoOpenStudio/resources/xmlvalidator.rb index 2a20985c0..d33870981 100644 --- a/HPXMLtoOpenStudio/resources/xmlvalidator.rb +++ b/HPXMLtoOpenStudio/resources/xmlvalidator.rb @@ -21,13 +21,7 @@ def self.validate_against_schema(hpxml_path, validator, errors = [], warnings = end def self.get_schematron_validator(schematron_path) - # First create XSLT at our specified output path to avoid possible errors due - # to https://github.com/NREL/OpenStudio/issues/4824. - xslt_dir = Dir.mktmpdir('xmlvalidation-') - OpenStudio::XMLValidator::schematronToXslt(schematron_path, xslt_dir) - xslt_path = File.join(xslt_dir, File.basename(schematron_path, '.xml') + '_stylesheet.xslt') - - return OpenStudio::XMLValidator.new(xslt_path) + return OpenStudio::XMLValidator.new(schematron_path) end def self.validate_against_schematron(hpxml_path, validator, hpxml_doc, errors = [], warnings = []) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 74a0b5c93..a6f847233 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -218,7 +218,7 @@ def test_schema_schematron_error_messages 'multifamily-reference-surface' => ['There are references to "other heated space" but ResidentialFacilityType is not "single-family attached" or "apartment unit".'], 'multifamily-reference-water-heater' => ['There are references to "other non-freezing space" but ResidentialFacilityType is not "single-family attached" or "apartment unit".'], 'refrigerator-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], - 'solar-fraction-one' => ['Expected SolarFraction to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem, id: "SolarThermalSystem1"]'], + 'solar-fraction-one' => ['Expected SolarFraction to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem[SolarFraction], id: "SolarThermalSystem1"]'], 'water-heater-location' => ['A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type.'], 'water-heater-location-other' => ["Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], 'water-heater-recovery-efficiency' => ['Expected RecoveryEfficiency to be greater than EnergyFactor'] } @@ -400,7 +400,6 @@ def test_schema_schematron_error_messages elsif ['hvac-gshp-autosized-count-not-rectangle'].include? error_case 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 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 11895fbe2..25af93816 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -539,8 +539,8 @@ Building occupancy is entered in ``/HPXML/Building/BuildingDetails/BuildingSumma \- **single-family attached or apartment unit**: NumberofBedrooms = -0.68 + 1.09 * NumberofResidents - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 25 of the `2010 BAHSP `_ are used: "0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figures 25 of the `2010 BAHSP `_ are used: "0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". HPXML Building Construction *************************** @@ -571,8 +571,15 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu HPXML Schedules *************** -Schedules for a variety of building features can be 1) specified via simple inputs, 2) specified via detailed inputs, or 3) defaulted. -It is allowed to use simple, detailed, and defaulted values in the same HPXML run. +Schedules for a variety of building features can be defined using: + +- :ref:`schedules_simple` +- :ref:`schedules_detailed` +- :ref:`schedules_default` + +It is allowed to use simple, detailed, and defaulted values in the same HPXML file. + +.. _schedules_simple: Simple Schedule Inputs ~~~~~~~~~~~~~~~~~~~~~~ @@ -580,7 +587,7 @@ Simple Schedule Inputs Simple schedule inputs are available as weekday/weekend fractions and monthly multipliers for a variety of building characteristics. For example, see the ``WeekdayScheduleFractions``, ``WeekendScheduleFractions``, and ``MonthlyScheduleMultipliers`` inputs for :ref:`buildingoccupancy`. -.. _detailedschedules: +.. _schedules_detailed: Detailed Schedule Inputs ~~~~~~~~~~~~~~~~~~~~~~~~ @@ -646,6 +653,8 @@ See :ref:`buildingoccupancy` and :ref:`buildingsite` for more information. For simulations with daylight saving enabled (which is the default), EnergyPlus will skip forward an hour in the CSV on the "spring forward" day and repeat an hour on the "fall back" day. +.. _schedules_default: + Default Schedules ~~~~~~~~~~~~~~~~~ @@ -887,22 +896,14 @@ The presence of a flue or chimney with combustion air from conditioned space can HPXML Attics ************ -If the dwelling unit has an unvented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="false"]]``. - - ============================ ======= ===== =========== ======== ======= =============================================== - Element Type Units Constraints Required Default Notes - ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? - ============================ ======= ===== =========== ======== ======= =============================================== - -If the dwelling unit has a vented attic, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]``. +If the dwelling unit has a vented attic, attic ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate``. - ================================= ====== ===== =========== ======== ========== ========================== - Element Type Units Constraints Required Default Notes - ================================= ====== ===== =========== ======== ========== ========================== - ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``VentilationRate/Value`` double > 0 No 1/300 [#]_ Value for ventilation rate - ================================= ====== ===== =========== ======== ========== ========================== + ================= ====== ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================= ====== ===== =========== ======== ========== ========================== + ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``Value`` double > 0 No 1/300 [#]_ Value for ventilation rate + ================= ====== ===== =========== ======== ========== ========================== .. [#] UnitofMeasure choices are "SLA" (specific leakage area) or "ACHnatural" (natural air changes per hour). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. @@ -910,48 +911,28 @@ If the dwelling unit has a vented attic, additional information is entered in `` HPXML Foundations ***************** -If the dwelling unit has an unconditioned basement, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Basement[Conditioned='false']]``. +If the dwelling unit has a vented crawlspace, crawlspace ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]/VentilationRate``. - ============================ ======= ===== =========== ======== ======= =============================================== - Element Type Units Constraints Required Default Notes - ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? - ============================ ======= ===== =========== ======== ======= =============================================== - -If the dwelling unit has an unvented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented='false']]``. - - ============================ ======= ===== =========== ======== ======= =============================================== - Element Type Units Constraints Required Default Notes - ============================ ======= ===== =========== ======== ======= =============================================== - ``WithinInfiltrationVolume`` boolean No false Included in the air infiltration measurement? - ============================ ======= ===== =========== ======== ======= =============================================== - -If the dwelling unit has a vented crawlspace, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]``. - - ================================= ======= ===== =========== ======== ========== ========================== - Element Type Units Constraints Required Default Notes - ================================= ======= ===== =========== ======== ========== ========================== - ``VentilationRate/UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate - ``VentilationRate/Value`` double > 0 No 1/150 [#]_ Value for ventilation rate - ================================= ======= ===== =========== ======== ========== ========================== + ================= ====== ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================= ====== ===== =========== ======== ========== ========================== + ``UnitofMeasure`` string See [#]_ No SLA Units for ventilation rate + ``Value`` double > 0 No 1/150 [#]_ Value for ventilation rate + ================= ====== ===== =========== ======== ========== ========================== .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. -If the dwelling has a manufactured home belly-and-wing foundation, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing``. - - ================================= ======= ===== =========== ======== ========== ========================== - Element Type Units Constraints Required Default Notes - ================================= ======= ===== =========== ======== ========== ========================== - ``SkirtPresent`` boolean No true Presence of foundation skirt [#]_ - ================================= ======= ===== =========== ======== ========== ========================== - - .. [#] When a skirt is present, the floors above that foundation are modeled without exposure to wind. +If the dwelling has a manufactured home belly-and-wing foundation, whether a +skirt is present can be optionally entered in +``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing/SkirtPresent``. +The default, if that value is missing, is to assume there is a skirt present and +the floors above that foundation do not have exposure to the wind. HPXML Roofs *********** -Each pitched or flat roof surface that is exposed to ambient conditions is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Roofs/Roof``. +Each pitched or flat roof surface that is exposed to ambient conditions is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Roofs/Roof``. For a multifamily building where the dwelling unit has another dwelling unit above it, the surface between the two dwelling units should be considered a ``Floor`` and not a ``Roof``. @@ -1009,7 +990,7 @@ For a multifamily building where the dwelling unit has another dwelling unit abo HPXML Rim Joists **************** -Each rim joist surface (i.e., the perimeter of floor joists typically found between stories of a building or on top of a foundation wall) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/RimJoists/RimJoist``. +Each rim joist surface (i.e., the perimeter of floor joists typically found between stories of a building or on top of a foundation wall) is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/RimJoists/RimJoist``. ====================================== ================= ================ ======================== ======== =========== ============================== Element Type Units Constraints Required Default Notes @@ -1052,7 +1033,7 @@ Each rim joist surface (i.e., the perimeter of floor joists typically found betw HPXML Walls *********** -Each wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. +Each wall surface is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. ====================================== ================= ================ ======================== ============= =========== ==================================== Element Type Units Constraints Required Default Notes @@ -1104,7 +1085,7 @@ Each wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/W HPXML Foundation Walls ********************** -Each foundation wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``. +Each foundation wall surface is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``. Any wall surface in contact with the ground is considered a foundation wall. ============================================================== ================= ================ ======================== ========= ============== ==================================== @@ -1163,7 +1144,7 @@ If insulation layers are provided, additional information is entered in each ``F HPXML Floors ************ -Each floor/ceiling surface that is not in contact with the ground (Slab) nor adjacent to ambient conditions above (Roof) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Floors/Floor``. +Each floor/ceiling surface that is not in contact with the ground (Slab) nor adjacent to ambient conditions above (Roof) is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Floors/Floor``. ====================================== ======== ============ =========== ======== ======== ============================ Element Type Units Constraints Required Default Notes @@ -1245,7 +1226,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and HPXML Windows ************* -Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``. +Each window or glass door area is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``. ============================================ ================= ================ ======================== ======== ========= ============================================================= Element Type Units Constraints Required Default Notes @@ -1280,7 +1261,7 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail .. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants. If a ``Window`` represents a single window, the value should be 0 or 1. - If a ``Window`` represents multiple windows (e.g., 4), the value should be between 0 and 1 (e.g., 0, 0.25, 0.5, 0.75, or 1). + If a ``Window`` represents multiple windows, the value is calculated as the total window area for any operable windows divided by the total window area. The total open window area for natural ventilation is calculated using A) the operable fraction, B) the assumption that 50% of the area of operable windows can be open, and C) the assumption that 20% of that openable area is actually opened by occupants whenever outdoor conditions are favorable for cooling. .. [#] AttachedToWall must reference a ``Wall`` or ``FoundationWall``. @@ -1357,7 +1338,7 @@ If overhangs are specified, additional information is entered in ``Overhangs``. HPXML Skylights *************** -Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``. +Each skylight is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``. ============================================ ================= ================ ======================== ======== ========= ============================================================= Element Type Units Constraints Required Default Notes @@ -1439,7 +1420,7 @@ If UFactor and SHGC are not provided, they are defaulted as follows: HPXML Doors *********** -Each opaque door is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Doors/Door``. +Each opaque door is entered as a ``/HPXML/Building/BuildingDetails/Enclosure/Doors/Door``. ============================================ ================= ============ ======================== ======== ========= ============================== Element Type Units Constraints Required Default Notes @@ -1498,149 +1479,219 @@ The dwelling unit's systems are entered in ``/HPXML/Building/BuildingDetails/Sys HPXML Heating Systems ********************* -Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. +The following heating system types can be modeled: - ================================= ======== ====== =============== ======== ============== =============================== - Element Type Units Constraints Required Default Notes - ================================= ======== ====== =============== ======== ============== =============================== - ``SystemIdentifier`` id Yes Unique identifier - ``UnitLocation`` string See [#]_ No See [#]_ Location of heating system (e.g., air handler) - ``HeatingSystemType`` element See [#]_ Yes Type of heating system - ``HeatingSystemFuel`` string See [#]_ Yes Fuel type - ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity - ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served - ================================= ======== ====== =============== ======== ============== =============================== +- :ref:`hvac_heating_elec_resistance` +- :ref:`hvac_heating_furnace` +- :ref:`hvac_heating_wall_furnace` +- :ref:`hvac_heating_floor_furnace` +- :ref:`hvac_heating_boiler` +- :ref:`hvac_heating_shared_boiler` +- :ref:`hvac_heating_stove` +- :ref:`hvac_heating_space_heater` +- :ref:`hvac_heating_fireplace` - .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". - .. [#] If UnitLocation not provided, defaults based on the distribution system: - - \- **none**: "conditioned space" - - \- **air**: supply duct location with the largest area, otherwise "conditioned space" - - \- **hydronic**: same default logic as :ref:`waterheatingsystems` - - \- **dse**: "conditioned space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" - - .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``SpaceHeater``, or ``Fireplace``. - .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". - For ``ElectricResistance``, "electricity" is required. - .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. - .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. - .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. - Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. +.. _hvac_heating_elec_resistance: Electric Resistance ~~~~~~~~~~~~~~~~~~~ -If electric resistance heating is specified, additional information is entered in ``HeatingSystem``. +Each electric resistance heating system is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. - ================================================== ====== ===== =========== ======== ======= ========== - Element Type Units Constraints Required Default Notes - ================================================== ====== ===== =========== ======== ======= ========== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency - ================================================== ====== ===== =========== ======== ======= ========== + ================================================== ======= ====== ================== ======== ============== ========== + Element Type Units Constraints Required Default Notes + ================================================== ======= ====== ================== ======== ============== ========== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/ElectricResistance`` element Yes Type of heating system + ``HeatingSystemFuel`` string electricity Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ================================================== ======= ====== ================== ======== ============== ========== + + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + +.. _hvac_heating_furnace: Furnace ~~~~~~~ -If a furnace is specified, additional information is entered in ``HeatingSystem``. +Each central furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + ====================================================== ======= ========= =============== ======== ============== ================================================ + Element Type Units Constraints Required Default Notes + ====================================================== ======= ========= =============== ======== ============== ================================================ + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatingSystemType/Furnace`` element Yes Type of heating system + ``HeatingSystemType/Furnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/Furnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ + ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ + ====================================================== ======= ========= =============== ======== ============== ================================================ - ====================================================== ======= ========= ============= ======== ======== ================================================ - Element Type Units Constraints Required Default Notes - ====================================================== ======= ========= ============= ======== ======== ================================================ - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``HeatingSystemType/Furnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/Furnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ - ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ - ====================================================== ======= ========= ============= ======== ======== ================================================ + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" - .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity" or "gravity") or DSE. + .. [#] HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity" or "gravity") or :ref:`hvac_distribution_dse`. + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0 W/cfm if gravity distribution system, else 0.5 W/cfm if AFUE <= 0.9, else 0.375 W/cfm. .. [#] If there is a cooling system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. + +.. _hvac_heating_wall_furnace: Wall Furnace ~~~~~~~~~~~~ -If a wall furnace is specified, additional information is entered in ``HeatingSystem``. +Each wall furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + ========================================================== ======= ====== =============== ======== ============== ================ + Element Type Units Constraints Required Default Notes + ========================================================== ======= ====== =============== ======== ============== ================ + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/WallFurnace`` element Yes Type of heating system + ``HeatingSystemType/WallFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/WallFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power + ========================================================== ======= ====== =============== ======== ============== ================ - ========================================================== ======= ====== =========== ======== ======== ================ - Element Type Units Constraints Required Default Notes - ========================================================== ======= ====== =========== ======== ======== ================ - ``HeatingSystemType/WallFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/WallFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ========================================================== ======= ====== =========== ======== ======== ================ + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + +.. _hvac_heating_floor_furnace: Floor Furnace ~~~~~~~~~~~~~ -If a floor furnace is specified, additional information is entered in ``HeatingSystem``. +Each floor furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + =========================================================== ======= ====== =============== ======== ============== ================ + Element Type Units Constraints Required Default Notes + =========================================================== ======= ====== =============== ======== ============== ================ + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/FloorFurnace`` element Yes Type of heating system + ``HeatingSystemType/FloorFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/FloorFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power + =========================================================== ======= ====== =============== ======== ============== ================ - =========================================================== ======= ====== =========== ======== ======== ================ - Element Type Units Constraints Required Default Notes - =========================================================== ======= ====== =========== ======== ======== ================ - ``HeatingSystemType/FloorFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/FloorFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - =========================================================== ======= ====== =========== ======== ======== ================ + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. .. _hvac_heating_boiler: -Boiler -~~~~~~ - -If a boiler is specified, additional information is entered in ``HeatingSystem``. - - ===================================================== ======= ========= =========== ======== ======== ========================================= - Element Type Units Constraints Required Default Notes - ===================================================== ======= ========= =========== ======== ======== ========================================= - ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units - ``HeatingSystemType/Boiler/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/Boiler/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency - ===================================================== ======= ========= =========== ======== ======== ========================================= - - .. [#] For in-unit boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or DSE. - For shared boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil"). - If the shared boiler has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified. - - .. note:: - - The choice of hydronic distribution type (radiator vs baseboard vs radiant panels) does not affect simulation results; - it is currently only used to know if there's an attached water loop heat pump or not. - -If an in-unit boiler if specified, additional information is entered in ``HeatingSystem``. +Boiler (In-Unit) +~~~~~~~~~~~~~~~~ - =========================== ======== ====== =========== ======== ======== ========================= - Element Type Units Constraints Required Default Notes - =========================== ======== ====== =========== ======== ======== ========================= - ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy - =========================== ======== ====== =========== ======== ======== ========================= +Each in-unit boiler is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + ===================================================== ======= ========= =============== ======== ============== ========================================= + Element Type Units Constraints Required Default Notes + ===================================================== ======= ========= =============== ======== ============== ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of boiler + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatingSystemType/Boiler`` element Yes Type of heating system + ``HeatingSystemType/Boiler/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/Boiler/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy + ===================================================== ======= ========= =============== ======== ============== ========================================= + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Hydronic**: same default logic as :ref:`waterheatingsystems` + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or :ref:`hvac_distribution_dse`. + Note: The choice of hydronic distribution type does not currently affect simulation results. + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. .. [#] If ElectricAuxiliaryEnergy not provided, defaults as follows: \- **Oil boiler**: 330 kWh/yr \- **Gas boiler**: 170 kWh/yr -If instead a shared boiler is specified, additional information is entered in ``HeatingSystem``. +.. _hvac_heating_shared_boiler: + +Boiler (Shared) +~~~~~~~~~~~~~~~ - ============================================================ ======== =========== =========== ======== ======== ========================= - Element Type Units Constraints Required Default Notes - ============================================================ ======== =========== =========== ======== ======== ========================= - ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served - ``ElectricAuxiliaryEnergy`` or ``extension/SharedLoopWatts`` double kWh/yr or W >= 0 No See [#]_ Electric auxiliary energy or shared loop power - ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power - ============================================================ ======== =========== =========== ======== ======== ========================= +Each shared boiler (serving multiple dwelling units) is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + ============================================================ ======= =========== =============== ======== ============== ========================================= + Element Type Units Constraints Required Default Notes + ============================================================ ======= =========== =============== ======== ============== ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of boiler + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units + ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served + ``HeatingSystemType/Boiler`` element Yes Type of heating system + ``HeatingSystemType/Boiler/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/Boiler/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``ElectricAuxiliaryEnergy`` or ``extension/SharedLoopWatts`` double kWh/yr or W >= 0 No See [#]_ Electric auxiliary energy or shared loop power + ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power + ============================================================ ======= =========== =============== ======== ============== ========================================= + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Hydronic**: same default logic as :ref:`waterheatingsystems` + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or :ref:`hvac_distribution_air` (type: "fan coil"). + If the shared boiler has "water loop" distribution, a :ref:`hvac_hp_water_loop` must also be specified. + Note: The choice of hydronic distribution type does not currently affect simulation results; it is currently only used to know if there's an attached water loop heat pump or not. + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. .. [#] If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows: \- **Shared boiler w/ baseboard**: 220 kWh/yr @@ -1651,131 +1702,178 @@ If instead a shared boiler is specified, additional information is entered in `` .. [#] FanCoilWatts only used if boiler connected to fan coil and SharedLoopWatts provided. +.. _hvac_heating_stove: + Stove ~~~~~ -If a stove is specified, additional information is entered in ``HeatingSystem``. +Each stove is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. + + ==================================================== ======= ====== =============== ======== ============== =================== + Element Type Units Constraints Required Default Notes + ==================================================== ======= ====== =============== ======== ============== =================== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/Stove`` element Yes Type of heating system + ``HeatingSystemType/Stove/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/Stove/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power + ==================================================== ======= ====== =============== ======== ============== =================== + + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. - ==================================================== ======= ====== =========== ======== ========= =================== - Element Type Units Constraints Required Default Notes - ==================================================== ======= ====== =========== ======== ========= =================== - ``HeatingSystemType/Stove/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/Stove/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power - ==================================================== ======= ====== =========== ======== ========= =================== +.. _hvac_heating_space_heater: Space Heater ~~~~~~~~~~~~ -If a space heater (portable or fixed) is specified, additional information is entered in ``HeatingSystem``. +Each space heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. - ================================================== ====== ===== =========== ======== ========= =================== - Element Type Units Constraints Required Default Notes - ================================================== ====== ===== =========== ======== ========= =================== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ================================================== ====== ===== =========== ======== ========= =================== + ================================================== ======= ====== =============== ======== ============== =================== + Element Type Units Constraints Required Default Notes + ================================================== ======= ====== =============== ======== ============== =================== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/SpaceHeater`` element Yes Type of heating system + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power + ================================================== ======= ====== =============== ======== ============== =================== + + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + +.. _hvac_heating_fireplace: Fireplace ~~~~~~~~~ -If a fireplace is specified, additional information is entered in ``HeatingSystem``. +Each fireplace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. +Instead of modeling fireplaces as serving a fraction of the heating load, fireplaces can be assigned a therm/year usage using :ref:`fuel_loads`. + + ======================================================== ======= ====== =============== ======== ============== =================== + Element Type Units Constraints Required Default Notes + ======================================================== ======= ====== =============== ======== ============== =================== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatingSystemType/Fireplace`` element Yes Type of heating system + ``HeatingSystemType/Fireplace/PilotLight`` boolean No false Presence of standing pilot light (older systems) + ``HeatingSystemType/Fireplace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate + ``HeatingSystemFuel`` string See [#]_ Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power + ======================================================== ======= ====== =============== ======== ============== =================== - ======================================================== ======= ====== =========== ======== ========= =================== - Element Type Units Constraints Required Default Notes - ======================================================== ======= ====== =========== ======== ========= =================== - ``HeatingSystemType/Fireplace/PilotLight`` boolean No false Presence of standing pilot light (older systems) - ``HeatingSystemType/Fireplace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ======================================================== ======= ====== =========== ======== ========= =================== + .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". + .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. + .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. + .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. .. _hvac_cooling: HPXML Cooling Systems ********************* -Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. +The following cooling system types can be modeled: + +- :ref:`hvac_cooling_central_ac` +- :ref:`hvac_cooling_room_ac` +- :ref:`hvac_cooling_ptac` +- :ref:`hvac_cooling_evap_cooler` +- :ref:`hvac_cooling_minisplit_ac` +- :ref:`hvac_cooling_shared_chiller` +- :ref:`hvac_cooling_shared_tower` + +.. _hvac_cooling_central_ac: + +Central Air Conditioner +~~~~~~~~~~~~~~~~~~~~~~~ - ========================== ======== ====== =============== ======== ======== =============================== - Element Type Units Constraints Required Default Notes - ========================== ======== ====== =============== ======== ======== =============================== - ``SystemIdentifier`` id Yes Unique identifier - ``UnitLocation`` string See [#]_ No See [#]_ Location of cooling system (e.g., air handler) - ``CoolingSystemType`` string See [#]_ Yes Type of cooling system - ``CoolingSystemFuel`` string See [#]_ Yes Fuel type - ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served - ========================== ======== ====== =============== ======== ======== =============================== +Each central air conditioner is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ================================================================ ======= =========== ======================= ======== ============== =========================================================== + Element Type Units Constraints Required Default Notes + ================================================================ ======= =========== ======================= ======== ============== =========================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``CoolingSystemType`` string central air conditioner Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No See [#]_ Type of compressor + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_ + ``SensibleHeatFraction`` double frac > 0.5, <= 1 No See [#]_ Sensible heat fraction + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ + ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power + ================================================================ ======= =========== ======================= ======== ============== =========================================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". .. [#] If UnitLocation not provided, defaults based on the distribution system: - \- **none**: "conditioned space" + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" - \- **air**: supply duct location with the largest area, otherwise "conditioned space" + \- **DSE**: "conditioned space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" - \- **dse**: "conditioned space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" - - .. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", "cooling tower", or "packaged terminal air conditioner". - .. [#] CoolingSystemFuel only choice is "electricity". - .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. - -Central Air Conditioner -~~~~~~~~~~~~~~~~~~~~~~~ - -If a central air conditioner is specified, additional information is entered in ``CoolingSystem``. - - ================================================================ ======= =========== ============= ======== ============== =========================================================== - Element Type Units Constraints Required Default Notes - ================================================================ ======= =========== ============= ======== ============== =========================================================== - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``CompressorType`` string See [#]_ No See [#]_ Type of compressor - ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_ - ``SensibleHeatFraction`` double frac > 0.5, <= 1 No See [#]_ Sensible heat fraction - ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ - ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ - ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ================================================================ ======= =========== ============= ======== ============== =========================================================== - - .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system). .. [#] If SensibleHeatFraction not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. .. [#] If FanPowerWattsPerCFM not provided, defaults to using attached furnace W/cfm if available, else 0.5 W/cfm if SEER <= 13.5, else 0.375 W/cfm. .. [#] If there is a heating system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. + +.. _hvac_cooling_room_ac: Room Air Conditioner ~~~~~~~~~~~~~~~~~~~~ -If a room air conditioner is specified, additional information is entered in ``CoolingSystem``. - - ================================================================== ====== ====== =========== ======== ============== ============================================ - Element Type Units Constraints Required Default Notes - ================================================================== ====== ====== =========== ======== ============== ============================================ - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency - ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction - ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ================================================================== ====== ====== =========== ======== ============== ============================================ +Each room air conditioner is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ============================================================== ====== ====== ==================== ======== ============== ============================================ + Element Type Units Constraints Required Default Notes + ============================================================== ====== ====== ==================== ======== ============== ============================================ + ``SystemIdentifier`` id Yes Unique identifier + ``CoolingSystemType`` string room air conditioner Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency + ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction + ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power + ============================================================== ====== ====== ==================== ======== ============== ============================================ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] IntegratedHeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". If the room air conditioner has integrated heating, additional information is entered in ``CoolingSystem``. -Note that a room air conditioner with reverse cycle heating should be entered as a heat pump; see :ref:`room_ac_reverse_cycle`. +Note that a room air conditioner with reverse cycle heating should be entered as a heat pump; see :ref:`hvac_hp_room_ac_reverse_cycle`. ================================================================== ====== ====== =============== ======== ============== ============================================ Element Type Units Constraints Required Default Notes @@ -1788,26 +1886,33 @@ Note that a room air conditioner with reverse cycle heating should be entered as .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. +.. _hvac_cooling_ptac: + Packaged Terminal Air Conditioner ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a PTAC is specified, additional information is entered in ``CoolingSystem``. - - ================================================================== ====== ====== =========== ======== ============== ========================================== - Element Type Units Constraints Required Default Notes - ================================================================== ====== ====== =========== ======== ============== ========================================== - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency - ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction - ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ================================================================== ====== ====== =========== ======== ============== ========================================== +Each packaged terminal air conditioner (PTAC) is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ============================================================== ====== ====== ================================= ======== ============== ========================================== + Element Type Units Constraints Required Default Notes + ============================================================== ====== ====== ================================= ======== ============== ========================================== + ``SystemIdentifier`` id Yes Unique identifier + ``CoolingSystemType`` string packaged terminal air conditioner Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency + ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction + ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power + ============================================================== ====== ====== ================================= ======== ============== ========================================== .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] IntegratedHeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". If the PTAC has integrated heating, additional information is entered in ``CoolingSystem``. -Note that a packaged terminal heat pump should be entered as a heat pump; see :ref:`pthp`. +Note that a packaged terminal heat pump should be entered as a heat pump; see :ref:`hvac_hp_pthp`. ================================================================== ====== ====== =============== ======== ============== ============================================ Element Type Units Constraints Required Default Notes @@ -1820,99 +1925,131 @@ Note that a packaged terminal heat pump should be entered as a heat pump; see :r .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. +.. _hvac_cooling_evap_cooler: + Evaporative Cooler ~~~~~~~~~~~~~~~~~~ -If an evaporative cooler is specified, additional information is entered in ``CoolingSystem``. +Each evaporative cooler is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. - ================================= ======== ====== =========== ======== ============== ================================== - Element Type Units Constraints Required Default Notes - ================================= ======== ====== =========== ======== ============== ================================== - ``DistributionSystem`` idref See [#]_ No ID of attached distribution system - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ================================= ======== ====== =========== ======== ============== ================================== + ========================== ======== ====== ================== ======== ============== ================================== + Element Type Units Constraints Required Default Notes + ========================== ======== ====== ================== ======== ============== ================================== + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystem`` idref See [#]_ No ID of attached distribution system + ``CoolingSystemType`` string evaporative cooler Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ========================== ======== ====== ================== ======== ============== ================================== - .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] If DistributionSystem provided, HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. + +.. _hvac_cooling_minisplit_ac: Mini-Split Air Conditioner ~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a mini-split air conditioner is specified, additional information is entered in ``CoolingSystem``. Each ``CoolingSystem`` is expected to represent a single outdoor unit, whether connected to one indoor head or multiple indoor heads. - - ================================================================ ======== ====== ============= ======== ============== =========================================================== - Element Type Units Constraints Required Default Notes - ================================================================ ======== ====== ============= ======== ============== =========================================================== - ``DistributionSystem`` idref See [#]_ No ID of attached distribution system - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``CompressorType`` string See [#]_ No variable speed Type of compressor - ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ - ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.73 Sensible heat fraction - ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed - ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ - ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ================================================================ ======== ====== ============= ======== ============== =========================================================== - - .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. +Each mini-split air conditioner is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ================================================================ ======== ====== =============== ======== ============== =========================================================== + Element Type Units Constraints Required Default Notes + ================================================================ ======== ====== =============== ======== ============== =========================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler + ``DistributionSystem`` idref See [#]_ No ID of attached distribution system + ``CoolingSystemType`` string mini-split Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No variable speed Type of compressor + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ + ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.73 Sensible heat fraction + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed + ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power + ================================================================ ======== ====== =============== ======== ============== =========================================================== + + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" + + .. [#] If DistributionSystem provided, HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. .. [#] CompressorType only choices is "variable speed" (i.e., they are assumed to be inverter driven). + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless. .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. A non-zero airflow defect can only be applied for systems attached to a distribution system. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. -.. _hvac_cooling_chiller: +.. _hvac_cooling_shared_chiller: -Chiller -~~~~~~~ +Chiller (Shared) +~~~~~~~~~~~~~~~~ -If a chiller is specified, additional information is entered in ``CoolingSystem``. - - ========================================================================== ======== ====== =========== ======== ========= ========================================= - Element Type Units Constraints Required Default Notes - ========================================================================== ======== ====== =========== ======== ========= ========================================= - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units - ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served - ``CoolingCapacity`` double Btu/hr >= 0 Yes Total cooling output capacity - ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency - ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system - ``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power - ========================================================================== ======== ====== =========== ======== ========= ========================================= - - .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil"). - If the chiller has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified. +Each shared chiller (serving multiple dwelling units) is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ================================================= ======== ====== =============== ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ================================================= ======== ====== =============== ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units + ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served + ``CoolingSystemType`` string chiller Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``CoolingCapacity`` double Btu/hr >= 0 Yes Total cooling output capacity + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency + ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system + ``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power + ================================================= ======== ====== =============== ======== ========= ========================================= + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or :ref:`hvac_distribution_air` (type: "fan coil"). + If the chiller has "water loop" distribution, a :ref:`hvac_hp_water_loop` must also be specified. + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] FanCoilWatts only required if chiller connected to fan coil. .. note:: Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. -.. _hvac_cooling_tower: - -Cooling Tower -~~~~~~~~~~~~~ - -If a cooling tower is specified, additional information is entered in ``CoolingSystem``. +.. _hvac_cooling_shared_tower: - ========================================================================== ======== ====== =========== ======== ========= ========================================= - Element Type Units Constraints Required Default Notes - ========================================================================== ======== ====== =========== ======== ========= ========================================= - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units - ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served - ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system - ========================================================================== ======== ====== =========== ======== ========= ========================================= +Cooling Tower (Shared) +~~~~~~~~~~~~~~~~~~~~~~ - .. [#] HVACDistribution type must be HydronicDistribution (type: "water loop"). - A :ref:`hvac_heatpump_wlhp` must also be specified. +Each shared cooling tower (serving multiple dwelling units) is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. + + ============================= ======== ====== =============== ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ============================= ======== ====== =============== ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units + ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served + ``CoolingSystemType`` string cooling tower Yes Type of cooling system + ``CoolingSystemFuel`` string electricity Yes Fuel type + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system + ============================= ======== ====== =============== ======== ========= ========================================= + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "water loop"). + A :ref:`hvac_hp_water_loop` must also be specified. + .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. note:: @@ -1923,51 +2060,37 @@ If a cooling tower is specified, additional information is entered in ``CoolingS HPXML Heat Pumps **************** -Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. +The following heat pump types can be modeled: - ================================= ======== ====== =========== ======== ========= =============================================== - Element Type Units Constraints Required Default Notes - ================================= ======== ====== =========== ======== ========= =============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``UnitLocation`` string See [#]_ No See [#]_ Location of heat pump (e.g., air handler) - ``HeatPumpType`` string See [#]_ Yes Type of heat pump - ``HeatPumpFuel`` string See [#]_ Yes Fuel type - ``BackupType`` string See [#]_ No Type of backup heating - ================================= ======== ====== =========== ======== ========= =============================================== +- :ref:`hvac_hp_air_to_air` +- :ref:`hvac_hp_mini_split` +- :ref:`hvac_hp_pthp` +- :ref:`hvac_hp_room_ac_reverse_cycle` +- :ref:`hvac_hp_ground_to_air` +- :ref:`hvac_hp_water_loop` - .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". - .. [#] If UnitLocation not provided, defaults based on the distribution system: - - \- **none**: "conditioned space" - - \- **air**: supply duct location with the largest area, otherwise "conditioned space" - - \- **hydronic**: same default logic as :ref:`waterheatingsystems` - - \- **dse**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" - - .. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", "water-loop-to-air", "packaged terminal heat pump", or "room air conditioner with reverse cycle". - .. [#] HeatPumpFuel only choice is "electricity". - .. [#] BackupType choices are "integrated" or "separate". - Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. - Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). - Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). +.. _hvac_hp_air_to_air: Air-to-Air Heat Pump ~~~~~~~~~~~~~~~~~~~~ -If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``. +Each air-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. ================================================================ ======= ======== ======================== ======== ============== ================================================= Element Type Units Constraints Required Default Notes ================================================================ ======= ======== ======================== ======== ============== ================================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatPumpType`` string air-to-air Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity ``CompressorType`` string See [#]_ No See [#]_ Type of compressor ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No See [#]_ Sensible heat fraction + ``BackupType`` string See [#]_ No Type of backup heating ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ @@ -1981,13 +2104,25 @@ If an air-to-air heat pump is specified, additional information is entered in `` ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power ================================================================ ======= ======== ======================== ======== ============== ================================================= - .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F. .. [#] If SensibleHeatFraction not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system). @@ -2006,26 +2141,34 @@ If an air-to-air heat pump is specified, additional information is entered in `` Either input approach can be used, but not both. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. + +.. _hvac_hp_mini_split: Mini-Split Heat Pump ~~~~~~~~~~~~~~~~~~~~ -If a mini-split heat pump is specified, additional information is entered in ``HeatPump``. Each ``HeatPump`` is expected to represent a single outdoor unit, whether connected to one indoor head or multiple indoor heads. +Each mini-split heat pump is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. +Each ``HeatPump`` is expected to represent a single outdoor unit, whether connected to one indoor head or multiple indoor heads. ================================================================ ======== ======== ======================== ======== ============== ============================================== Element Type Units Constraints Required Default Notes ================================================================ ======== ======== ======================== ======== ============== ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler ``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present + ``HeatPumpType`` string mini-split Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity ``CompressorType`` string See [#]_ No variable speed Type of compressor ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.73 Sensible heat fraction + ``BackupType`` string See [#]_ No Type of backup heating ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ @@ -2039,11 +2182,23 @@ If a mini-split heat pump is specified, additional information is entered in ``H ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power ================================================================ ======== ======== ======================== ======== ============== ============================================== - .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + + .. [#] If DistributionSystem provided, HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] CompressorType only choice is "variable speed" (i.e., they are assumed to be inverter driven). .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise -20F. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless. @@ -2054,8 +2209,6 @@ If a mini-split heat pump is specified, additional information is entered in ``H CoolingDetailedPerformanceData must also be provided. .. [#] If neither extension/HeatingCapacityRetention nor HeatingCapacity17F nor HeatingDetailedPerformanceData provided, heating capacity retention defaults based on CompressorType: - \- **single/two stage**: 0.425 (at 5F) - \- **variable speed**: 0.0461 * HSPF + 0.1594 (at 5F) .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F). @@ -2063,86 +2216,111 @@ If a mini-split heat pump is specified, additional information is entered in ``H .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. A non-zero airflow defect can only be applied for systems attached to a distribution system. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. -.. _pthp: +.. _hvac_hp_pthp: Packaged Terminal Heat Pump ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a packaged terminal heat pump is specified, additional information is entered in ``HeatPump``. - - =============================================================== ======== ======== ======================== ======== ============== ============================================== - Element Type Units Constraints Required Default Notes - =============================================================== ======== ======== ======================== ======== ============== ============================================== - ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) - ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation - ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction - ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served - ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency - ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - =============================================================== ======== ======== ======================== ======== ============== ============================================== +Each packaged terminal heat pump is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. + + =============================================================== ======== ======== =========================== ======== ============== ============================================== + Element Type Units Constraints Required Default Notes + =============================================================== ======== ======== =========================== ======== ============== ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatPumpType`` string packaged terminal heat pump Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) + ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation + ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction + ``BackupType`` string See [#]_ No Type of backup heating + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency + ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power + =============================================================== ======== ======== =========================== ======== ============== ============================================== .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F). Either input approach can be used, but not both. -.. _room_ac_reverse_cycle: +.. _hvac_hp_room_ac_reverse_cycle: Room Air Conditioner w/ Reverse Cycle ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a room air conditioner with reverse cycle is specified, additional information is entered in ``HeatPump``. - - =============================================================== ======== ======== ======================== ======== ============== ============================================== - Element Type Units Constraints Required Default Notes - =============================================================== ======== ======== ======================== ======== ============== ============================================== - ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) - ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation - ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction - ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served - ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency - ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - =============================================================== ======== ======== ======================== ======== ============== ============================================== +Each room air conditioner with reverse cycle is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. + + =============================================================== ======== ======== ======================================= ======== ============== ============================================== + Element Type Units Constraints Required Default Notes + =============================================================== ======== ======== ======================================= ======== ============== ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``HeatPumpType`` string room air conditioner with reverse cycle Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) + ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation + ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction + ``BackupType`` string See [#]_ No Type of backup heating + ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency + ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power + =============================================================== ======== ======== ======================================= ======== ============== ============================================== .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F). Either input approach can be used, but not both. +.. _hvac_hp_ground_to_air: + Ground-to-Air Heat Pump ~~~~~~~~~~~~~~~~~~~~~~~ -If a ground-to-air heat pump is specified, additional information is entered in ``HeatPump``. +Each ground-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. =============================================== ======== ====== =============== ======== ============== ============================================== Element Type Units Constraints Required Default Notes =============================================== ======== ====== =============== ======== ============== ============================================== - ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_ + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string ground-to-air No See [#]_ Location of air handler ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_ + ``HeatPumpType`` string See [#]_ Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity ``CoolingSensibleHeatFraction`` double frac > 0.5, <= 1 No 0.73 Sensible heat fraction + ``BackupType`` string See [#]_ No Type of backup heating ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency @@ -2156,10 +2334,22 @@ If a ground-to-air heat pump is specified, additional information is entered in ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ =============================================== ======== ====== =============== ======== ============== ============================================== + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] IsSharedSystem should be true if the SFA/MF building has multiple ground source heat pumps connected to a shared hydronic circulation loop. - .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. @@ -2172,37 +2362,56 @@ If a ground-to-air heat pump is specified, additional information is entered in .. [#] Shared loop pump power attributed to the dwelling unit is calculated as SharedLoopWatts / NumberofUnitsServed. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. - See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + See `ANSI/RESNET/ACCA 310-2020 `_ for more information. -.. _hvac_heatpump_wlhp: +.. _hvac_hp_water_loop: Water-Loop-to-Air Heat Pump ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a water-loop-to-air heat pump is specified, additional information is entered in ``HeatPump``. - - =============================================== ======== ====== =========== ======== ============== ============================================== - Element Type Units Constraints Required Default Notes - =============================================== ======== ====== =========== ======== ============== ============================================== - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``HeatingCapacity`` double Btu/hr > 0 No autosized [#]_ Heating output capacity - ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling output capacity - ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency - =============================================== ======== ====== =========== ======== ============== ============================================== +Each water-loop-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump``. + + =============================================== ======== ====== ================= ======== ============== ============================================== + Element Type Units Constraints Required Default Notes + =============================================== ======== ====== ================= ======== ============== ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``UnitLocation`` string See [#]_ No See [#]_ Location of air handler + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatPumpType`` string water-loop-to-air Yes Type of heat pump + ``HeatPumpFuel`` string electricity Yes Fuel type + ``HeatingCapacity`` double Btu/hr > 0 No autosized [#]_ Heating output capacity + ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling output capacity + ``BackupType`` string See [#]_ No Type of backup heating + ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency + =============================================== ======== ====== ================= ======== ============== ============================================== - .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **Air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **DSE**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + + .. [#] HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. .. [#] CoolingCapacity required if there is a shared chiller or cooling tower with water loop distribution. + .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. + Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). + Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). + Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] AnnualCoolingEfficiency required if there is a shared chiller or cooling tower with water loop distribution. .. [#] AnnualHeatingEfficiency required if there is a shared boiler with water loop distribution. .. note:: - If a water loop heat pump is specified, there must be at least one shared heating system (i.e., :ref:`hvac_heating_boiler`) and/or one shared cooling system (i.e., :ref:`hvac_cooling_chiller` or :ref:`hvac_cooling_tower`) specified with water loop distribution. + If a water loop heat pump is specified, there must be at least one shared heating system (i.e., :ref:`hvac_heating_shared_boiler`) and/or one shared cooling system (i.e., :ref:`hvac_cooling_shared_chiller` or :ref:`hvac_cooling_shared_tower`) specified with water loop distribution. + +.. _hvac_hp_backup: Backup ~~~~~~ @@ -2320,7 +2529,7 @@ Note that when detailed cooling performance data is provided, some other inputs HPXML Geothermal Loops ********************** -Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. +Each geothermal loop is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. ======================================== ================ =========== ================== ======== ============== =============================================== Element Type Units Constraints Required Default Notes @@ -2419,7 +2628,13 @@ If a heating and/or cooling season is defined, additional information is entered =================== ======== ===== =========== ======== ======= =========== Thermostat setpoints are additionally entered using either simple inputs or hourly inputs. -Alternatively, setpoints can be defined using :ref:`detailedschedules`. + +- :ref:`hvac_control_simple` +- :ref:`hvac_control_hourly` + +Alternatively, setpoints can be defined using :ref:`schedules_detailed`. + +.. _hvac_control_simple: Simple Inputs ~~~~~~~~~~~~~ @@ -2460,6 +2675,8 @@ If there is a cooling temperature setup, additional information is entered in `` .. [#] TotalSetupHoursperWeekCooling is converted to hrs/day and modeled as a temperature setup every day starting at SetupStartHourCooling. +.. _hvac_control_hourly: + Hourly Inputs ~~~~~~~~~~~~~~~ @@ -2480,47 +2697,44 @@ To define hourly thermostat setpoints, additional information is entered in ``HV HPXML HVAC Distribution *********************** -Each separate HVAC distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution``. - - ============================== ======= ======= =========== ======== ========= ============================= - Element Type Units Constraints Required Default Notes - ============================== ======= ======= =========== ======== ========= ============================= - ``SystemIdentifier`` id Yes Unique identifier - ``DistributionSystemType`` element See [#]_ Yes Type of distribution system - ``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served - ============================== ======= ======= =========== ======== ========= ============================= +The following distribution system types can be modeled: - .. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, or ``Other=DSE``. - .. [#] ConditionedFloorAreaServed required only when DistributionSystemType is AirDistribution and duct surface area is defaulted (i.e., ``AirDistribution/Ducts`` are present without ``DuctSurfaceArea`` child elements). +- :ref:`hvac_distribution_air` +- :ref:`hvac_distribution_hydronic` +- :ref:`hvac_distribution_dse` .. note:: - There should be at most one heating system and one cooling system attached to a distribution system. - See :ref:`hvac_heating`, :ref:`hvac_cooling`, and :ref:`hvac_heatpump` for information on which DistributionSystemType is allowed for which HVAC system. + There can be at most one heating system and one cooling system attached to a distribution system. + See :ref:`hvac_heating`, :ref:`hvac_cooling`, and :ref:`hvac_heatpump` for information on which distribution system type is allowed for which HVAC system. Also note that some HVAC systems (e.g., room air conditioners) are not allowed to be attached to a distribution system. -.. _air_distribution: +.. _hvac_distribution_air: Air Distribution ~~~~~~~~~~~~~~~~ -To define an air distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/AirDistribution``. - - ============================================= ======= ======= =========== ======== ========= ========================== - Element Type Units Constraints Required Default Notes - ============================================= ======= ======= =========== ======== ========= ========================== - ``AirDistributionType`` string See [#]_ Yes Type of air distribution - ``DuctLeakageMeasurement[DuctType="supply"]`` element See [#]_ Supply duct leakage value - ``DuctLeakageMeasurement[DuctType="return"]`` element See [#]_ Return duct leakage value - ``Ducts`` element No Supply/return ducts; multiple are allowed [#]_ - ``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers - ============================================= ======= ======= =========== ======== ========= ========================== +Each air distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution``. + + ==================================================================================== ======= ======= =========== ======== ========= ========================== + Element Type Units Constraints Required Default Notes + ==================================================================================== ======= ======= =========== ======== ========= ========================== + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystemType/AirDistribution`` element Yes Type of distribution system + ``DistributionSystemType/AirDistribution/AirDistributionType`` string See [#]_ Yes Type of air distribution + ``DistributionSystemType/AirDistribution/DuctLeakageMeasurement[DuctType="supply"]`` element See [#]_ Supply duct leakage value + ``DistributionSystemType/AirDistribution/DuctLeakageMeasurement[DuctType="return"]`` element See [#]_ Return duct leakage value + ``DistributionSystemType/AirDistribution/Ducts`` element No Supply/return ducts; multiple are allowed [#]_ + ``DistributionSystemType/AirDistribution/NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers + ``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served + ==================================================================================== ======= ======= =========== ======== ========= ========================== .. [#] AirDistributionType choices are "regular velocity", "gravity", or "fan coil" and are further restricted based on attached HVAC system type (e.g., only "regular velocity" or "gravity" for a furnace, only "fan coil" for a shared boiler, etc.). .. [#] Supply duct leakage required if AirDistributionType is "regular velocity" or "gravity" and optional if AirDistributionType is "fan coil". .. [#] Return duct leakage required if AirDistributionType is "regular velocity" or "gravity" and optional if AirDistributionType is "fan coil". .. [#] Provide a Ducts element for each supply duct and each return duct. .. [#] If NumberofReturnRegisters not provided and return ducts are present, defaults to one return register per conditioned floor per `ASHRAE Standard 152 `_, rounded up to the nearest integer if needed. + .. [#] ConditionedFloorAreaServed required only when duct surface area is defaulted (i.e., ``AirDistribution/Ducts`` are present without ``DuctSurfaceArea`` child elements). Additional information is entered in each ``DuctLeakageMeasurement``. @@ -2605,19 +2819,25 @@ Additional information is entered in each ``Ducts``. If FractionDuctArea is provided, each duct surface area will be FractionDuctArea times total duct area, which is calculated using the sum of primary and secondary duct areas from the equations above. +.. _hvac_distribution_hydronic: + Hydronic Distribution ~~~~~~~~~~~~~~~~~~~~~ -To define a hydronic distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/HydronicDistribution``. +Each hydronic distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution``. - ============================ ======= ======= =========== ======== ========= ==================================== - Element Type Units Constraints Required Default Notes - ============================ ======= ======= =========== ======== ========= ==================================== - ``HydronicDistributionType`` string See [#]_ Yes Type of hydronic distribution system - ============================ ======= ======= =========== ======== ========= ==================================== + ======================================================================== ======= ======= =========== ======== ========= ==================================== + Element Type Units Constraints Required Default Notes + ======================================================================== ======= ======= =========== ======== ========= ==================================== + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystemType/HydronicDistribution`` element Yes Type of distribution system + ``DistributionSystemType/HydronicDistribution/HydronicDistributionType`` string See [#]_ Yes Type of hydronic distribution system + ======================================================================== ======= ======= =========== ======== ========= ==================================== .. [#] HydronicDistributionType choices are "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop". +.. _hvac_distribution_dse: + Distribution System Efficiency (DSE) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -2625,68 +2845,99 @@ Distribution System Efficiency (DSE) A simplified DSE model is provided for flexibility, but it is **strongly** recommended to use one of the other detailed distribution system types for better accuracy. The DSE input is simply applied to heating/cooling energy use for every hour of the year. - Note that when specifying a DSE, its effect is reflected in the :ref:`workflow_outputs` but is **not** reflected in the raw EnergyPlus simulation outputs. -To define a DSE, additional information is entered in ``HVACDistribution``. +Each distribution system using DSE is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution``. ============================================= ======= ======= =========== ======== ========= =================================================== Element Type Units Constraints Required Default Notes ============================================= ======= ======= =========== ======== ========= =================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``DistributionSystemType/Other`` string DSE Yes Type of distribution system ``AnnualHeatingDistributionSystemEfficiency`` double frac > 0, <= 1 Yes Seasonal distribution system efficiency for heating ``AnnualCoolingDistributionSystemEfficiency`` double frac > 0, <= 1 Yes Seasonal distribution system efficiency for cooling ============================================= ======= ======= =========== ======== ========= =================================================== DSE values can be calculated using, e.g., `ASHRAE Standard 152 `_. -HPXML Ventilation Fan -********************* +HPXML Mechanical Ventilation Fans +********************************* -Each ventilation fan system is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +The following mechanical ventilation fan types that provide ventilation to the whole dwelling unit can be modeled: - ============================================================================================================================================= ======== ======= =========== ======== ========= ======================== - Element Type Units Constraints Required Default Notes - ============================================================================================================================================= ======== ======= =========== ======== ========= ======================== - ``SystemIdentifier`` id Yes Unique identifier - ``UsedForWholeBuildingVentilation`` or ``UsedForLocalVentilation`` or ``UsedForSeasonalCoolingLoadReduction`` or ``UsedForGarageVentilation`` boolean See [#]_ See [#]_ Ventilation fan use case - ============================================================================================================================================= ======== ======= =========== ======== ========= ======================== - - .. [#] One (and only one) of the ``UsedFor...`` elements must have a value of true. - If UsedForWholeBuildingVentilation is true, see :ref:`wholeventilation`. - If UsedForLocalVentilation is true, see :ref:`localventilation`. - If UsedForSeasonalCoolingLoadReduction is true, see :ref:`wholehousefan`. - If UsedForGarageVentilation is true, garage ventilation is currently ignored. - .. [#] Only the ``UsedFor...`` element that is true is required. +- :ref:`vent_fan_exhaust_only` +- :ref:`vent_fan_supply_only` +- :ref:`vent_fan_balanced` +- :ref:`vent_fan_hrv` +- :ref:`vent_fan_erv` +- :ref:`vent_fan_cfis` -.. _wholeventilation: +.. _vent_fan_exhaust_only: -Whole Ventilation Fan -~~~~~~~~~~~~~~~~~~~~~ +Exhaust Only +~~~~~~~~~~~~ -Each mechanical ventilation system that provides ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation=true]``. -If not entered, the simulation will not include mechanical ventilation. +Each exhaust only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. + + ============================================================================================= ======== ======= ============ ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ============================================================================================= ======== ======= ============ ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ + ``FanType`` string exhaust only Yes Type of ventilation system + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate + ``HoursInOperation`` double hrs/day >= 0, <= 24 See [#]_ 24 Hours per day of operation + ``FanPower`` double W >= 0 No See [#]_ Fan power + ============================================================================================= ======== ======= ============ ======== ========= ========================================= + + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. + .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 + + where + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf_eff = Qinf * Aext + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. + .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. + +.. _vent_fan_supply_only: + +Supply Only +~~~~~~~~~~~ + +Each supply only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. ============================================================================================= ======== ======= =========== ======== ========= ========================================= Element Type Units Constraints Required Default Notes ============================================================================================= ======== ======= =========== ======== ========= ========================================= - ``IsSharedSystem`` boolean See [#]_ No false Whether it serves multiple dwelling units - ``FanType`` string See [#]_ Yes Type of ventilation system - ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate [#]_ - ``HoursInOperation`` double hrs/day >= 0, <= 24 See [#]_ See [#]_ Hours per day of operation + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ + ``FanType`` string supply only Yes Type of ventilation system + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate + ``HoursInOperation`` double hrs/day >= 0, <= 24 See [#]_ 24 Hours per day of operation ``FanPower`` double W >= 0 No See [#]_ Fan power ============================================================================================= ======== ======= =========== ======== ========= ========================================= - .. [#] For central fan integrated supply systems, IsSharedSystem must be false. - .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. + .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - \- **balanced, energy recovery ventilator, or heat recovery ventilator**: Qfan = Qtot - Qinf_eff + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 - \- **exhaust only, supply only, or central fan integrated supply**: Qfan = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 - where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) Qinf_eff = Qinf * Aext @@ -2697,72 +2948,178 @@ If not entered, the simulation will not include mechanical ventilation. OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. - .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. - .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. - .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. - For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). - For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. - .. [#] If FanPower not provided, defaults based on ANSI/RESNET/ICC 301-2022: - - \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm - - \- **balanced**: 0.7 W/cfm - - \- **central fan integrated supply**: 0.58 W/cfm - - \- **exhaust only or supply only**: 0.35 W/cfm - -**Exhaust/Supply Only** + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. + .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. -If a supply only or exhaust only system is specified, no additional information is entered. +.. _vent_fan_balanced: -**Balanced** - -If a balanced system is specified, no additional information is entered. +Balanced +~~~~~~~~ -**Heat Recovery Ventilator** +Each balanced (supply and exhaust) fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. -If a heat recovery ventilator system is specified, additional information is entered in ``VentilationFan``. + ============================================================================================= ======== ======= =========== ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ============================================================================================= ======== ======= =========== ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ + ``FanType`` string balanced Yes Type of ventilation system + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate + ``HoursInOperation`` double hrs/day >= 0, <= 24 No 24 Hours per day of operation + ``FanPower`` double W >= 0 No See [#]_ Fan power + ============================================================================================= ======== ======= =========== ======== ========= ========================================= - ======================================================================== ====== ===== =========== ======== ======= ======================================= - Element Type Units Constraints Required Default Notes - ======================================================================== ====== ===== =========== ======== ======= ======================================= - ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Sensible recovery efficiency [#]_ - ======================================================================== ====== ===== =========== ======== ======= ======================================= + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. + .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff + + where + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf_eff = Qinf * Aext + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + + .. [#] If FanPower not provided, defaults to 0.7 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). +.. _vent_fan_hrv: -**Energy Recovery Ventilator** +Heat Recovery Ventilator (HRV) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If an energy recovery ventilator system is specified, additional information is entered in ``VentilationFan``. +Each heat recovery ventilator (HRV) is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. - ======================================================================== ====== ===== =========== ======== ======= ======================================= - Element Type Units Constraints Required Default Notes - ======================================================================== ====== ===== =========== ======== ======= ======================================= - ``AdjustedTotalRecoveryEfficiency`` or ``TotalRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Total recovery efficiency [#]_ - ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Sensible recovery efficiency [#]_ - ======================================================================== ====== ===== =========== ======== ======= ======================================= + ============================================================================================= ======== ======= ======================== ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ============================================================================================= ======== ======= ======================== ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ + ``FanType`` string heat recovery ventilator Yes Type of ventilation system + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate + ``HoursInOperation`` double hrs/day >= 0, <= 24 No 24 Hours per day of operation + ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Sensible recovery efficiency [#]_ + ``FanPower`` double W >= 0 No See [#]_ Fan power + ============================================================================================= ======== ======= ======================== ======== ========= ========================================= + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. + .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff + + where + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf_eff = Qinf * Aext + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + + .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). + .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. + +.. _vent_fan_erv: + +Energy Recovery Ventilator (ERV) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Each energy recovery ventilator (ERV) is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. + + ============================================================================================= ======== ======= ========================== ======== ========= ========================================= + Element Type Units Constraints Required Default Notes + ============================================================================================= ======== ======= ========================== ======== ========= ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ + ``FanType`` string energy recovery ventilator Yes Type of ventilation system + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate + ``HoursInOperation`` double hrs/day >= 0, <= 24 No 24 Hours per day of operation + ``AdjustedTotalRecoveryEfficiency`` or ``TotalRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Total recovery efficiency [#]_ + ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac > 0, <= 1 Yes (Adjusted) Sensible recovery efficiency [#]_ + ``FanPower`` double W >= 0 No See [#]_ Fan power + ============================================================================================= ======== ======= ========================== ======== ========= ========================================= + + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. + .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff + + where + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf_eff = Qinf * Aext + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedTotalRecoveryEfficiency (ATRE) is preferable to TotalRecoveryEfficiency (TRE). .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). + .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. -**Central Fan Integrated Supply** +.. _vent_fan_cfis: -If a central fan integrated supply (CFIS) system is specified, additional information is entered in ``VentilationFan``. - - ================================================ ====== ===== =========== ======== =============== ================================== - Element Type Units Constraints Required Default Notes - ================================================ ====== ===== =========== ======== =============== ================================== - ``CFISControls/AdditionalRuntimeOperatingMode`` string See [#]_ No air handler fan How additional ventilation is provided (beyond when the HVAC system is running) - ``CFISControls/SupplementalFan`` idref See [#]_ See [#]_ The supplemental fan providing additional ventilation - ``AttachedToHVACDistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``extension/VentilationOnlyModeAirflowFraction`` double >= 0, <= 1 No 1.0 Blower airflow rate fraction during ventilation only mode [#]_ - ================================================ ====== ===== =========== ======== =============== ================================== +Central Fan Integrated Supply (CFIS) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Each central fan integrated supply (CFIS) system is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. + + ============================================================================================= ======== ======= ============================= ======== =============== ========================================= + Element Type Units Constraints Required Default Notes + ============================================================================================= ======== ======= ============================= ======== =============== ========================================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForWholeBuildingVentilation`` boolean true Yes Ventilation fan use case [#]_ + ``FanType`` string central fan integrated supply Yes Type of ventilation system + ``CFISControls/AdditionalRuntimeOperatingMode`` string See [#]_ No air handler fan How additional ventilation is provided (beyond HVAC system operation) + ``CFISControls/SupplementalFan`` idref See [#]_ See [#]_ The supplemental fan providing additional ventilation + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate [#]_ + ``HoursInOperation`` double hrs/day >= 0, <= 24 false 8 Hours per day of operation [#]_ + ``FanPower`` double W >= 0 No See [#]_ Fan power + ``AttachedToHVACDistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``extension/VentilationOnlyModeAirflowFraction`` double >= 0, <= 1 No 1.0 Blower airflow rate fraction during ventilation only mode [#]_ + ============================================================================================= ======== ======= ============================= ======== =============== ========================================= + + .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". .. [#] SupplementalFan must reference another ``VentilationFan`` where UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". - .. [#] HVACDistribution type cannot be HydronicDistribution. + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: + + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 + + where + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf_eff = Qinf * Aext + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + + .. [#] The flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. + .. [#] The HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). + .. [#] If FanPower not provided, defaults to 0.58 W/cfm based on ANSI/RESNET/ICC 301-2022. + .. [#] HVACDistribution type cannot be :ref:`hvac_distribution_hydronic`. .. [#] Blower airflow rate when operating in ventilation only mode (i.e., not heating or cooling mode), as a fraction of the maximum blower airflow rate. This value will depend on whether the blower fan can operate at reduced airflow rates during ventilation only operation. It is used to determine how much conditioned air is recirculated through ducts during ventilation only operation, resulting in additional duct losses. @@ -2773,7 +3130,10 @@ If a central fan integrated supply (CFIS) system is specified, additional inform CFIS systems are automated controllers that use the HVAC system's air handler fan to draw in outdoor air to meet an hourly ventilation target. CFIS systems are modeled as assuming they A) maximize the use of normal heating/cooling runtime operation to meet the hourly ventilation target, B) block the flow of outdoor air when the hourly ventilation target has been met, and C) provide additional runtime operation (via air handler fan or supplemental fan) to meet the remainder of the hourly ventilation target when space heating/cooling runtime alone is not sufficient. -**Shared System** +.. _vent_fan_shared: + +Shared System +~~~~~~~~~~~~~ If the specified system is a shared system (i.e., serving multiple dwelling units), additional information is entered in ``VentilationFan``. @@ -2792,7 +3152,7 @@ If the specified system is a shared system (i.e., serving multiple dwelling unit .. [#] PreHeating not allowed for exhaust only systems. .. [#] PreCooling not allowed for exhaust only systems. -If pre-heating is specified, additional information is entered in ``extension/PreHeating``. +If pre-heating is specified for the shared system, additional information is entered in ``extension/PreHeating``. ============================================== ======= ===== =========== ======== ======= ==================================================================== Element Type Units Constraints Required Default Notes @@ -2804,7 +3164,7 @@ If pre-heating is specified, additional information is entered in ``extension/Pr .. [#] Fuel choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". -If pre-cooling is specified, additional information is entered in ``extension/PreCooling``. +If pre-cooling is specified for the shared system, additional information is entered in ``extension/PreCooling``. ============================================== ======= ===== =========== ======== ======= ==================================================================== Element Type Units Constraints Required Default Notes @@ -2816,17 +3176,16 @@ If pre-cooling is specified, additional information is entered in ``extension/Pr .. [#] Fuel only choice is "electricity". -.. _localventilation: - -Local Ventilation Fan -~~~~~~~~~~~~~~~~~~~~~ +HPXML Local Ventilation Fans +**************************** -Each kitchen range fan or bathroom fan that provides local ventilation is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForLocalVentilation=true]``. -If not entered, the simulation will not include kitchen/bathroom fans. +Each fan that provides local ventilation (e.g., kitchen range fan or bathroom fan) is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. ============================================================================================= ======= ======= =========== ======== ======== ============================= Element Type Units Constraints Required Default Notes ============================================================================================= ======= ======= =========== ======== ======== ============================= + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForLocalVentilation`` boolean true Yes Ventilation fan use case [#]_ ``Count`` integer >= 0 No See [#]_ Number of identical fans ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate to outside [#]_ ``HoursInOperation`` double hrs/day >= 0, <= 24 No See [#]_ Hours per day of operation @@ -2835,6 +3194,7 @@ If not entered, the simulation will not include kitchen/bathroom fans. ``extension/StartHour`` integer >= 0, <= 23 No See [#]_ Daily start hour of operation ============================================================================================= ======= ======= =========== ======== ======== ============================= + .. [#] All other UsedFor... elements (i.e., ``UsedForWholeBuildingVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] If Count not provided, defaults to 1 for kitchen fans and NumberofBathrooms for bath fans based on the `2010 BAHSP `_. .. [#] If flow rate not provided, defaults to 100 cfm for kitchen fans and 50 cfm for bath fans based on the `2010 BAHSP `_. .. [#] If the kitchen range fan is a recirculating fan, the flow rate should be described as zero. @@ -2843,21 +3203,21 @@ If not entered, the simulation will not include kitchen/bathroom fans. .. [#] If FanPower not provided, defaults to 0.3 W/cfm based on the `2010 BAHSP `_. .. [#] If StartHour not provided, defaults to 18 (6pm) for kitchen fans and 7 (7am) for bath fans based on the `2010 BAHSP `_. -.. _wholehousefan: - -Whole House Fan -~~~~~~~~~~~~~~~ +HPXML Whole House Fans +********************** -Each whole house fan that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForSeasonalCoolingLoadReduction=true]``. -If not entered, the simulation will not include whole house fans. +Each whole house fan that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. ============================================================================================= ======= ======= =========== ======== ====================== ========================== Element Type Units Constraints Required Default Notes ============================================================================================= ======= ======= =========== ======== ====================== ========================== - ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No ConditionedFloorArea*2 Flow rate + ``SystemIdentifier`` id Yes Unique identifier + ``UsedForSeasonalCoolingLoadReduction`` boolean true Yes Ventilation fan use case [#]_ + ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No 2*ConditionedFloorArea Flow rate ``FanPower`` double W >= 0 No See [#]_ Fan power ============================================================================================= ======= ======= =========== ======== ====================== ========================== + .. [#] All other UsedFor... elements (i.e., ``UsedForWholeBuildingVentilation``, ``UsedForLocalVentilation``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] If FanPower not provided, defaults to 0.1 W/cfm. .. note:: @@ -2869,23 +3229,45 @@ If not entered, the simulation will not include whole house fans. HPXML Water Heating Systems *************************** -Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. +The following water heater types can be modeled: + +- :ref:`water_heater_storage` +- :ref:`water_heater_tankless` +- :ref:`water_heater_heat_pump` +- :ref:`water_heater_combi_storage` +- :ref:`water_heater_combi_tankless_coil` + If not entered, the simulation will not include water heating. - ========================= ======= ======= =============== ======== ======== ================================================================ - Element Type Units Constraints Required Default Notes - ========================= ======= ======= =============== ======== ======== ================================================================ - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room - ``WaterHeaterType`` string See [#]_ Yes Type of water heater - ``Location`` string See [#]_ No See [#]_ Water heater location - ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ - ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ - ``UsesDesuperheater`` boolean No false Presence of desuperheater? - ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly - ========================= ======= ======= =============== ======== ======== ================================================================ - - .. [#] WaterHeaterType choices are "storage water heater", "instantaneous water heater", "heat pump water heater", "space-heating boiler with storage tank", or "space-heating boiler with tankless coil". +.. _water_heater_storage: + +Conventional Storage +~~~~~~~~~~~~~~~~~~~~ + +Each conventional storage water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. + + ============================================= ================= ============= ==================== ======== ======== ============================================= + Element Type Units Constraints Required Default Notes + ============================================= ================= ============= ==================== ======== ======== ============================================= + ``SystemIdentifier`` id Yes Unique identifier + ``FuelType`` string See [#]_ Yes Fuel type + ``WaterHeaterType`` string storage water heater Yes Type of water heater + ``Location`` string See [#]_ No See [#]_ Water heater location + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly + ``TankVolume`` double gal > 0 No See [#]_ Nominal tank volume + ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ + ``HeatingCapacity`` double Btu/hr > 0 No See [#]_ Heating capacity + ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency + ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating + ``RecoveryEfficiency`` double frac > 0, <= 1 [#]_ No See [#]_ Recovery efficiency + ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap + ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ + ``UsesDesuperheater`` boolean No false Presence of desuperheater? [#]_ + ``extension/TankModelType`` string See [#]_ No mixed Tank model type + ============================================= ================= ============= ==================== ======== ======== ============================================= + + .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] If Location not provided, defaults to the first present space type: @@ -2894,32 +3276,11 @@ If not entered, the simulation will not include water heating. \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] If TankVolume not provided, defaults based on Table 8 in the `2014 BAHSP `_. .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). - .. [#] The water heater setpoint can alternatively be defined using :ref:`detailedschedules`. - .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. - -Conventional Storage -~~~~~~~~~~~~~~~~~~~~ - -If a conventional storage water heater is specified, additional information is entered in ``WaterHeatingSystem``. - - ============================================= ================= ============= =============== ======== ======== ============================================= - Element Type Units Constraints Required Default Notes - ============================================= ================= ============= =============== ======== ======== ============================================= - ``FuelType`` string See [#]_ Yes Fuel type - ``TankVolume`` double gal > 0 No See [#]_ Nominal tank volume - ``HeatingCapacity`` double Btu/hr > 0 No See [#]_ Heating capacity - ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency - ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating - ``RecoveryEfficiency`` double frac > 0, <= 1 [#]_ No See [#]_ Recovery efficiency - ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap - ``extension/TankModelType`` string See [#]_ No mixed Tank model type - ============================================= ================= ============= =============== ======== ======== ============================================= - - .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". - .. [#] If TankVolume not provided, defaults based on Table 8 in the `2014 BAHSP `_. .. [#] If HeatingCapacity not provided, defaults based on Table 8 in the `2014 BAHSP `_. .. [#] UsageBin choices are "very small", "low", "medium", or "high". .. [#] UsageBin/FirstHourRating are only used for water heaters that use UniformEnergyFactor. @@ -2934,78 +3295,173 @@ If a conventional storage water heater is specified, additional information is e \- **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439 + .. [#] The water heater setpoint can alternatively be defined using :ref:`schedules_detailed`. + .. [#] Additional desuperheater inputs are described in :ref:`water_heater_desuperheater`. .. [#] TankModelType choices are "mixed" or "stratified". +.. _water_heater_tankless: + Tankless ~~~~~~~~ -If an instantaneous tankless water heater is specified, additional information is entered in ``WaterHeatingSystem``. +Each instantaneous tankless water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. + + =========================================== ======= ============ ========================== ============ ======== ========================================================== + Element Type Units Constraints Required Default Notes + =========================================== ======= ============ ========================== ============ ======== ========================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``FuelType`` string See [#]_ Yes Fuel type + ``WaterHeaterType`` string instantaneous water heater Yes Type of water heater + ``Location`` string See [#]_ No See [#]_ Water heater location + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly + ``PerformanceAdjustment`` double frac >= 0, <= 1 No See [#]_ Multiplier on efficiency, typically to account for cycling + ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ + ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency + ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ + ``UsesDesuperheater`` boolean No false Presence of desuperheater? [#]_ + =========================================== ======= ============ ========================== ============ ======== ========================================================== - =========================================== ======= ============ =========== ============ ======== ========================================================== - Element Type Units Constraints Required Default Notes - =========================================== ======= ============ =========== ============ ======== ========================================================== - ``FuelType`` string See [#]_ Yes Fuel type - ``PerformanceAdjustment`` double frac >= 0, <= 1 No See [#]_ Multiplier on efficiency, typically to account for cycling - ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency - =========================================== ======= ============ =========== ============ ======== ========================================================== - .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". + .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + See :ref:`hpxmllocations` for descriptions. + .. [#] If Location not provided, defaults to the first present space type: + + \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + + \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. .. [#] If PerformanceAdjustment not provided, defaults to 0.94 (UEF) or 0.92 (EF) based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. + .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. + Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). + .. [#] The water heater setpoint can alternatively be defined using :ref:`schedules_detailed`. + .. [#] Additional desuperheater inputs are described in :ref:`water_heater_desuperheater`. + +.. _water_heater_heat_pump: Heat Pump ~~~~~~~~~ -If a heat pump water heater is specified, additional information is entered in ``WaterHeatingSystem``. +Each heat pump water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. + + ============================================= ================ ============= ====================== ======== =========== ============================================= + Element Type Units Constraints Required Default Notes + ============================================= ================ ============= ====================== ======== =========== ============================================= + ``SystemIdentifier`` id Yes Unique identifier + ``FuelType`` string electricity Yes Fuel type + ``WaterHeaterType`` string heat pump water heater Yes Type of water heater + ``Location`` string See [#]_ No See [#]_ Water heater location + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly + ``TankVolume`` double gal > 0 Yes Nominal tank volume + ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ + ``UniformEnergyFactor`` or ``EnergyFactor`` double frac > 1, <= 5 Yes EnergyGuide label rated efficiency + ``HPWHOperatingMode`` string See [#]_ No hybrid/auto Operating mode [#]_ + ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating + ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap + ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ + ``UsesDesuperheater`` boolean No false Presence of desuperheater? [#]_ + ============================================= ================ ============= ====================== ======== =========== ============================================= - ============================================= ================ ============= =============== ======== =========== ============================================= - Element Type Units Constraints Required Default Notes - ============================================= ================ ============= =============== ======== =========== ============================================= - ``FuelType`` string See [#]_ Yes Fuel type - ``TankVolume`` double gal > 0 Yes Nominal tank volume - ``UniformEnergyFactor`` or ``EnergyFactor`` double frac > 1, <= 5 Yes EnergyGuide label rated efficiency - ``HPWHOperatingMode`` string See [#]_ No hybrid/auto Operating mode [#]_ - ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating - ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap - ============================================= ================ ============= =============== ======== =========== ============================================= + .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + See :ref:`hpxmllocations` for descriptions. + .. [#] If Location not provided, defaults to the first present space type: + + \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + + \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" - .. [#] FuelType only choice is "electricity". + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. + .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. + Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). .. [#] HPWHOperatingMode choices are "hybrid/auto" or "heat pump only". - .. [#] The heat pump water heater operating mode can alternatively be defined using :ref:`detailedschedules`. + .. [#] The heat pump water heater operating mode can alternatively be defined using :ref:`schedules_detailed`. .. [#] UsageBin choices are "very small", "low", "medium", or "high". .. [#] UsageBin/FirstHourRating are only used for water heaters that use UniformEnergyFactor. If neither UsageBin nor FirstHourRating provided, UsageBin defaults to "medium". If FirstHourRating provided and UsageBin not provided, UsageBin is determined based on the FirstHourRating value. + .. [#] The water heater setpoint can alternatively be defined using :ref:`schedules_detailed`. + .. [#] Additional desuperheater inputs are described in :ref:`water_heater_desuperheater`. + +.. _water_heater_combi_storage: Combi Boiler w/ Storage ~~~~~~~~~~~~~~~~~~~~~~~ -If a combination boiler w/ storage tank (sometimes referred to as an indirect water heater) is specified, additional information is entered in ``WaterHeatingSystem``. - - ============================================= ======= ============ =========== ============ ======== ================================================== - Element Type Units Constraints Required Default Notes - ============================================= ======= ============ =========== ============ ======== ================================================== - ``RelatedHVACSystem`` idref See [#]_ Yes ID of boiler - ``TankVolume`` double gal > 0 Yes Nominal volume of the storage tank - ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional storage tank insulation wrap - ``StandbyLoss[Units="F/hr"]/Value`` double F/hr > 0 No See [#]_ Storage tank standby losses - ============================================= ======= ============ =========== ============ ======== ================================================== +Each combination boiler w/ storage tank (sometimes referred to as an indirect water heater) is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. + + ============================================= ======= ============ ====================================== ============ ======== ================================================== + Element Type Units Constraints Required Default Notes + ============================================= ======= ============ ====================================== ============ ======== ================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``WaterHeaterType`` string space-heating boiler with storage tank Yes Type of water heater + ``Location`` string See [#]_ No See [#]_ Water heater location + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly + ``TankVolume`` double gal > 0 Yes Nominal volume of the storage tank + ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ + ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional storage tank insulation wrap + ``StandbyLoss[Units="F/hr"]/Value`` double F/hr > 0 No See [#]_ Storage tank standby losses + ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ + ``RelatedHVACSystem`` idref See [#]_ Yes ID of boiler + ============================================= ======= ============ ====================================== ============ ======== ================================================== - .. [#] RelatedHVACSystem must reference a ``HeatingSystem`` (Boiler). + .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + See :ref:`hpxmllocations` for descriptions. + .. [#] If Location not provided, defaults to the first present space type: + + \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + + \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. + .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. + Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). .. [#] If StandbyLoss not provided, defaults based on a regression analysis of `AHRI Directory of Certified Product Performance `_. + .. [#] The water heater setpoint can alternatively be defined using :ref:`schedules_detailed`. + .. [#] RelatedHVACSystem must reference a ``HeatingSystem`` (Boiler). + +.. _water_heater_combi_tankless_coil: Combi Boiler w/ Tankless Coil ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If a combination boiler w/ tankless coil is specified, additional information is entered in ``WaterHeatingSystem``. - - ===================== ======= ============ =========== ============ ======== ================================================== - Element Type Units Constraints Required Default Notes - ===================== ======= ============ =========== ============ ======== ================================================== - ``RelatedHVACSystem`` idref See [#]_ Yes ID of boiler - ===================== ======= ============ =========== ============ ======== ================================================== +Each combination boiler w/ tankless coil is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. + + ========================= ======= ===== ======================================= ============ ======== ================================================== + Element Type Units Constraints Required Default Notes + ========================= ======= ===== ======================================= ============ ======== ================================================== + ``SystemIdentifier`` id Yes Unique identifier + ``WaterHeaterType`` string space-heating boiler with tankless coil Yes Type of water heater + ``Location`` string See [#]_ No See [#]_ Water heater location + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly + ``FractionDHWLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of hot water load served [#]_ + ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint [#]_ + ``RelatedHVACSystem`` idref See [#]_ Yes ID of boiler + ========================= ======= ===== ======================================= ============ ======== ================================================== + .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + See :ref:`hpxmllocations` for descriptions. + .. [#] If Location not provided, defaults to the first present space type: + + \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + + \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. + .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. + Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). + .. [#] The water heater setpoint can alternatively be defined using :ref:`schedules_detailed`. .. [#] RelatedHVACSystem must reference a ``HeatingSystem`` (Boiler). +.. _water_heater_desuperheater: + Desuperheater ~~~~~~~~~~~~~ @@ -3026,39 +3482,35 @@ If the water heater uses a desuperheater, additional information is entered in ` HPXML Hot Water Distribution **************************** -If any water heating systems are provided, a single hot water distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/HotWaterDistribution``. +If any water heating systems are provided, a single hot water distribution system can be described: - ================================= ======= ============ =========== ======== ======== ======================================================================= - Element Type Units Constraints Required Default Notes - ================================= ======= ============ =========== ======== ======== ======================================================================= - ``SystemIdentifier`` id Yes Unique identifier - ``SystemType`` element See [#]_ Yes Type of in-unit distribution system serving the dwelling unit - ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value - ``DrainWaterHeatRecovery`` element No Presence of drain water heat recovery device - ``extension/SharedRecirculation`` element See [#]_ No Presence of shared recirculation system serving multiple dwelling units - ================================= ======= ============ =========== ======== ======== ======================================================================= +- :ref:`hot_water_dist_standard` +- :ref:`hot_water_dist_recirc` +- :ref:`hot_water_dist_recirc_shared` - .. [#] SystemType child element choices are ``Standard`` and ``Recirculation``. - .. [#] If SharedRecirculation is provided, SystemType must be ``Standard``. - This is because a stacked recirculation system (i.e., shared recirculation loop plus an additional in-unit recirculation system) is more likely to indicate input errors than reflect an actual real-world scenario. +Hot water distribution systems are modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. .. note:: In attached/multifamily buildings, only the hot water distribution system serving the dwelling unit should be defined. The hot water distribution associated with, e.g., a shared laundry room should not be defined. -Hot water distribution systems are modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. +.. _hot_water_dist_standard: Standard ~~~~~~~~ -If the in-unit distribution system is specified as standard, additional information is entered in ``SystemType/Standard``. +A standard hot water distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/HotWaterDistribution``. - ================ ======= ===== =========== ======== ======== ===================== - Element Type Units Constraints Required Default Notes - ================ ======= ===== =========== ======== ======== ===================== - ``PipingLength`` double ft > 0 No See [#]_ Length of piping [#]_ - ================ ======= ===== =========== ======== ======== ===================== + ==================================== ======= ============ =========== ======== ======== ===================== + Element Type Units Constraints Required Default Notes + ==================================== ======= ============ =========== ======== ======== ===================== + ``SystemIdentifier`` id Yes Unique identifier + ``SystemType/Standard`` element Yes Type of distribution system + ``SystemType/Standard/PipingLength`` double ft > 0 No See [#]_ Length of piping [#]_ + ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value + ``DrainWaterHeatRecovery`` element No Presence of drain water heat recovery device [#]_ + ==================================== ======= ============ =========== ======== ======== ===================== .. [#] If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: @@ -3072,21 +3524,28 @@ If the in-unit distribution system is specified as standard, additional informat Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. - .. [#] PipingLength is the length of hot water piping from the hot water heater (or from a shared recirculation loop serving multiple dwelling units) to the farthest hot water fixture, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 10 feet of piping for each floor level, plus 5 feet of piping for unconditioned basements (if any). + .. [#] PipingLength is the length of hot water piping from the hot water heater to the farthest hot water fixture, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 10 feet of piping for each floor level, plus 5 feet of piping for unconditioned basements (if any). + .. [#] Additional drain water heat recovery inputs are described in :ref:`water_heater_dwhr`. -Recirculation -~~~~~~~~~~~~~ +.. _hot_water_dist_recirc: -If the in-unit distribution system is specified as recirculation, additional information is entered in ``SystemType/Recirculation``. +Recirculation (In-Unit) +~~~~~~~~~~~~~~~~~~~~~~~ - ================================= ======= ===== =========== ======== ======== ===================================== - Element Type Units Constraints Required Default Notes - ================================= ======= ===== =========== ======== ======== ===================================== - ``ControlType`` string See [#]_ Yes Recirculation control type - ``RecirculationPipingLoopLength`` double ft > 0 No See [#]_ Recirculation piping loop length [#]_ - ``BranchPipingLength`` double ft > 0 No 10 Branch piping length [#]_ - ``PumpPower`` double W >= 0 No 50 [#]_ Recirculation pump power - ================================= ======= ===== =========== ======== ======== ===================================== +An in-unit recirculation hot water distribution system is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/HotWaterDistribution``. + + ========================================================== ======= ============ =========== ======== ======== ===================================== + Element Type Units Constraints Required Default Notes + ========================================================== ======= ============ =========== ======== ======== ===================================== + ``SystemIdentifier`` id Yes Unique identifier + ``SystemType/Recirculation`` element Yes Type of distribution system + ``SystemType/Recirculation/ControlType`` string See [#]_ Yes Recirculation control type + ``SystemType/Recirculation/RecirculationPipingLoopLength`` double ft > 0 No See [#]_ Recirculation piping loop length [#]_ + ``SystemType/Recirculation/BranchPipingLength`` double ft > 0 No 10 Branch piping length [#]_ + ``SystemType/Recirculation/PumpPower`` double W >= 0 No 50 [#]_ Recirculation pump power + ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 Yes Pipe insulation R-value + ``DrainWaterHeatRecovery`` element No Presence of drain water heat recovery device [#]_ + ========================================================== ======= ============ =========== ======== ======== ===================================== .. [#] ControlType choices are "manual demand control", "presence sensor demand control", "temperature", "timer", or "no control". @@ -3115,23 +3574,52 @@ If the in-unit distribution system is specified as recirculation, additional inf .. [#] RecirculationPipingLoopLength is the recirculation loop length including both supply and return sides, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 20 feet of piping for each floor level greater than one plus 10 feet of piping for unconditioned basements. .. [#] BranchPipingLength is the length of the branch hot water piping from the recirculation loop to the farthest hot water fixture from the recirculation loop, measured longitudinally from plans, assuming the branch hot water piping does not run diagonally. .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] Additional drain water heat recovery inputs are described in :ref:`water_heater_dwhr`. -Shared Recirculation -~~~~~~~~~~~~~~~~~~~~ +.. _hot_water_dist_recirc_shared: -If a shared recirculation system is specified, additional information is entered in ``extension/SharedRecirculation``. +Recirculation (Shared) +~~~~~~~~~~~~~~~~~~~~~~ - ======================= ======= ===== =========== ======== ======== ================================= - Element Type Units Constraints Required Default Notes - ======================= ======= ===== =========== ======== ======== ================================= - ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served - ``PumpPower`` double W >= 0 No 220 [#]_ Shared recirculation pump power - ``ControlType`` string See [#]_ Yes Shared recirculation control type - ======================= ======= ===== =========== ======== ======== ================================= +A shared recirculation hot water distribution system (serving multiple dwelling units) is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/HotWaterDistribution``. + + ===================================================== ======= ============ =========== ======== ======== ===================== + Element Type Units Constraints Required Default Notes + ===================================================== ======= ============ =========== ======== ======== ===================== + ``SystemIdentifier`` id Yes Unique identifier + ``SystemType/Standard`` element Yes Type of distribution system + ``SystemType/Standard/PipingLength`` double ft > 0 No See [#]_ Length of piping [#]_ + ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value + ``DrainWaterHeatRecovery`` element No Presence of drain water heat recovery device [#]_ + ``extension/SharedRecirculation/NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served + ``extension/SharedRecirculation/PumpPower`` double W >= 0 No 220 [#]_ Shared recirculation pump power + ``extension/SharedRecirculation/ControlType`` string See [#]_ Yes Shared recirculation control type + ===================================================== ======= ============ =========== ======== ======== ===================== + .. [#] If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: + + PipeL = 2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt + + where + + CFA = conditioned floor area [ft2], + + NCfl = number of conditioned floor levels number of conditioned floor levels in the residence including conditioned basements, + + Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. + + .. [#] PipingLength is the length of hot water piping from the shared recirculation loop to the farthest hot water fixture, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 10 feet of piping for each floor level, plus 5 feet of piping for unconditioned basements (if any). + .. [#] Additional drain water heat recovery inputs are described in :ref:`water_heater_dwhr`. .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] ControlType choices are "manual demand control", "presence sensor demand control", "temperature", "timer", or "no control". +.. note:: + + The shared recirculation system is required to have a standard in-unit hot water distribution system; + stacked recirculation systems (i.e., shared recirculation loop plus an additional in-unit recirculation system) are more likely to indicate input errors than reflect an actual real-world scenario. + +.. _water_heater_dwhr: + Drain Water Heat Recovery ~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -3183,41 +3671,37 @@ Additional information can be entered in ``/HPXML/Building/BuildingDetails/Syste ``extension/WaterFixturesMonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ===================================================== ======= ===== =========== ======== ======== =============================================== - .. [#] If WaterFixturesWeekdayScheduleFractions or WaterFixturesWeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 9-11 of the `2010 BAHSP `_ are used: "0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026". - .. [#] If WaterFixturesMonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". + .. [#] If WaterFixturesWeekdayScheduleFractions or WaterFixturesWeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figures 9-11 of the `2010 BAHSP `_ are used: "0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026". + .. [#] If WaterFixturesMonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". Water fixture hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. HPXML Solar Thermal ******************* -A single solar hot water system can be entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``. -If not entered, the simulation will not include solar hot water. - - ==================== ======= ===== =========== ======== ======== ============================ - Element Type Units Constraints Required Default Notes - ==================== ======= ===== =========== ======== ======== ============================ - ``SystemIdentifier`` id Yes Unique identifier - ``SystemType`` string See [#]_ Yes Type of solar thermal system - ==================== ======= ===== =========== ======== ======== ============================ +A single solar hot water system can be described with either simple or detailed inputs. - .. [#] SystemType only choice is "hot water". +- :ref:`solar_thermal_simple` +- :ref:`solar_thermal_detailed` -Solar hot water systems can be described with either simple or detailed inputs. It is recommended to use detailed inputs and allow EnergyPlus to calculate the solar contribution to the hot water load; the simple inputs are provided if equivalent calculations are performed in another software tool. +.. _solar_thermal_simple: + Simple Inputs ~~~~~~~~~~~~~ -To define a simple solar hot water system, additional information is entered in ``SolarThermalSystem``. +A simple solar hot water system is entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``. - ================= ======= ===== =========== ======== ======== ====================== - Element Type Units Constraints Required Default Notes - ================= ======= ===== =========== ======== ======== ====================== - ``SolarFraction`` double frac > 0, <= 1 Yes Solar fraction [#]_ - ``ConnectedTo`` idref See [#]_ No [#]_ Connected water heater - ================= ======= ===== =========== ======== ======== ====================== + ==================== ======= ===== =========== ======== ======== ====================== + Element Type Units Constraints Required Default Notes + ==================== ======= ===== =========== ======== ======== ====================== + ``SystemIdentifier`` id Yes Unique identifier + ``SystemType`` string hot water Yes Type of solar thermal system + ``SolarFraction`` double frac > 0, <= 1 Yes Solar fraction [#]_ + ``ConnectedTo`` idref See [#]_ No [#]_ Connected water heater + ==================== ======= ===== =========== ======== ======== ====================== .. [#] Portion of total conventional hot water heating load (delivered energy plus tank standby losses). Can be obtained from `Directory of SRCC OG-300 Solar Water Heating System Ratings `_ or NREL's `System Advisor Model `_ or equivalent. @@ -3227,16 +3711,20 @@ To define a simple solar hot water system, additional information is entered in .. warning:: - The solar fraction will reduce the hot water load equally for every EnergyPlus timestep (even during nights and cloudy events). + The solar fraction will reduce the hot water load equally for every EnergyPlus timestep. + +.. _solar_thermal_detailed: Detailed Inputs ~~~~~~~~~~~~~~~ -To define a detailed solar hot water system, additional information is entered in ``SolarThermalSystem``. +A detailed solar hot water system is entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``. ================================================ ================= ================ ======================== ======== ======== ============================== Element Type Units Constraints Required Default Notes ================================================ ================= ================ ======================== ======== ======== ============================== + ``SystemIdentifier`` id Yes Unique identifier + ``SystemType`` string hot water Yes Type of solar thermal system ``CollectorArea`` double ft2 > 0 Yes Area ``CollectorLoopType`` string See [#]_ Yes Loop type ``CollectorType`` string See [#]_ Yes System type @@ -3357,7 +3845,7 @@ If not entered, the simulation will not include batteries. An unscheduled battery in a home with photovoltaics (PV) will be controlled using a simple control strategy designed to maximize on site consumption of energy. The battery will charge if PV production is greater than the building load and the battery is below its maximum capacity, while the battery will discharge if the building load is greater than PV production and the battery is above its minimum capacity. - A battery can alternatively be controlled using :ref:`detailedschedules`, where charging and discharging schedules are defined. Positive schedule values control timing and magnitude of charging storage. Negative schedule values control timing and magnitude of discharging storage. Simultaneous charging and discharging of the battery is not allowed. The round trip efficiency affects charging and discharging; the reported charging and discharging rates will be larger than the schedule value by an amount equal to the losses due to the round trip efficiency. + A battery can alternatively be controlled using :ref:`schedules_detailed`, where charging and discharging schedules are defined. Positive schedule values control timing and magnitude of charging storage. Negative schedule values control timing and magnitude of discharging storage. Simultaneous charging and discharging of the battery is not allowed. The round trip efficiency affects charging and discharging; the reported charging and discharging rates will be larger than the schedule value by an amount equal to the losses due to the round trip efficiency. A battery in a home without PV or charging/discharging schedules is assumed to operate as backup and is not modeled. @@ -3428,8 +3916,8 @@ If not entered, the simulation will not include a clothes washer. IMEF may be found using the manufacturer’s data sheet, the `California Energy Commission Appliance Database `_, the `EPA ENERGY STAR website `_, or another reputable source. .. [#] AttachedToWaterHeatingSystem must reference a ``WaterHeatingSystem``; AttachedToHotWaterDistribution must reference a ``HotWaterDistribution``. .. [#] AttachedToWaterHeatingSystem (or AttachedToHotWaterDistribution) only required if IsSharedAppliance is true. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 17 of the `2010 BAHSP `_ are used: "0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 17 of the `2010 BAHSP `_ are used: "0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011". If IntegratedModifiedEnergyFactor or ModifiedEnergyFactor is provided, a complete set of EnergyGuide label information is entered in ``ClothesWasher``. @@ -3478,8 +3966,8 @@ If not entered, the simulation will not include a clothes dryer. CEF = EF / 1.15. CEF may be found using the manufacturer’s data sheet, the `California Energy Commission Appliance Database `_, the `EPA ENERGY STAR website `_, or another reputable source. .. [#] VentedFlowRate default based on the `2010 BAHSP `_. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 18 of the `2010 BAHSP `_ are used: "0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 18 of the `2010 BAHSP `_ are used: "0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". Clothes dryer energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A `_. @@ -3517,8 +4005,8 @@ If not entered, the simulation will not include a dishwasher. RatedAnnualkWh = 215.0 / EF. .. [#] AttachedToWaterHeatingSystem must reference a ``WaterHeatingSystem``; AttachedToHotWaterDistribution must reference a ``HotWaterDistribution``. .. [#] AttachedToWaterHeatingSystem (or AttachedToHotWaterDistribution) only required if IsSharedAppliance is true. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 21 of the `2010 BAHSP `_ are used: "0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 21 of the `2010 BAHSP `_ are used: "0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097". If the RatedAnnualkWh or EnergyFactor is provided, a complete set of EnergyGuide label information is entered in ``Dishwasher``. @@ -3560,8 +4048,8 @@ If not entered, the simulation will not include a refrigerator. .. [#] If RatedAnnualkWh not provided, it will be defaulted to represent a standard refrigerator from 2006 using the following equation based on `ANSI/RESNET/ICC 301-2019 `_: RatedAnnualkWh = 637.0 + 18.0 * NumberofBedrooms. .. [#] If multiple refrigerators are specified, there must be exactly one refrigerator described with PrimaryIndicator=true. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". .. note:: @@ -3589,8 +4077,8 @@ If not entered, the simulation will not include a standalone freezer. See :ref:`hpxmllocations` for descriptions. .. [#] If Location not provided, defaults to "garage" if present, otherwise "basement - unconditioned" if present, otherwise "basement - conditioned" if present, otherwise "conditioned space". .. [#] RatedAnnualkWh default based on the `2010 BAHSP `_. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". .. note:: @@ -3646,8 +4134,8 @@ If not entered, the simulation will not include a cooking range/oven. .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 22 of the `2010 BAHSP `_ are used: "0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 22 of the `2010 BAHSP `_ are used: "0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097". If a cooking range is specified, a single oven is also entered as a ``/HPXML/Building/BuildingDetails/Appliances/Oven``. @@ -3723,9 +4211,9 @@ With either lighting specification, additional information can be entered in ``/ ``extension/ExteriorMonthlyScheduleMultipliers`` array No 12 comma-separated exterior monthly multipliers ================================================ ======= ====== =========== ======== ======== =============================================== - .. [#] If *interior* schedule values not provided (and :ref:`detailedschedules` not used), they will be calculated using Lighting Calculation Option 2 (location-dependent lighting profile) of the `2010 BAHSP `_. - .. [#] If *garage* schedule values not provided (and :ref:`detailedschedules` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual `_. - .. [#] If *exterior* schedule values not provided (and :ref:`detailedschedules` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual `_. + .. [#] If *interior* schedule values not provided (and :ref:`schedules_detailed` not used), they will be calculated using Lighting Calculation Option 2 (location-dependent lighting profile) of the `2010 BAHSP `_. + .. [#] If *garage* schedule values not provided (and :ref:`schedules_detailed` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual `_. + .. [#] If *exterior* schedule values not provided (and :ref:`schedules_detailed` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual `_. If exterior holiday lighting is specified, additional information is entered in ``/HPXML/Building/BuildingDetails/Lighting/extension/ExteriorHolidayLighting``. @@ -3742,7 +4230,7 @@ If exterior holiday lighting is specified, additional information is entered in =============================== ======= ======= =========== ======== ============= ============================================ .. [#] If Value not provided, defaults to 1.1 for single-family detached and 0.55 for others. - .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults to: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019. + .. [#] If WeekdayScheduleFractions not provided (and :ref:`schedules_detailed` not used), defaults to: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019. HPXML Ceiling Fans ****************** @@ -3763,8 +4251,8 @@ If not entered, the simulation will not include a ceiling fan. .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] If Count not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults based on monthly average outdoor temperatures per `ANSI/RESNET/ICC 301-2019 `_ + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), defaults based on monthly average outdoor temperatures per `ANSI/RESNET/ICC 301-2019 `_ Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. @@ -3814,8 +4302,8 @@ If not entered, the simulation will not include a pool pump. If "none" is entered, the simulation will not include a pool pump. .. [#] If Value not provided, defaults based on the `2010 BAHSP `_: 158.5 / 0.070 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920). If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". Pool Heater ~~~~~~~~~~~ @@ -3847,8 +4335,8 @@ If not entered, the simulation will not include a pool heater. If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". HPXML Permanent Spas ******************** @@ -3888,8 +4376,8 @@ If not entered, the simulation will not include a permanent spa pump. If "none" is entered, the simulation will not include a permanent spa pump. .. [#] If Value not provided, defaults based on the `2010 BAHSP `_: 59.5 / 0.059 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920). If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921". Permanent Spa Heater ~~~~~~~~~~~~~~~~~~~~ @@ -3921,14 +4409,16 @@ If not entered, the simulation will not include a permanent spa heater. If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". HPXML Misc Loads ---------------- Miscellaneous loads are entered in ``/HPXML/Building/BuildingDetails/MiscLoads``. +.. _plug_loads: + HPXML Plug Loads **************** @@ -3987,7 +4477,7 @@ If not entered, the simulation will not include that type of plug load. \- **electric vehicle charging**: 0.0 - .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: + .. [#] If WeekdayScheduleFractions not provided (and :ref:`schedules_detailed` not used), defaults as: \- **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) @@ -3997,7 +4487,7 @@ If not entered, the simulation will not include that type of plug load. \- **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" - .. [#] If WeekdendScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: + .. [#] If WeekdendScheduleFractions not provided (and :ref:`schedules_detailed` not used), defaults as: \- **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) @@ -4007,7 +4497,7 @@ If not entered, the simulation will not include that type of plug load. \- **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults as: + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), defaults as: \- **other**: "1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248" (based on Figure 24 of the `2010 BAHSP `_) @@ -4017,6 +4507,8 @@ If not entered, the simulation will not include that type of plug load. \- **electric vehicle charging**: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0" +.. _fuel_loads: + HPXML Fuel Loads **************** @@ -4055,7 +4547,7 @@ If not entered, the simulation will not include that type of fuel load. .. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types. .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost. .. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types. - .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`schedules_detailed` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: \- **grill**: "0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007"; @@ -4063,7 +4555,7 @@ If not entered, the simulation will not include that type of fuel load. \- **lighting**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065". - .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`schedules_detailed` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: \- **grill**: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097"; diff --git a/tasks.rb b/tasks.rb index 60cb714fc..8dae3626b 100644 --- a/tasks.rb +++ b/tasks.rb @@ -260,266 +260,6 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml_bldg.header.manualj_internal_loads_latent = 200 hpxml_bldg.header.manualj_num_occupants = 5 end - if ['base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml'].include? hpxml_file - # YORK HMH7 - # https://ashp.neep.org/#!/product/64253/7/25000///0 - clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data - htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 11700, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.47) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.71) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 13200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 6.34) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 40000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.53) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 10000, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.73) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.44) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 4200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 1.84) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 24800, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.66) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 1900, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 0.81) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 19900, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.28) - end - if ['base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml'].include? hpxml_file - # YORK HMH7 - # https://ashp.neep.org/#!/product/64253/7/25000///0 - clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data - htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 11700, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.47) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.71) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 13200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 6.34) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 40000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.53) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 10000, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.73) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.44) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 4200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 1.84) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 24800, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.66) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 1900, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 0.81) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 19900, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.28) - hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.25 - hpxml_bldg.heat_pumps[0].charge_defect_ratio = -0.25 - end - if ['base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml'].include? hpxml_file - clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data - htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 11700, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.47) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.71) - clg_perf_data.add(outdoor_temperature: 105.0, - capacity: 10000, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 3.9) - clg_perf_data.add(outdoor_temperature: 105.0, - capacity: 30000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.3) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 10000, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.73) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.44) - htg_perf_data.add(outdoor_temperature: 55.0, - capacity: 12000, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 5.5) - htg_perf_data.add(outdoor_temperature: 55.0, - capacity: 45000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 4.0) - end - if ['base-hvac-central-ac-only-var-speed-detailed-performance.xml'].include? hpxml_file - clg_perf_data = hpxml_bldg.cooling_systems[0].cooling_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 11700, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.47) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 36000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.71) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 13200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 6.34) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 40000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.53) - end - if ['base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml'].include? hpxml_file - clg_perf_data = hpxml_bldg.cooling_systems[0].cooling_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 10372, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.05) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 42653, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.27) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 19456, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 8.03) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 40093, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.27) - end - if ['base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml'].include? hpxml_file - # FUJITSU Halcyon Single-room Mini-Split Systems Slim - # https://ashp.neep.org/#!/product/25352/7/25000///0 - clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data - htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 9600, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.02) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 39000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.86) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 10224, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.61) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 41587, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.29) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 9200, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.35) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 48000, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.21) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 7063, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 2.92) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 36800, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.15) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 6310, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 2.60) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 32920, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 1.93) - end - if ['base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml'].include? hpxml_file - # BOSCH Bosch Climate 5000 ductless minisplit series - # https://ashp.neep.org/#!/product/66076/7/25000///0 - clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data - htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 10372, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.05) - clg_perf_data.add(outdoor_temperature: 95.0, - capacity: 42653, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.27) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 19456, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 8.03) - clg_perf_data.add(outdoor_temperature: 82.0, - capacity: 40093, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.27) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 12143, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 4.81) - htg_perf_data.add(outdoor_temperature: 47.0, - capacity: 56499, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 3.17) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 7414, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 1.96) - htg_perf_data.add(outdoor_temperature: 17.0, - capacity: 43387, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 2.31) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 8130, - capacity_description: HPXML::CapacityDescriptionMinimum, - efficiency_cop: 1.71) - htg_perf_data.add(outdoor_temperature: 5.0, - capacity: 36037, - capacity_description: HPXML::CapacityDescriptionMaximum, - efficiency_cop: 1.96) - end hpxml.buildings.each do |hpxml_bldg| # Logic that can only be applied based on the file name @@ -2590,6 +2330,13 @@ def display_usage(command_list) t = Time.now create_hpxmls() puts "Completed in #{(Time.now - t).round(1)}s" + + # Reformat real_homes HPXMLs + puts 'Reformatting real_homes HPXMLs...' + Dir['workflow/real_homes/*.xml'].each do |hpxml_path| + hpxml = HPXML.new(hpxml_path: hpxml_path) + XMLHelper.write_file(hpxml.to_doc, hpxml_path) + end end if ARGV[0].to_sym == :download_utility_rates diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index e31a90643..bc0f7db7f 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1716,10 +1716,32 @@ "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, "heat_pump_cooling_efficiency": 17.25, - "heat_pump_heating_efficiency": 10.0 + "heat_pump_heating_efficiency": 10.0, + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", + "hvac_perf_data_heating_min_speed_capacities": "10000, 4200, 1900", + "hvac_perf_data_heating_max_speed_capacities": "36000, 24800, 19900", + "hvac_perf_data_heating_min_speed_cops": "4.73, 1.84, 0.81", + "hvac_perf_data_heating_max_speed_cops": "3.44, 2.66, 2.28", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", + "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.34", + "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53" }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml" + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 55.0", + "hvac_perf_data_heating_min_speed_capacities": "10000, 12000", + "hvac_perf_data_heating_max_speed_capacities": "36000, 45000", + "hvac_perf_data_heating_min_speed_cops": "4.73, 5.5", + "hvac_perf_data_heating_max_speed_cops": "3.44, 4.0", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 105.0", + "hvac_perf_data_cooling_min_speed_capacities": "11700, 10000", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 30000", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 3.9", + "hvac_perf_data_cooling_max_speed_cops": "2.71, 2.3" }, "sample_files/base-hvac-autosize.xml": { "parent_hpxml": "sample_files/base.xml", @@ -1800,7 +1822,13 @@ "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", "cooling_system_cooling_compressor_type": "variable speed", "cooling_system_cooling_efficiency": 17.25, - "cooling_system_cooling_capacity": 36000 + "cooling_system_cooling_capacity": 36000, + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", + "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.34", + "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53" }, "sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml", @@ -2063,7 +2091,9 @@ "heat_pump_charge_defect_ratio": -0.25 }, "sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml" + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_charge_defect_ratio": -0.25 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2125,7 +2155,13 @@ "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml", "cooling_system_cooling_compressor_type": "variable speed", "cooling_system_cooling_efficiency": 21.5, - "cooling_system_cooling_capacity": 36000 + "cooling_system_cooling_capacity": 36000, + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", + "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", + "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", + "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", + "hvac_perf_data_cooling_max_speed_cops": "3.27, 3.27" }, "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2161,7 +2197,18 @@ "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, "heat_pump_cooling_efficiency": 16.7, - "heat_pump_heating_efficiency": 11.3 + "heat_pump_heating_efficiency": 11.3, + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", + "hvac_perf_data_heating_min_speed_capacities": "9200, 7063, 6310", + "hvac_perf_data_heating_max_speed_capacities": "48000, 36800, 32920", + "hvac_perf_data_heating_min_speed_cops": "4.35, 2.92, 2.60", + "hvac_perf_data_heating_max_speed_cops": "3.21, 2.15, 1.93", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", + "hvac_perf_data_cooling_min_speed_capacities": "9600, 10224", + "hvac_perf_data_cooling_max_speed_capacities": "39000, 41587", + "hvac_perf_data_cooling_min_speed_cops": "4.02, 4.61", + "hvac_perf_data_cooling_max_speed_cops": "2.86, 3.29" }, "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", @@ -2187,7 +2234,18 @@ "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, "heat_pump_cooling_efficiency": 21.5, - "heat_pump_heating_efficiency": 10.5 + "heat_pump_heating_efficiency": 10.5, + "hvac_perf_data_capacity_type": "Absolute capacities", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", + "hvac_perf_data_heating_min_speed_capacities": "12143, 7414, 8130", + "hvac_perf_data_heating_max_speed_capacities": "56499, 43387, 36037", + "hvac_perf_data_heating_min_speed_cops": "4.81, 1.96, 1.71", + "hvac_perf_data_heating_max_speed_cops": "3.17, 2.31, 1.96", + "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", + "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", + "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", + "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", + "hvac_perf_data_cooling_max_speed_cops": "3.27, 3.27" }, "sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml" From 82d3c4625c67e82fbcea73bb1b4d49aac8749ba2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 18 Jan 2024 04:34:30 +0000 Subject: [PATCH 18/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 36 +- workflow/tests/base_results/real_homes.csv | 169 ++++----- workflow/tests/base_results/sample_files.csv | 344 +++++++++---------- 3 files changed, 278 insertions(+), 271 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 9c08287b4..f6f3fa92f 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,19 +1,19 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,66.95,66.95 -[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.33,74.33 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.32,73.32 -[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.02,62.02 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.0,64.0 -[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.41,62.41 -[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.34,51.34 -[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.16,49.16 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.14,60.14 -[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.02,73.02 -[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.25,81.25 -[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.3,71.3 -[SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.24,64.24 -[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.12,64.12 -[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.25,58.25 -[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.64,51.64 -[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.47,50.47 -[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.46,52.46 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.17,67.17 +[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.53,74.53 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.49,73.49 +[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.17,62.17 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.16,64.16 +[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.57,62.57 +[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.54,51.54 +[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.24,49.24 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.26,60.26 +[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.32,73.32 +[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.49,81.49 +[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.5,71.5 +[SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.49,64.49 +[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.29,64.29 +[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.39,58.39 +[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.8,51.8 +[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.59,50.59 +[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.58,52.58 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index f05d39187..cf1de5a7a 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,82 +1,89 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -house001.xml,62.9,9.08,2.02,6.49,14.51,2.16,12.48,9.33,1.2,9.83,10.06,0.79,0.0,0.21322,71.36,5785.85,7603.83,1.0663,55.82,1.0,55.82,62.9,62.9,0.0,46.52,1.0,46.52,62.9,62.9,0.0,60.2,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21322 -house002.xml,70.09,51.25,21.35,9.54,41.41,12.27,10.56,26.95,6.31,9.45,24.05,1.85,0.0,0.18462,71.0,12455.22,17839.91,0.9834,50.67,1.0,50.67,70.09,70.09,0.0,48.26,1.0,48.26,70.09,70.09,0.0,64.71,59.54,21.44,9.54,47.97,12.8,10.56,26.68,6.3,9.45,24.05,1.79,0.0,0.18462 -house003.xml,62.61,27.3,21.76,8.83,30.61,12.45,16.04,18.880000000000003,6.86,7.24,22.14,1.18,0.0,0.24283,73.74,9356.39,12784.26,0.9925,48.91,1.0,48.91,62.61,62.61,0.0,47.01,1.0,47.01,62.61,62.61,0.0,59.47,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.700000000000003,6.84,7.24,22.14,1.13,0.0,0.24283 -house004.xml,60.82,49.7,2.79,13.08,46.2,1.44,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008,66.3,4902.67,7080.64,1.0443,56.17,1.0,56.17,60.82,60.82,0.0,48.51,1.0,48.51,60.82,60.82,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 -house005.xml,60.52,4.67,4.06,5.79,4.1,2.31,12.12,1.26,1.65,4.06,8.94,1.79,0.0,0.2029,83.61,2687.5,2982.32,1.0778,50.04,1.0,50.04,60.52,60.52,0.0,44.92,1.0,44.92,60.52,60.52,0.0,58.73,5.57,3.98,5.79,4.74,2.32,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 -house006.xml,71.4,31.58,20.72,10.54,23.74,12.02,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395,72.73,10094.8,13623.99,1.0188,45.67,1.0,45.67,71.4,71.4,0.0,43.8,1.0,43.8,71.4,71.4,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 -house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.06,1.0,57.06,77.04,77.04,0.0,48.03,1.0,48.03,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 -house008.xml,62.72,96.27,10.33,13.22,153.4,6.79,22.26,81.86,3.53,14.81,37.43,0.33,0.0,0.20001,73.42,24257.2,33975.74,0.9724,51.34,1.0,51.34,62.72,62.72,0.0,46.37,1.0,46.37,62.72,62.72,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 -house009.xml,62.21,19.29,42.09,8.99,30.91,25.18,16.38,16.78,13.53,12.35,23.29,0.64,0.0,0.28642,84.89,9976.47,11470.79,1.0245,48.51,1.0,48.51,62.21,62.21,0.0,45.45,1.0,45.45,62.21,62.21,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 -house010.xml,62.81,51.870000000000005,137.72,7.12,82.98,76.4,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201,94.93,17056.79,19835.69,0.9059,53.79,1.0,53.79,62.81,62.81,0.0,48.52,1.0,48.52,62.81,62.81,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,66.94,8.34,6.55,7.89,13.34,4.53,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131,91.92,4030.96,4110.11,1.0669,56.55,1.0,56.55,66.94,66.94,0.0,53.04,1.0,53.04,66.94,66.94,0.0,64.88,9.75,6.43,7.89,15.6,4.54,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131 -house012.xml,50.09,34.31,2.68,11.63,29.25,1.52,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688,51.29,5415.74,10091.88,1.0463,51.68,1.0,51.68,50.09,50.09,1.0,44.07,1.0,44.07,50.09,50.09,0.0,46.25,40.35,2.52,11.63,34.16,1.49,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688 -house013.xml,58.87,12.03,1.85,10.35,8.85,0.88,11.96,6.61,0.18,3.38,13.97,0.66,0.0,0.16792,57.5,1700.72,2805.93,1.0542,52.81,1.0,52.81,58.87,58.87,0.0,47.6,1.0,47.6,58.87,58.87,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 -house014.xml,54.98,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775,55.71,9427.74,17153.87,0.9866,48.05,1.0,48.05,54.98,54.98,0.0,45.72,1.0,45.72,54.98,54.98,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 -house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3424.1,1.1353,49.61,1.0,49.61,49.76,49.76,1.0,47.58,1.0,47.58,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 -house016.xml,51.4,0.56,72.72,5.61,0.51,39.29,11.57,0.23,18.51,10.53,18.36,0.37,0.0,0.2776,72.23,6031.27,8011.42,1.0422,50.9,1.0,50.9,51.4,51.4,1.0,48.75,1.0,48.75,51.4,51.4,0.0,51.19,0.62,72.94,5.61,0.55,39.46,11.57,0.23,18.48,10.53,18.36,0.37,0.0,0.2776 -house017.xml,69.06,20.26,5.69,10.95,32.32,3.82,18.88,37.14,1.36,9.12,15.89,0.5,0.0,0.20226,177.48,8210.66,4416.32,1.0475,52.34,1.0,52.34,69.06,69.06,0.0,47.44,1.0,47.44,69.06,69.06,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 -house018.xml,30.9,149.43,32.13,17.34,238.12,21.1,27.24,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635,98.29,24234.19,25723.6,0.9585,50.88,1.0,50.88,54.13,54.13,0.0,46.91,1.0,46.91,54.13,54.13,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 -house019.xml,63.49,97.19,10.14,13.22,155.04,6.84,22.25,98.39,2.01,15.29,29.84,4.58,0.0,0.1912,75.95,25465.55,34331.59,0.9766,51.79,1.0,51.79,63.49,63.49,0.0,46.55,1.0,46.55,63.49,63.49,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 -house020.xml,39.51,89.32,13.049999999999999,13.08,103.69999999999999,7.4799999999999995,14.11,92.53,5.1,13.08,33.48,3.62,0.0,0.25974,113.38,12980.85,11698.11,0.9787,56.0,1.0,56.0,82.85,82.85,0.0,51.81,1.0,51.81,82.85,82.85,0.0,71.83,101.98,12.68,13.08,117.84,7.33,14.12,92.53,5.1,13.08,33.48,3.62,0.0,0.25974 -house021.xml,59.56,54.01,8.13,15.33,86.06,5.55,24.64,49.14,4.04,17.78,19.62,2.69,0.0,0.2707,65.66,15954.7,23159.41,1.0493,52.96,1.0,52.96,59.56,59.56,0.0,47.59,1.0,47.59,59.56,59.56,0.0,55.45,61.76,7.89,15.33,98.41,5.57,24.65,49.14,4.04,17.78,19.62,2.69,0.0,0.2707 -house022.xml,54.04,0.44,54.0,4.5,0.44,29.67,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317,61.65,4084.1,6374.67,1.0392,50.63,1.0,50.63,54.04,54.04,0.0,48.32,1.0,48.32,54.04,54.04,0.0,53.83,0.5,54.21,4.5,0.48,29.83,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317 -house023.xml,72.54,16.25,39.75,6.02,11.91,22.67,7.25,7.55,14.61,5.84,18.89,4.03,0.0,0.26097,74.37,7604.15,10165.52,1.0058,45.66,1.0,45.66,72.54,72.54,0.0,43.84,1.0,43.84,72.54,72.54,0.0,70.44,17.35,39.92,6.02,12.62,23.11,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26097 -house024.xml,68.65,21.42,45.28,8.99,34.32,27.15,16.06,23.31,14.67,12.52,23.96,4.56,0.0,0.27167,94.51,11747.92,12313.61,1.0095,52.65,1.0,52.65,68.65,68.65,0.0,49.53,1.0,49.53,68.65,68.65,0.0,64.61,24.53,45.77,8.99,39.3,28.37,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167 -house025.xml,8.93,106.68,19.34,12.54,78.8,10.26,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675,22.16,2849.46,13414.51,0.9584,50.76,1.0,50.76,55.98,55.98,0.0,45.75,1.0,45.75,55.98,55.98,0.0,49.61,120.66,19.44,12.54,88.72,10.33,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675 -house026.xml,65.09,11.54,29.78,7.52,18.48,18.04,14.1,10.24,10.18,14.24,19.05,0.49,0.0,0.21446,90.96,8072.18,8495.08,1.0447,46.98,1.0,46.98,65.09,65.09,0.0,44.3,1.0,44.3,65.09,65.09,0.0,62.98,12.86,29.98,7.52,20.6,18.56,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446 -house027.xml,66.46,15.56,37.88,7.53,24.92,22.66,14.43,16.07,12.48,11.69,19.74,3.79,0.0,0.3038,89.93,9491.44,10169.34,1.0379,51.57,1.0,51.57,66.46,66.46,0.0,48.49,1.0,48.49,66.46,66.46,0.0,64.19,16.63,38.04,7.53,26.64,23.1,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038 -house028.xml,65.7,22.24,48.59,10.42,16.11,28.39,11.66,9.26,16.86,8.78,25.84,0.79,0.0,0.28713,67.84,9235.16,13363.8,1.0187,44.54,1.0,44.54,65.7,65.7,0.0,42.71,1.0,42.71,65.7,65.7,0.0,62.47,25.52,49.13,10.42,18.3,29.56,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713 -house029.xml,61.37,21.98,47.61,8.98,35.21,28.96,16.06,22.049999999999997,14.55,9.36,26.67,0.7,0.0,0.25612,84.75,10975.39,12950.95,0.9999,49.11,1.0,49.11,61.37,61.37,0.0,46.08,1.0,46.08,61.37,61.37,0.0,58.09,25.35,48.16,8.98,40.620000000000005,30.28,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612 -house030.xml,59.7,28.060000000000002,57.93,10.42,44.97,35.04,17.92,28.060000000000002,19.330000000000002,9.28,27.93,0.84,0.0,0.2949,82.55,12838.92,15512.7,1.0026,49.92,1.0,49.92,59.7,59.7,0.0,46.69,1.0,46.69,59.7,59.7,0.0,56.33,32.18,58.61,10.42,51.55,36.650000000000006,17.94,27.27,19.15,9.28,27.93,0.75,0.0,0.2949 -house031.xml,55.38,120.63,19.59,14.54,89.16,10.37,17.33,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578,55.01,8016.93,14472.89,1.007,49.16,1.0,49.16,55.38,55.38,0.0,44.51,1.0,44.51,55.38,55.38,0.0,51.8,135.6,19.66,14.54,99.48,10.42,17.34,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578 -house032.xml,70.54,25.560000000000002,56.67,8.99,40.93,33.83,16.33,27.94,20.28,13.07,26.02,5.63,0.0,0.26822,104.24,15216.27,14331.82,1.0185,54.23,1.0,54.23,70.54,70.54,0.0,50.91,1.0,50.91,70.54,70.54,0.0,67.18,27.45,56.93,8.99,43.959999999999994,34.58,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822 -house033.xml,63.94,68.4,28.009999999999998,11.39,109.17,17.71,19.41,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328,90.45,20714.8,23623.44,0.9695,52.19,1.0,52.19,63.94,63.94,0.0,49.01,1.0,49.01,63.94,63.94,0.0,59.16,79.84,28.050000000000004,11.39,127.41,18.380000000000003,19.42,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328 -house034.xml,61.98,18.62,4.44,9.98,29.81,3.08,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697,151.78,5663.09,3627.53,1.0286,55.5,1.0,55.5,61.98,61.98,0.0,50.11,1.0,50.11,61.98,61.98,0.0,60.57,20.08,4.33,9.98,32.15,3.03,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697 -house035.xml,69.95,51.14,6.42,11.07,81.55,4.72,12.39,66.79,2.09,10.02,20.06,0.52,0.0,0.19233,80.05,17985.25,22552.33,0.9962,55.73,1.0,55.73,69.95,69.95,0.0,49.29,1.0,49.29,69.95,69.95,0.0,64.61,58.33,6.18,11.07,92.95,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233 -house036.xml,67.96,60.62,8.64,8.66,96.7,5.91,15.95,66.61,3.14,9.12,27.96,2.37,0.0,0.18716,79.2,18635.16,24004.98,0.9802,55.3,1.0,55.3,68.0,68.0,0.0,49.65,1.0,49.65,68.0,68.0,0.0,63.22,68.72,8.43,8.66,109.52,5.86,15.96,66.12,3.13,9.12,27.96,2.32,0.0,0.18716 -house037.xml,66.92,63.84,6.69,13.22,101.87,4.86,14.55,69.19,2.89,10.99,21.25,0.42,0.0,0.19298,78.12,19037.66,24109.56,1.0107,52.73,1.0,52.73,66.92,66.92,0.0,47.78,1.0,47.78,66.92,66.92,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 -house038.xml,64.68,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.759999999999998,11.940000000000001,12.25,27.65,0.92,0.0,0.26786,72.94,13801.57,19459.29,0.9724,47.09,1.0,47.09,64.68,64.68,0.0,45.07,1.0,45.07,64.68,64.68,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 -house039.xml,49.93,71.8,20.2,16.51,114.53,13.27,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297,205.08,22621.61,11058.09,0.9975,53.95,1.0,53.95,88.3,88.3,0.0,49.4,1.0,49.4,88.3,88.3,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 -house040.xml,63.53,123.7,12.21,11.07,197.17,7.93,19.46,110.31,8.88,15.32,32.38,2.11,0.0,0.18417,74.66,28943.99,40512.52,0.957,52.69,1.0,52.69,63.53,63.53,0.0,49.54,1.0,49.54,63.53,63.53,0.0,58.85,139.57,11.88,11.07,222.4,7.69,19.47,110.31,8.88,15.32,32.38,2.11,0.0,0.18417 -house041.xml,83.7,24.75,8.16,12.54,39.48,5.2,20.94,33.52,3.82,20.4,23.5,0.88,0.0,0.13022,188.85,10232.9,5294.1,1.0235,52.71,1.0,52.71,83.7,83.7,0.0,46.6,1.0,46.6,83.7,83.7,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 -house042.xml,89.92,49.11,21.04,11.39,78.44,12.99,19.74,80.36,10.09,15.57,27.23,0.46,0.0,0.21961,116.66,20948.32,18000.96,0.9976,49.74,1.0,49.74,89.92,89.92,0.0,46.7,1.0,46.7,89.92,89.92,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 -house043.xml,-8.67,12.16,5.34,10.49,9.81,2.81,11.8,0.73,1.31,2.59,14.94,0.79,0.0,0.3014,-0.0,-0.07,3973.44,1.035,53.31,1.0,53.31,40.43,40.43,1.0,47.81,1.0,47.81,40.43,40.43,1.0,35.62,16.34,5.23,10.49,12.72,2.76,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 -house044.xml,69.13,18.71,3.36,6.35,29.87,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565,77.09,7589.41,9339.61,1.0541,52.29,1.0,52.29,69.13,69.13,0.0,48.53,1.0,48.53,69.13,69.13,0.0,67.04,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 -house045.xml,88.94,73.53,42.89,12.22,55.07,24.73,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001,100.18,25297.81,26306.02,0.96,49.32,1.0,49.32,88.94,88.94,0.0,45.51,1.0,45.51,88.94,88.94,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 -house046.xml,-4.7,74.24,12.05,12.94,61.78,6.78,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812,9.34,2613.32,28117.48,0.9951,49.94,1.0,49.94,37.03,37.03,1.0,43.97,1.0,43.97,37.03,37.03,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 -house047.xml,63.58,31.57,8.97,10.49,50.29,5.55,11.81,44.22,2.29,2.71,21.15,0.37,0.0,0.20941,168.44,10324.13,6103.19,1.0043,58.16,1.0,58.16,63.58,63.58,0.0,52.87,1.0,52.87,63.58,63.58,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 -house048.xml,65.99,1.74,66.18,5.61,2.79,37.96,10.95,0.62,25.32,7.59,19.73,0.79,0.0,0.3336,82.63,6709.33,7678.16,1.0575,50.57,1.0,50.57,65.99,65.99,0.0,46.01,1.0,46.01,65.99,65.99,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 -house049.xml,52.49,13.25,3.11,7.98,9.75,1.59,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328,90.14,2575.24,2717.62,1.0513,49.08,1.0,49.08,52.49,52.49,0.0,44.25,1.0,44.25,52.49,52.49,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 -house050.xml,87.17,20.22,4.93,11.92,32.23,3.23,21.36,14.61,2.8,15.61,22.99,14.05,0.0,0.1657,176.1,7329.31,4096.47,1.016,55.55,1.0,55.55,87.17,87.17,0.0,50.31,1.0,50.31,87.17,87.17,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 -house051.xml,55.38,10.49,2.82,9.98,8.01,1.45,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581,92.18,2716.29,2877.81,1.0239,51.59,1.0,51.59,55.38,55.38,0.0,46.39,1.0,46.39,55.38,55.38,0.0,52.96,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 -house052.xml,59.09,12.31,1.71,10.35,9.03,0.82,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248,59.68,1785.27,2826.99,1.0581,53.25,1.0,53.25,59.09,59.09,0.0,48.21,1.0,48.21,59.09,59.09,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 -house053.xml,70.94,20.36,4.77,11.92,32.46,3.16,21.32,21.16,2.02,14.94,22.57,0.96,0.0,0.16633,175.03,7240.7,4066.51,1.0173,55.4,1.0,55.4,70.94,70.94,0.0,50.18,1.0,50.18,70.94,70.94,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 -house054.xml,62.17,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.69,43.620000000000005,6.47,28.18,1.52,0.0,0.33458,71.29,9742.93,13364.6,1.0226,49.65,1.0,49.65,62.17,62.17,0.0,44.99,1.0,44.99,62.17,62.17,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 -house055.xml,63.35,1.76,65.51,5.61,2.82,37.48,10.68,1.21,24.25,5.91,18.6,1.03,0.0,0.33869,75.68,6123.88,7633.91,1.06,48.76,1.0,48.76,63.35,63.35,0.0,44.32,1.0,44.32,63.35,63.35,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 -house056.xml,62.58,24.84,5.16,11.92,39.76,3.47,20.93,21.64,1.91,11.91,24.34,2.69,0.0,0.20029,159.04,7087.45,4408.92,1.0108,54.78,1.0,54.78,62.58,62.58,0.0,49.51,1.0,49.51,62.58,62.58,0.0,58.66,29.5,4.89,11.92,47.21,3.35,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029 -house057.xml,82.68,17.86,4.12,9.98,28.47,2.82,11.54,16.12,2.93,3.24,19.13,12.04,0.0,0.15957,140.44,5064.26,3555.53,1.0142,57.81,1.0,57.81,82.68,82.68,0.0,53.06,1.0,53.06,82.68,82.68,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 -house058.xml,64.48,3.14,82.82,6.7,5.03,47.9,12.51,1.6,29.31,10.89,21.41,0.99,0.0,0.33359,79.35,7798.01,9707.3,1.0124,50.47,1.0,50.47,64.48,64.48,0.0,45.84,1.0,45.84,64.48,64.48,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 -house059.xml,55.68,7.23,2.94,7.98,5.69,1.48,15.03,2.72,0.45,6.95,14.27,0.13,0.0,0.1901,105.15,2426.76,2150.04,1.0734,50.65,1.0,50.65,55.68,55.68,0.0,46.45,1.0,46.45,55.68,55.68,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 -house060.xml,73.42,30.94,33.66,11.51,49.52,20.259999999999998,19.93,43.02,12.280000000000001,13.8,27.47,0.85,0.0,0.23113,91.98,15991.1,17200.83,1.0107,49.65,1.0,49.65,73.42,73.42,0.0,46.07,1.0,46.07,73.42,73.42,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 -house061.xml,66.56,4.56,3.06,5.79,7.28,1.78,6.8,9.31,0.44,4.66,9.07,0.18,0.0,0.20355,93.48,2933.83,2946.5,1.0651,59.92,1.0,59.92,66.56,66.56,0.0,50.94,1.0,50.94,66.56,66.56,0.0,64.37,5.59,2.99,5.79,8.91,1.78,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20355 -house062.xml,74.3,9.32,8.96,5.19,7.22,5.12,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827,74.91,4568.17,5729.56,1.0644,49.33,1.0,49.33,74.3,74.3,0.0,45.87,1.0,45.87,74.3,74.3,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 -house063.xml,77.83,16.03,40.12,6.02,25.67,23.63,12.48,21.79,15.83,9.48,20.91,4.23,0.0,0.25386,104.51,10777.22,10255.08,1.0056,48.88,1.0,48.88,77.83,77.83,0.0,46.1,1.0,46.1,77.83,77.83,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 -house064.xml,70.44,14.03,32.39,6.02,22.48,19.15,12.18,17.09,12.27,8.4,16.88,2.42,0.0,0.27504,95.85,8514.99,8539.93,1.0402,53.48,1.0,53.48,70.44,70.44,0.0,50.28,1.0,50.28,70.44,70.44,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 -house065.xml,76.06,15.85,42.08,8.99,25.39,25.35,16.33,23.05,16.23,12.28,24.39,4.77,0.0,0.25282,102.08,12019.78,11372.24,1.0354,47.62,1.0,47.62,76.06,76.06,0.0,44.93,1.0,44.93,76.06,76.06,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 -house066.xml,73.85,11.48,30.97,7.53,8.53,18.05,8.76,5.78,12.48,6.43,17.87,3.62,0.0,0.26235,75.25,6874.5,8713.07,1.0485,43.81,1.0,43.81,73.85,73.85,0.0,42.07,1.0,42.07,73.85,73.85,0.0,72.46,12.14,31.07,7.53,8.99,18.3,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26235 -house067.xml,60.03,14.72,37.07,7.53,23.58,22.18,14.12,14.92,12.57,7.79,19.7,0.58,0.0,0.29377,80.7,8346.3,9979.28,1.0364,48.39,1.0,48.39,60.03,60.03,0.0,45.65,1.0,45.65,60.03,60.03,0.0,58.28,15.94,37.25,7.53,25.54,22.68,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377 -house068.xml,74.29,24.08,51.49,7.53,38.56,30.810000000000002,14.45,27.7,17.33,10.92,26.97,6.51,0.0,0.25205,101.42,13326.16,13461.98,0.9761,49.98,1.0,49.98,74.29,74.29,0.0,46.9,1.0,46.9,74.29,74.29,0.0,69.03,27.68,52.08,7.53,44.33,32.29,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205 -house069.xml,72.7,25.32,46.68,7.53,40.57,27.63,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606,101.58,12484.1,12412.93,0.9901,55.81,1.0,55.81,72.7,72.7,0.0,52.57,1.0,52.57,72.7,72.7,0.0,69.19,28.93,47.26,7.53,46.35,29.06,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606 -house070.xml,47.24,86.86,24.63,11.78,64.39,13.83,13.09,22.59,3.05,8.99,35.8,0.47,0.0,0.20124,48.88,7923.62,17051.82,0.9507,51.81,1.0,51.81,47.24,47.24,1.0,45.95,1.0,45.95,47.24,47.24,0.0,43.1,101.96,24.23,11.78,75.85,14.38,13.1,22.13,3.04,8.99,35.8,0.44,0.0,0.20124 -house071.xml,75.17,19.67,8.69,9.86,15.690000000000001,4.96,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659,76.52,4716.43,5861.41,1.0516,51.41,1.0,51.41,75.17,75.17,0.0,46.49,1.0,46.49,75.17,75.17,0.0,71.86,22.35,8.57,9.86,17.85,5.04,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659 -house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.49,21.11,0.6,0.0,0.22812,155.31,16055.81,10515.45,0.9831,55.95,1.0,55.95,60.86,60.86,0.0,49.0,1.0,49.0,60.86,60.86,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 -house073.xml,32.38,116.91,26.41,11.78,96.21000000000001,14.84,26.82,24.93,12.93,32.48,44.5,3.05,0.0,0.16567,68.64,13574.94,20746.98,0.9533,50.07,1.0,50.07,54.01,54.01,0.0,47.26,1.0,47.26,54.01,54.01,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 -house074.xml,72.27,14.0,33.43,7.53,10.24,19.53,8.68,6.23,13.35,6.54,21.4,0.83,0.0,0.24424,73.99,7229.3,9278.57,1.053,43.73,1.0,43.73,72.27,72.27,0.0,42.07,1.0,42.07,72.27,72.27,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 -house075.xml,70.89,31.57,15.71,11.39,50.45,9.98,19.41,38.39,5.5,18.53,17.85,0.98,0.0,0.21678,94.97,12656.94,12849.2,1.0372,46.34,1.0,46.34,70.89,70.89,0.0,43.59,1.0,43.59,70.89,70.89,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 -house076.xml,65.69,6.61,4.85,5.79,10.54,3.46,12.13,9.05,2.09,7.24,10.13,0.71,0.0,0.17942,109.68,3884.22,3349.01,1.0574,52.56,1.0,52.56,65.69,65.69,0.0,46.87,1.0,46.87,65.69,65.69,0.0,64.08,7.46,4.77,5.79,11.9,3.46,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.17942 -house077.xml,77.43,8.59,5.14,8.66,13.72,3.67,9.53,9.12,1.9,7.33,9.98,7.89,0.0,0.20678,82.25,7461.65,8478.23,1.0701,56.09,1.0,56.09,77.43,77.43,0.0,46.33,1.0,46.33,77.43,77.43,0.0,74.51,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20678 -house078.xml,57.17,29.41,57.23,8.99,47.12,32.81,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781,78.87,11821.67,15183.26,0.9872,53.43,1.0,53.43,57.17,57.17,0.0,50.27,1.0,50.27,57.17,57.17,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 -house079.xml,49.4,44.96,2.88,10.35,31.580000000000002,1.43,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664,49.42,2724.63,5675.52,0.9713,55.85,1.0,55.85,49.4,49.4,1.0,50.5,1.0,50.5,49.4,49.4,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 -house080.xml,41.1,31.17,63.31,8.99,22.73,37.19,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981,42.93,7014.45,16794.21,0.973,46.21,1.0,46.21,41.1,41.1,1.0,44.48,1.0,44.48,41.1,41.1,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 -house081.xml,65.34,5.01,4.37,5.6,4.46,2.55,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813,67.33,3200.73,4178.61,1.1376,42.01,1.0,42.01,65.34,65.34,0.0,40.63,1.0,40.63,65.34,65.34,0.0,65.04,5.14,4.36,5.6,4.56,2.56,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813 +house001.xml,63.0,9.08,2.02,6.49,14.51,2.16,12.48,9.39,1.2,9.83,10.06,0.79,0.0,0.21322,71.47,5794.71,7603.83,1.0663,55.93,1.0,55.93,63.0,63.0,0.0,46.6,1.0,46.6,63.0,63.0,0.0,60.2,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21322 +house002.xml,70.3,51.25,21.35,9.54,41.41,12.27,10.56,27.07,6.36,9.45,24.05,1.85,0.0,0.18462,71.23,12496.45,17839.91,0.9834,50.83,1.0,50.83,70.3,70.3,0.0,48.4,1.0,48.4,70.3,70.3,0.0,64.71,59.54,21.44,9.54,47.97,12.8,10.56,26.68,6.3,9.45,24.05,1.79,0.0,0.18462 +house003.xml,62.86,27.3,21.76,8.83,30.61,12.45,16.04,19.04,6.92,7.24,22.14,1.18,0.0,0.24283,73.99,9388.72,12784.26,0.9925,49.05,1.0,49.05,62.86,62.86,0.0,47.15,1.0,47.15,62.86,62.86,0.0,59.47,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.700000000000003,6.84,7.24,22.14,1.13,0.0,0.24283 +house004.xml,60.94,49.7,2.79,13.08,46.2,1.44,14.34,30.08,0.31,5.38,16.12,3.1,0.0,0.32008,66.5,4917.2,7080.64,1.0443,56.26,1.0,56.26,60.94,60.94,0.0,48.58,1.0,48.58,60.94,60.94,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 +house005.xml,60.62,4.67,4.06,5.79,4.1,2.31,12.12,1.26,1.66,4.06,8.94,1.79,0.0,0.2029,83.68,2689.77,2982.32,1.0778,50.07,1.0,50.07,60.62,60.62,0.0,44.93,1.0,44.93,60.62,60.62,0.0,58.73,5.57,3.98,5.79,4.74,2.32,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 +house006.xml,71.64,31.58,20.72,10.54,23.74,12.02,11.82,16.18,7.5,10.52,21.3,1.46,0.0,0.2395,72.98,10130.0,13623.99,1.0188,45.76,1.0,45.76,71.64,71.64,0.0,43.89,1.0,43.89,71.64,71.64,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 +house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.11,1.0,57.11,77.04,77.04,0.0,47.97,1.0,47.97,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 +house008.xml,62.84,96.27,10.33,13.22,153.4,6.79,22.26,82.13,3.56,14.81,37.43,0.33,0.0,0.20001,73.56,24303.74,33975.74,0.9724,51.47,1.0,51.47,62.84,62.84,0.0,46.48,1.0,46.48,62.84,62.84,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 +house009.xml,62.4,19.29,42.09,8.99,30.91,25.18,16.38,16.93,13.6,12.35,23.29,0.64,0.0,0.28642,85.13,10003.99,11470.79,1.0245,48.61,1.0,48.61,62.4,62.4,0.0,45.53,1.0,45.53,62.4,62.4,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 +house010.xml,63.1,51.870000000000005,137.72,7.12,82.98,76.4,13.58,42.150000000000006,41.44,6.14,43.24,2.39,0.0,0.28201,95.46,17151.71,19835.69,0.9059,53.99,1.0,53.99,63.1,63.1,0.0,48.67,1.0,48.67,63.1,63.1,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 +house011.xml,67.08,8.34,6.55,7.89,13.34,4.53,8.9,10.65,1.72,8.21,12.64,0.17,0.0,0.26131,92.18,4042.38,4110.11,1.0669,56.67,1.0,56.67,67.08,67.08,0.0,53.1,1.0,53.1,67.08,67.08,0.0,64.88,9.75,6.43,7.89,15.6,4.54,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131 +house012.xml,50.17,34.31,2.68,11.63,29.25,1.52,12.68,8.52,0.52,10.73,14.75,1.29,0.0,0.31688,51.38,5425.75,10091.88,1.0463,51.78,1.0,51.78,50.17,50.17,1.0,44.13,1.0,44.13,50.17,50.17,0.0,46.25,40.35,2.52,11.63,34.16,1.49,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688 +house013.xml,58.99,12.03,1.85,10.35,8.85,0.88,11.96,6.65,0.19,3.38,13.97,0.66,0.0,0.16792,57.65,1705.24,2805.93,1.0542,52.88,1.0,52.88,58.99,58.99,0.0,47.61,1.0,47.61,58.99,58.99,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 +house014.xml,55.13,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.259999999999998,6.99,3.68,36.46,4.19,0.0,0.25775,55.86,9453.58,17153.87,0.9866,48.19,1.0,48.19,55.13,55.13,0.0,45.84,1.0,45.84,55.13,55.13,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 +house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3424.1,1.1353,49.7,1.0,49.7,49.76,49.76,1.0,47.67,1.0,47.67,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 +house016.xml,51.51,0.56,72.72,5.61,0.51,39.29,11.57,0.24,18.57,10.53,18.36,0.37,0.0,0.2776,72.26,6033.46,8011.42,1.0422,51.02,1.0,51.02,51.51,51.51,0.0,48.86,1.0,48.86,51.51,51.51,0.0,51.19,0.62,72.94,5.61,0.55,39.46,11.57,0.23,18.48,10.53,18.36,0.37,0.0,0.2776 +house017.xml,69.27,20.26,5.69,10.95,32.32,3.82,18.88,37.32,1.38,9.12,15.89,0.5,0.0,0.20226,178.07,8237.79,4416.32,1.0475,52.44,1.0,52.44,69.27,69.27,0.0,47.53,1.0,47.53,69.27,69.27,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 +house018.xml,31.09,149.43,32.13,17.34,238.12,21.1,27.24,127.60999999999999,9.35,18.26,48.3,0.9,0.0,0.22635,98.71,24339.58,25723.6,0.9585,51.05,1.0,51.05,54.34,54.34,0.0,47.06,1.0,47.06,54.34,54.34,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 +house019.xml,63.62,97.19,10.14,13.22,155.04,6.84,22.25,98.73,2.03,15.29,29.84,4.58,0.0,0.1912,76.11,25518.27,34331.59,0.9766,51.91,1.0,51.91,63.62,63.62,0.0,46.66,1.0,46.66,63.62,63.62,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 +house020.xml,39.51,89.32,13.049999999999999,13.08,103.69999999999999,7.4799999999999995,14.11,92.53,5.1,13.08,33.48,3.62,0.0,0.25974,113.38,12980.85,11698.11,0.9787,56.18,1.0,56.18,82.85,82.85,0.0,51.97,1.0,51.97,82.85,82.85,0.0,71.83,101.98,12.68,13.08,117.84,7.33,14.12,92.53,5.1,13.08,33.48,3.62,0.0,0.25974 +house021.xml,59.68,54.01,8.13,15.33,86.06,5.55,24.64,49.3,4.07,17.77,19.62,2.69,0.0,0.2707,65.79,15986.19,23159.41,1.0493,53.07,1.0,53.07,59.68,59.68,0.0,47.7,1.0,47.7,59.68,59.68,0.0,55.45,61.76,7.89,15.33,98.41,5.57,24.65,49.14,4.04,17.78,19.62,2.69,0.0,0.2707 +house022.xml,54.23,0.44,54.0,4.5,0.44,29.67,5.7,0.56,13.98,2.26,15.85,2.09,0.0,0.24317,61.74,4090.31,6374.67,1.0392,50.78,1.0,50.78,54.23,54.23,0.0,48.45,1.0,48.45,54.23,54.23,0.0,53.83,0.5,54.21,4.5,0.48,29.83,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317 +house023.xml,72.69,16.25,39.75,6.02,11.91,22.67,7.25,7.61,14.65,5.84,18.89,4.02,0.0,0.26097,74.51,7618.19,10165.52,1.0058,45.74,1.0,45.74,72.69,72.69,0.0,43.92,1.0,43.92,72.69,72.69,0.0,70.44,17.35,39.92,6.02,12.62,23.11,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26097 +house024.xml,68.79,21.42,45.28,8.99,34.32,27.15,16.06,23.47,14.71,12.52,23.96,4.55,0.0,0.27167,94.71,11773.36,12313.61,1.0095,52.76,1.0,52.76,68.79,68.79,0.0,49.62,1.0,49.62,68.79,68.79,0.0,64.61,24.53,45.77,8.99,39.3,28.37,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167 +house025.xml,9.28,106.68,19.34,12.54,78.8,10.26,13.86,38.79,5.2,2.61,36.94,2.69,0.0,0.15675,22.51,2893.83,13414.51,0.9584,51.0,1.0,51.0,56.38,56.38,0.0,45.94,1.0,45.94,56.38,56.38,0.0,49.61,120.66,19.44,12.54,88.72,10.33,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675 +house026.xml,65.21,11.54,29.78,7.52,18.48,18.04,14.1,10.33,10.2,14.24,19.05,0.49,0.0,0.21446,91.12,8086.82,8495.08,1.0447,47.06,1.0,47.06,65.21,65.21,0.0,44.37,1.0,44.37,65.21,65.21,0.0,62.98,12.86,29.98,7.52,20.6,18.56,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446 +house027.xml,66.67,15.56,37.88,7.53,24.92,22.66,14.43,16.2,12.55,11.69,19.74,3.78,0.0,0.3038,90.16,9516.03,10169.34,1.0379,51.69,1.0,51.69,66.67,66.67,0.0,48.6,1.0,48.6,66.67,66.67,0.0,64.19,16.63,38.04,7.53,26.64,23.1,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038 +house028.xml,65.94,22.24,48.59,10.42,16.11,28.39,11.66,9.35,16.96,8.78,25.84,0.79,0.0,0.28713,68.05,9263.86,13363.8,1.0187,44.61,1.0,44.61,65.94,65.94,0.0,42.78,1.0,42.78,65.94,65.94,0.0,62.47,25.52,49.13,10.42,18.3,29.56,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713 +house029.xml,61.56,21.98,47.61,8.98,35.21,28.96,16.06,22.22,14.61,9.36,26.67,0.7,0.0,0.25612,84.99,11005.88,12950.95,0.9999,49.2,1.0,49.2,61.56,61.56,0.0,46.16,1.0,46.16,61.56,61.56,0.0,58.09,25.35,48.16,8.98,40.620000000000005,30.28,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612 +house030.xml,59.93,28.060000000000002,57.93,10.42,44.97,35.04,17.92,28.28,19.45,9.28,27.93,0.84,0.0,0.2949,82.83,12883.16,15512.7,1.0026,50.03,1.0,50.03,59.93,59.93,0.0,46.78,1.0,46.78,59.93,59.93,0.0,56.33,32.18,58.61,10.42,51.55,36.650000000000006,17.94,27.27,19.15,9.28,27.93,0.75,0.0,0.2949 +house031.xml,55.71,120.63,19.59,14.54,89.16,10.37,17.33,43.45,7.31,3.34,36.88,2.99,0.0,-0.03578,55.29,8057.82,14472.89,1.007,49.4,1.0,49.4,55.71,55.71,0.0,44.7,1.0,44.7,55.71,55.71,0.0,51.8,135.6,19.66,14.54,99.48,10.42,17.34,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578 +house032.xml,70.75,25.560000000000002,56.67,8.99,40.93,33.83,16.33,28.16,20.37,13.06,26.02,5.62,0.0,0.26822,104.55,15261.37,14331.82,1.0185,54.37,1.0,54.37,70.75,70.75,0.0,51.03,1.0,51.03,70.75,70.75,0.0,67.18,27.45,56.93,8.99,43.959999999999994,34.58,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822 +house033.xml,64.13,68.4,28.009999999999998,11.39,109.17,17.71,19.41,83.71000000000001,6.879999999999999,10.68,31.47,0.0,0.0,0.22328,90.66,20763.88,23623.44,0.9695,52.34,1.0,52.34,64.13,64.13,0.0,49.15,1.0,49.15,64.13,64.13,0.0,59.16,79.84,28.050000000000004,11.39,127.41,18.380000000000003,19.42,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328 +house034.xml,62.1,18.62,4.44,9.98,29.81,3.08,18.48,15.33,2.01,10.85,20.18,2.23,0.0,0.18697,152.23,5680.0,3627.53,1.0286,55.62,1.0,55.62,62.1,62.1,0.0,50.21,1.0,50.21,62.1,62.1,0.0,60.57,20.08,4.33,9.98,32.15,3.03,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697 +house035.xml,70.1,51.14,6.42,11.07,81.55,4.72,12.39,67.02,2.11,10.02,20.06,0.52,0.0,0.19233,80.22,18023.5,22552.33,0.9962,55.85,1.0,55.85,70.1,70.1,0.0,49.39,1.0,49.39,70.1,70.1,0.0,64.61,58.33,6.18,11.07,92.95,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233 +house036.xml,68.14,60.62,8.64,8.66,96.7,5.91,15.95,66.85,3.17,9.12,27.96,2.37,0.0,0.18716,79.37,18675.74,24004.98,0.9802,55.45,1.0,55.45,68.17,68.17,0.0,49.77,1.0,49.77,68.17,68.17,0.0,63.22,68.72,8.43,8.66,109.52,5.86,15.96,66.12,3.13,9.12,27.96,2.32,0.0,0.18716 +house037.xml,67.07,63.84,6.69,13.22,101.87,4.86,14.55,69.42,2.92,10.99,21.25,0.42,0.0,0.19298,78.29,19078.9,24109.56,1.0107,52.83,1.0,52.83,67.07,67.07,0.0,47.87,1.0,47.87,67.07,67.07,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 +house038.xml,64.91,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.93,12.010000000000002,12.25,27.65,0.92,0.0,0.26786,73.16,13843.32,19459.29,0.9724,47.19,1.0,47.19,64.91,64.91,0.0,45.16,1.0,45.16,64.91,64.91,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 +house039.xml,50.26,71.8,20.2,16.51,114.53,13.27,29.7,125.28,6.45,24.88,36.28,0.0,0.0,0.09297,205.89,22710.76,11058.09,0.9975,54.14,1.0,54.14,88.65,88.65,0.0,49.57,1.0,49.57,88.65,88.65,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 +house040.xml,63.74,123.7,12.21,11.07,197.17,7.93,19.46,110.7,8.99,15.32,32.38,2.11,0.0,0.18417,74.87,29026.2,40512.52,0.957,52.82,1.0,52.82,63.74,63.74,0.0,49.66,1.0,49.66,63.74,63.74,0.0,58.85,139.57,11.88,11.07,222.4,7.69,19.47,110.31,8.88,15.32,32.38,2.11,0.0,0.18417 +house041.xml,83.97,24.75,8.16,12.54,39.48,5.2,20.94,33.71,3.87,20.4,23.5,0.88,0.0,0.13022,189.43,10264.34,5294.1,1.0235,52.89,1.0,52.89,83.97,83.97,0.0,46.76,1.0,46.76,83.97,83.97,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 +house042.xml,90.17,49.11,21.04,11.39,78.44,12.99,19.74,80.64,10.16,15.57,27.23,0.46,0.0,0.21961,116.9,20991.91,18000.96,0.9976,49.86,1.0,49.86,90.17,90.17,0.0,46.81,1.0,46.81,90.17,90.17,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 +house043.xml,-8.63,12.16,5.34,10.49,9.81,2.81,11.8,0.73,1.33,2.59,14.94,0.79,0.0,0.3014,0.04,1.58,3973.44,1.035,53.43,1.0,53.43,40.51,40.51,1.0,47.91,1.0,47.91,40.51,40.51,1.0,35.62,16.34,5.23,10.49,12.72,2.76,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 +house044.xml,69.25,18.71,3.36,6.35,29.87,2.81,7.67,25.15,1.86,5.34,9.53,0.52,0.0,0.16565,77.2,7600.66,9339.61,1.0541,52.38,1.0,52.38,69.25,69.25,0.0,48.6,1.0,48.6,69.25,69.25,0.0,67.04,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 +house045.xml,89.44,73.53,42.89,12.22,55.07,24.73,21.3,47.88,18.14,33.34,39.95,4.48,0.0,0.22001,100.67,25423.89,26306.02,0.96,49.56,1.0,49.56,89.44,89.44,0.0,45.7,1.0,45.7,89.44,89.44,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 +house046.xml,-4.65,74.24,12.05,12.94,61.78,6.78,13.97,13.03,1.43,10.55,17.63,3.05,0.0,0.27812,9.46,2646.59,28117.48,0.9951,50.06,1.0,50.06,37.1,37.1,1.0,44.05,1.0,44.05,37.1,37.1,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 +house047.xml,63.8,31.57,8.97,10.49,50.29,5.55,11.81,44.42,2.33,2.71,21.15,0.37,0.0,0.20941,169.05,10361.94,6103.19,1.0043,58.38,1.0,58.38,63.8,63.8,0.0,53.08,1.0,53.08,63.8,63.8,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 +house048.xml,66.16,1.74,66.18,5.61,2.79,37.96,10.95,0.63,25.41,7.59,19.73,0.79,0.0,0.3336,82.72,6716.59,7678.16,1.0575,50.62,1.0,50.62,66.16,66.16,0.0,46.05,1.0,46.05,66.16,66.16,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 +house049.xml,52.57,13.25,3.11,7.98,9.75,1.59,16.63,3.31,0.56,8.66,13.12,2.15,0.0,0.22328,90.24,2578.2,2717.62,1.0513,49.16,1.0,49.16,52.57,52.57,0.0,44.27,1.0,44.27,52.57,52.57,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 +house050.xml,87.34,20.22,4.93,11.92,32.23,3.23,21.36,14.73,2.83,15.61,22.99,14.05,0.0,0.1657,176.54,7347.52,4096.47,1.016,55.68,1.0,55.68,87.34,87.34,0.0,50.42,1.0,50.42,87.34,87.34,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 +house051.xml,55.49,10.49,2.82,9.98,8.01,1.45,18.47,3.95,0.23,8.31,16.7,1.14,0.0,0.17581,92.32,2720.32,2877.81,1.0239,51.67,1.0,51.67,55.49,55.49,0.0,46.42,1.0,46.42,55.49,55.49,0.0,52.96,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 +house052.xml,59.17,12.31,1.71,10.35,9.03,0.82,11.96,4.14,0.12,8.08,13.11,1.26,0.0,0.19248,59.78,1788.37,2826.99,1.0581,53.33,1.0,53.33,59.17,59.17,0.0,48.23,1.0,48.23,59.17,59.17,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 +house053.xml,71.1,20.36,4.77,11.92,32.46,3.16,21.32,21.31,2.04,14.94,22.57,0.96,0.0,0.16633,175.56,7262.55,4066.51,1.0173,55.53,1.0,55.53,71.1,71.1,0.0,50.3,1.0,50.3,71.1,71.1,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 +house054.xml,62.32,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.73,43.76,6.47,28.18,1.52,0.0,0.33458,71.37,9752.95,13364.6,1.0226,49.69,1.0,49.69,62.32,62.32,0.0,45.03,1.0,45.03,62.32,62.32,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 +house055.xml,63.57,1.76,65.51,5.61,2.82,37.48,10.68,1.24,24.37,5.91,18.6,1.03,0.0,0.33869,75.82,6134.95,7633.91,1.06,48.83,1.0,48.83,63.57,63.57,0.0,44.37,1.0,44.37,63.57,63.57,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 +house056.xml,62.73,24.84,5.16,11.92,39.76,3.47,20.93,21.8,1.92,11.91,24.34,2.69,0.0,0.20029,159.57,7111.23,4408.92,1.0108,54.91,1.0,54.91,62.73,62.73,0.0,49.62,1.0,49.62,62.73,62.73,0.0,58.66,29.5,4.89,11.92,47.21,3.35,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029 +house057.xml,82.87,17.86,4.12,9.98,28.47,2.82,11.54,16.24,2.97,3.24,19.13,12.04,0.0,0.15957,140.93,5081.88,3555.53,1.0142,57.94,1.0,57.94,82.87,82.87,0.0,53.17,1.0,53.17,82.87,82.87,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 +house058.xml,64.63,3.14,82.82,6.7,5.03,47.9,12.51,1.64,29.41,10.89,21.41,0.99,0.0,0.33359,79.44,7806.61,9707.3,1.0124,50.5,1.0,50.5,64.63,64.63,0.0,45.87,1.0,45.87,64.63,64.63,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 +house059.xml,55.74,7.23,2.94,7.98,5.69,1.48,15.03,2.73,0.45,6.95,14.27,0.13,0.0,0.1901,105.22,2428.26,2150.04,1.0734,50.71,1.0,50.71,55.74,55.74,0.0,46.46,1.0,46.46,55.74,55.74,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 +house060.xml,73.66,30.94,33.66,11.51,49.52,20.259999999999998,19.93,43.26,12.34,13.8,27.47,0.85,0.0,0.23113,92.16,16021.78,17200.83,1.0107,49.77,1.0,49.77,73.66,73.66,0.0,46.16,1.0,46.16,73.66,73.66,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 +house061.xml,66.72,4.56,3.06,5.79,7.28,1.78,6.8,9.37,0.45,4.66,9.07,0.18,0.0,0.20355,93.77,2943.07,2946.5,1.0651,60.03,1.0,60.03,66.72,66.72,0.0,51.01,1.0,51.01,66.72,66.72,0.0,64.37,5.59,2.99,5.79,8.91,1.78,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20355 +house062.xml,74.55,9.32,8.96,5.19,7.22,5.12,6.19,7.91,3.55,4.76,9.72,0.0,0.0,0.24827,75.18,4584.65,5729.56,1.0644,49.37,1.0,49.37,74.55,74.55,0.0,45.89,1.0,45.89,74.55,74.55,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 +house063.xml,78.06,16.03,40.12,6.02,25.67,23.63,12.48,21.94,15.9,9.48,20.91,4.22,0.0,0.25386,104.78,10805.27,10255.08,1.0056,49.0,1.0,49.0,78.06,78.06,0.0,46.2,1.0,46.2,78.06,78.06,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 +house064.xml,70.64,14.03,32.39,6.02,22.48,19.15,12.18,17.21,12.32,8.4,16.88,2.41,0.0,0.27504,96.09,8536.24,8539.93,1.0402,53.61,1.0,53.61,70.64,70.64,0.0,50.39,1.0,50.39,70.64,70.64,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 +house065.xml,76.28,15.85,42.08,8.99,25.39,25.35,16.33,23.21,16.31,12.28,24.39,4.76,0.0,0.25282,102.34,12050.35,11372.24,1.0354,47.73,1.0,47.73,76.28,76.28,0.0,45.01,1.0,45.01,76.28,76.28,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 +house066.xml,74.02,11.48,30.97,7.53,8.53,18.05,8.76,5.83,12.52,6.43,17.87,3.61,0.0,0.26235,75.39,6887.25,8713.07,1.0485,43.87,1.0,43.87,74.02,74.02,0.0,42.13,1.0,42.13,74.02,74.02,0.0,72.46,12.14,31.07,7.53,8.99,18.3,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26235 +house067.xml,60.26,14.72,37.07,7.53,23.58,22.18,14.12,15.05,12.65,7.79,19.7,0.58,0.0,0.29377,80.96,8373.28,9979.28,1.0364,48.51,1.0,48.51,60.26,60.26,0.0,45.74,1.0,45.74,60.26,60.26,0.0,58.28,15.94,37.25,7.53,25.54,22.68,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377 +house068.xml,74.49,24.08,51.49,7.53,38.56,30.810000000000002,14.45,27.91,17.4,10.92,26.97,6.49,0.0,0.25205,101.68,13360.83,13461.98,0.9761,50.09,1.0,50.09,74.49,74.49,0.0,46.99,1.0,46.99,74.49,74.49,0.0,69.03,27.68,52.08,7.53,44.33,32.29,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205 +house069.xml,72.91,25.32,46.68,7.53,40.57,27.63,14.17,30.08,16.67,10.52,23.07,3.77,0.0,0.27606,101.87,12519.44,12412.93,0.9901,55.93,1.0,55.93,72.91,72.91,0.0,52.68,1.0,52.68,72.91,72.91,0.0,69.19,28.93,47.26,7.53,46.35,29.06,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606 +house070.xml,47.38,86.86,24.63,11.78,64.39,13.83,13.09,22.73,3.09,8.99,35.8,0.47,0.0,0.20124,49.03,7947.4,17051.82,0.9507,52.0,1.0,52.0,47.38,47.38,1.0,46.09,1.0,46.09,47.38,47.38,0.0,43.1,101.96,24.23,11.78,75.85,14.38,13.1,22.13,3.04,8.99,35.8,0.44,0.0,0.20124 +house071.xml,75.41,19.67,8.69,9.86,15.690000000000001,4.96,11.46,17.740000000000002,2.19,8.07,12.67,0.39,0.0,0.19659,76.76,4731.24,5861.41,1.0516,51.5,1.0,51.5,75.41,75.41,0.0,46.54,1.0,46.54,75.41,75.41,0.0,71.86,22.35,8.57,9.86,17.85,5.04,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659 +house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.49,21.11,0.6,0.0,0.22812,155.31,16055.81,10515.45,0.9831,56.05,1.0,56.05,60.86,60.86,0.0,49.09,1.0,49.09,60.86,60.86,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 +house073.xml,32.61,116.91,26.41,11.78,96.21000000000001,14.84,26.82,25.12,13.11,32.48,44.5,3.05,0.0,0.16567,68.83,13612.25,20746.98,0.9533,50.27,1.0,50.27,54.27,54.27,0.0,47.44,1.0,47.44,54.27,54.27,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 +house074.xml,72.45,14.0,33.43,7.53,10.24,19.53,8.68,6.28,13.41,6.54,21.4,0.82,0.0,0.24424,74.14,7243.84,9278.57,1.053,43.79,1.0,43.79,72.45,72.45,0.0,42.12,1.0,42.12,72.45,72.45,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 +house075.xml,71.05,31.57,15.71,11.39,50.45,9.98,19.41,38.53,5.53,18.53,17.85,0.98,0.0,0.21678,95.14,12679.15,12849.2,1.0372,46.43,1.0,46.43,71.05,71.05,0.0,43.68,1.0,43.68,71.05,71.05,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 +house076.xml,65.85,6.61,4.85,5.79,10.54,3.46,12.13,9.1,2.11,7.24,10.13,0.71,0.0,0.17942,109.91,3892.21,3349.01,1.0574,52.67,1.0,52.67,65.85,65.85,0.0,46.96,1.0,46.96,65.85,65.85,0.0,64.08,7.46,4.77,5.79,11.9,3.46,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.17942 +house077.xml,77.52,8.59,5.14,8.66,13.72,3.67,9.53,9.16,1.91,7.33,9.98,7.89,0.0,0.20678,82.33,7468.67,8478.23,1.0701,56.18,1.0,56.18,77.52,77.52,0.0,46.41,1.0,46.41,77.52,77.52,0.0,74.51,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20678 +house078.xml,57.34,29.41,57.23,8.99,47.12,32.81,16.27,23.42,17.41,9.48,27.77,0.6,0.0,0.26781,79.07,11852.07,15183.26,0.9872,53.55,1.0,53.55,57.34,57.34,0.0,50.38,1.0,50.38,57.34,57.34,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 +house079.xml,49.54,44.96,2.88,10.35,31.580000000000002,1.43,12.36,13.06,0.1,3.25,22.67,0.0,0.0,0.21664,49.6,2734.5,5675.52,0.9713,56.0,1.0,56.0,49.54,49.54,1.0,50.61,1.0,50.61,49.54,49.54,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 +house080.xml,41.24,31.17,63.31,8.99,22.73,37.19,10.84,6.75,12.6,1.83,23.91,1.35,0.0,0.27981,43.04,7033.11,16794.21,0.973,46.3,1.0,46.3,41.24,41.24,1.0,44.55,1.0,44.55,41.24,41.24,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 +house081.xml,65.41,5.01,4.37,5.6,4.46,2.55,6.34,2.83,1.1,5.53,8.87,0.3,0.0,0.16813,67.4,3203.99,4178.61,1.1376,42.03,1.0,42.03,65.41,65.41,0.0,40.64,1.0,40.64,65.41,65.41,0.0,65.04,5.14,4.36,5.6,4.56,2.56,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813 +house082.xml,62.98,34.42,68.68,10.42,55.16,39.95,18.41,39.84,21.450000000000003,9.12,30.37,5.41,0.0,0.26448,89.81,15912.64,17987.01,0.985,54.71,1.0,54.71,62.98,62.98,0.0,51.36,1.0,51.36,62.98,62.98,0.0,57.29,40.0,69.42,10.42,64.06,41.84,18.41,38.5,20.689999999999998,9.12,30.37,3.24,0.0,0.26448 +house083.xml,54.29,2.95,12.29,4.43,2.48,7.13,5.4,1.26,3.71,3.87,8.79,0.22,0.0,0.32015,56.41,2642.11,4160.92,1.1256,50.53,1.0,50.53,54.29,54.29,0.0,45.56,1.0,45.56,54.29,54.29,0.0,53.62,3.2,12.31,4.43,2.65,7.22,5.4,1.26,3.68,3.87,8.79,0.22,0.0,0.32015 +house084.xml,12.37,70.07,15.79,10.5,114.93,10.51,18.34,77.72,5.54,14.66,29.28,1.64,0.0,0.16348,129.07,12656.78,9996.01,0.981,55.4,1.0,55.4,64.84,64.84,0.0,51.12,1.0,51.12,64.84,64.84,0.0,55.65,78.37,15.75,10.5,128.19,10.51,18.34,77.35,5.46,14.66,29.28,1.64,0.0,0.16348 +house085.xml,-25.97,51.05,13.83,14.54,38.79,7.0200000000000005,16.31,30.58,0.79,2.81,24.8,0.0,0.0,0.22584,-7.42,-628.07,8515.15,0.9941,52.52,1.0,52.52,59.38,59.38,0.0,47.32,1.0,47.32,59.38,59.38,0.0,51.54,62.8,13.82,14.54,46.99,7.04,16.31,30.42,0.77,2.81,24.8,0.0,0.0,0.22584 +house086.xml,52.86,21.01,19.36,8.83,15.77,11.04,10.27,10.41,5.02,1.67,15.34,0.87,0.23,0.30361,53.53,6050.62,10842.83,1.0425,50.11,1.0,50.11,52.86,52.86,0.0,48.79,1.0,48.79,52.86,52.86,0.0,52.28,21.44,19.36,8.83,16.09,11.09,10.27,10.32,5.0,1.67,15.34,0.87,0.24,0.30361 +house087.xml,48.78,6.24,4.37,5.79,5.25,2.49,12.14,3.01,1.55,6.83,8.05,0.16,0.0,0.21128,78.1,2626.78,3102.41,1.0841,47.5,1.0,47.5,48.78,48.78,0.0,43.09,1.0,43.09,48.78,48.78,0.0,47.38,7.03,4.32,5.79,5.82,2.51,12.15,2.97,1.54,6.83,8.05,0.16,0.0,0.21128 +house088.xml,55.85,54.49,23.22,11.39,86.99,14.21,19.76,48.38,6.07,15.74,22.03,0.56,0.0,0.27244,98.79,13020.79,13280.44,0.9925,51.22,1.0,51.22,55.85,55.85,0.0,48.11,1.0,48.11,55.85,55.85,0.0,51.57,62.62,23.29,11.39,99.98,14.73,19.78,47.39,5.96,15.74,22.03,0.52,0.0,0.27244 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index 25a739584..695427882 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -1,175 +1,175 @@ XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -base-appliances-dehumidifier-ief-portable.xml,71.7,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.74,6.72,15.13,0.78,0.1,0.27332,76.96,6255.99,7575.66,1.0731,48.17,1.0,48.17,71.7,71.7,0.0,46.6,1.0,46.6,71.7,71.7,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 -base-appliances-dehumidifier-ief-whole-home.xml,71.69,9.33,26.79,7.53,14.89,15.88,8.51,6.03,13.74,6.72,15.13,0.78,0.1,0.27332,76.95,6256.09,7576.38,1.0731,48.25,1.0,48.25,71.69,71.69,0.0,46.81,1.0,46.81,71.69,71.69,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 -base-appliances-dehumidifier-multiple.xml,71.69,9.37,26.82,7.53,14.91,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.96,6255.1,7573.95,1.0731,48.02,1.0,48.02,71.69,71.69,0.0,46.25,1.0,46.25,71.69,71.69,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-dehumidifier.xml,71.66,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.93,6254.05,7575.66,1.0731,48.17,1.0,48.17,71.66,71.66,0.0,46.6,1.0,46.6,71.66,71.66,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-gas.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,162.59,9026.23,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-modified.xml,80.07,29.51,8.31,10.49,47.03,5.17,11.53,39.41,4.92,9.55,21.6,0.12,0.0,0.22149,156.21,8674.48,5495.15,1.0105,56.77,1.0,56.77,80.07,80.07,0.0,51.03,1.0,51.03,80.07,80.07,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 -base-appliances-none.xml,81.13,29.51,8.31,10.49,47.03,5.17,11.53,39.29,4.95,9.46,22.52,0.12,0.0,0.22149,157.07,8722.23,5495.15,1.0105,56.51,1.0,56.51,81.13,81.13,0.0,50.8,1.0,50.8,81.13,81.13,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 -base-appliances-oil.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,166.85,9262.72,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-propane.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,165.26,9174.64,5495.15,1.0103,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-wood.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,,,,,57.33,1.0,57.33,79.76,79.76,0.0,51.75,1.0,51.75,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-atticroof-cathedral.xml,72.6,32.31,8.49,10.49,51.46,5.18,11.53,35.63,4.46,9.02,21.28,0.12,0.0,0.19844,139.72,8027.33,5691.51,1.0094,55.97,1.0,55.97,72.6,72.6,0.0,51.23,1.0,51.23,72.6,72.6,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 -base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.38,1.0,57.38,74.48,74.48,0.0,51.31,1.0,51.31,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 -base-atticroof-flat.xml,72.12,29.29,8.56,10.49,46.65,5.24,11.52,32.89,3.9,9.02,21.28,0.12,0.0,0.19801,136.87,7587.11,5491.72,1.0094,56.48,1.0,56.48,72.12,72.12,0.0,50.79,1.0,50.79,72.12,72.12,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 -base-atticroof-radiant-barrier.xml,78.23,9.39,26.65,7.53,15.05,15.84,8.51,9.26,14.82,6.72,15.13,0.78,0.0,0.22811,86.16,6895.88,7545.78,1.0606,46.94,1.0,46.94,78.23,78.23,0.0,44.1,1.0,44.1,78.23,78.23,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 -base-atticroof-unvented-insulated-roof.xml,74.87,29.51,8.31,10.49,47.03,5.17,11.53,35.9,4.15,9.02,21.28,0.12,0.0,0.1867,145.08,8043.17,5495.15,1.0089,56.51,1.0,56.51,74.87,74.87,0.0,50.8,1.0,50.8,74.87,74.87,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 -base-atticroof-vented.xml,77.29,30.04,8.11,10.49,47.87,5.07,11.83,39.35,4.34,9.19,21.28,0.12,0.0,0.22173,152.75,8562.46,5547.13,1.0106,57.26,1.0,57.26,77.29,77.29,0.0,51.7,1.0,51.7,77.29,77.29,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.92,7.78,5.19,10.49,12.44,3.55,11.51,17.7,2.44,9.57,13.08,0.82,0.0,0.21303,140.48,4687.07,3076.07,1.0846,67.66,1.0,67.66,83.92,83.92,0.0,58.7,1.0,58.7,83.92,83.92,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-location-portland-or.xml,77.83,3.38,3.51,9.98,5.41,2.44,10.99,5.28,1.86,9.12,13.08,0.82,0.0,0.18156,97.93,2793.02,2661.18,1.0717,62.19,1.0,62.19,77.83,77.83,0.0,51.3,1.0,51.3,77.83,77.83,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,77.2,5.34,5.98,10.49,8.78,3.91,11.5,7.68,3.54,9.56,13.08,0.82,0.0,0.2213,99.73,3295.13,3036.78,1.0881,59.65,1.0,59.65,77.2,77.2,0.0,51.1,1.0,51.1,77.2,77.2,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.78,5.34,5.98,10.49,8.78,3.91,11.5,8.12,3.54,9.56,13.08,0.82,0.0,0.2213,101.36,3348.99,3036.78,1.0881,59.79,1.0,59.79,77.78,77.78,0.0,51.19,1.0,51.19,77.78,77.78,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.29,5.34,5.98,10.49,8.78,3.91,11.5,7.75,3.54,9.56,13.08,0.82,0.0,0.2213,99.58,3290.2,3036.78,1.0881,59.79,1.0,59.79,77.29,77.29,0.0,51.19,1.0,51.19,77.29,77.29,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.82,5.34,5.97,10.49,8.45,3.91,11.5,6.43,3.54,9.56,13.08,0.82,0.0,0.21748,93.65,3089.91,3036.78,1.0865,58.82,1.0,58.82,75.82,76.27,0.0,50.71,1.0,50.71,75.82,76.27,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.3,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.71,9.56,13.08,0.82,0.0,0.21338,111.35,3668.22,3036.78,1.0848,63.39,1.0,63.39,80.3,80.3,0.0,51.94,1.0,51.94,80.3,80.3,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.02,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.18,9.56,13.08,0.82,0.0,0.21338,112.4,3702.63,3036.78,1.0848,63.89,1.0,63.89,82.02,82.02,0.0,52.4,1.0,52.4,82.02,82.02,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,80.83,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.85,9.56,13.08,0.82,0.0,0.21338,111.67,3678.64,3036.78,1.0848,63.89,1.0,63.89,80.83,80.83,0.0,52.4,1.0,52.4,80.83,80.83,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,5.34,5.98,10.49,8.51,3.91,11.5,10.66,5.51,9.56,13.08,0.82,0.0,0.21338,117.51,3871.08,3036.78,1.0848,67.24,1.0,67.24,90.59,90.59,0.0,55.45,1.0,55.45,90.59,90.59,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.64,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.08,9.56,13.08,0.82,0.0,0.21338,112.17,3695.21,3036.78,1.0848,63.53,1.0,63.53,81.64,81.64,0.0,52.06,1.0,52.06,81.64,81.64,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-generator.xml,72.4,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,160.88,5138.24,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.41,5.34,5.98,10.49,4.82,3.03,11.5,4.39,3.24,9.56,13.08,0.82,0.0,0.2113,79.76,2545.81,2944.68,1.0839,65.33,1.0,65.33,81.41,81.41,0.0,56.52,1.0,56.52,81.41,81.41,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.29,5.01,6.17,10.5,8.02,3.97,18.18,6.99,2.88,14.58,13.08,0.82,0.0,0.21273,141.59,4529.85,2950.08,1.0845,51.39,1.0,51.39,74.29,74.29,0.0,44.5,1.0,44.5,74.29,74.29,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-laundry-room.xml,71.53,5.01,6.17,10.49,8.02,3.97,18.18,7.55,2.76,12.35,13.08,0.82,0.0,0.21273,133.67,4275.95,2949.68,1.0845,51.39,1.0,51.39,71.53,71.53,0.0,44.5,1.0,44.5,71.53,71.53,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.49,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21303,89.53,2903.59,2990.17,1.0846,57.89,1.0,57.89,74.49,74.49,0.0,49.37,1.0,49.37,74.49,74.49,0.0,72.78,6.15,5.95,10.49,9.83,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21303 -base-bldgtype-mf-unit-shared-mechvent.xml,69.61,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21303,78.63,2550.1,2990.17,1.0846,57.89,1.0,57.89,69.61,69.61,0.0,49.37,1.0,49.37,69.61,69.61,0.0,68.4,6.15,5.95,10.49,9.83,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21303 -base-bldgtype-mf-unit-shared-pv.xml,12.26,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,47.4,1514.01,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,73.05,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,13.44,13.08,0.82,0.0,0.21273,135.99,4342.76,2944.68,1.0845,52.23,1.0,52.23,73.05,73.05,0.0,45.28,1.0,45.28,73.05,73.05,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-water-heater.xml,71.53,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,12.35,13.08,0.82,0.0,0.21273,133.22,4254.54,2944.68,1.0845,51.34,1.0,51.34,71.53,71.53,0.0,44.55,1.0,44.55,71.53,71.53,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit.xml,74.88,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,99.86,3189.39,2944.68,1.0846,57.89,1.0,57.89,74.88,74.88,0.0,49.37,1.0,49.37,74.88,74.88,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-sfa-unit.xml,83.07,17.77,5.74,10.49,28.33,3.85,11.52,29.6,3.2,9.3,17.18,0.69,0.0,0.22149,156.5,6798.04,4182.74,1.0385,56.25,1.0,56.25,83.07,83.07,0.0,50.65,1.0,50.65,83.07,83.07,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 -base-dhw-combi-tankless.xml,65.22,28.79,8.58,10.49,47.16,5.33,18.31,32.96,4.64,10.29,21.28,0.12,0.0,0.23006,148.23,8465.14,5648.96,1.011,55.08,1.0,55.08,65.22,65.22,0.0,49.53,1.0,49.53,65.22,65.22,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 -base-dhw-desuperheater.xml,84.27,29.51,8.31,10.49,47.0,5.2,11.53,45.37,5.16,6.98,21.28,0.12,0.0,0.22185,163.34,9324.55,5648.96,1.0106,71.49,1.0,71.49,84.27,84.27,0.0,62.0,1.0,62.0,84.27,84.27,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 -base-dhw-dwhr.xml,76.35,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,6.75,21.28,0.12,0.0,0.22149,151.84,8431.86,5495.15,1.0105,56.51,1.0,56.51,76.35,76.35,0.0,50.8,1.0,50.8,76.35,76.35,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 -base-dhw-indirect-standbyloss.xml,69.06,28.71,8.61,10.49,47.04,5.35,18.65,31.27,4.92,14.07,21.28,0.12,0.0,0.22512,153.55,8793.16,5665.98,1.0107,55.08,1.0,55.08,69.06,69.06,0.0,49.53,1.0,49.53,69.06,69.06,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 -base-dhw-jacket-gas.xml,79.19,28.71,8.61,10.49,45.75,5.31,18.65,38.61,5.03,14.24,21.28,0.12,0.0,0.21632,177.2,9869.09,5512.62,1.0103,54.17,1.0,54.17,79.19,79.19,0.0,48.26,1.0,48.26,79.19,79.19,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 -base-dhw-jacket-hpwh.xml,75.1,29.04,8.49,10.49,46.27,5.25,12.42,44.25,4.34,3.37,21.28,0.12,0.0,0.21148,157.32,8818.38,5549.67,1.0101,56.81,1.0,56.81,75.1,75.1,0.0,51.07,1.0,51.07,75.1,75.1,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 -base-dhw-jacket-indirect.xml,67.97,28.71,8.61,10.49,47.04,5.35,18.65,31.76,4.84,13.1,21.28,0.12,0.0,0.22512,152.19,8715.57,5665.98,1.0107,55.08,1.0,55.08,67.97,67.97,0.0,49.53,1.0,49.53,67.97,67.97,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 -base-dhw-low-flow-fixtures.xml,78.79,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.8,21.28,0.12,0.0,0.22149,154.8,8596.35,5495.15,1.0105,56.51,1.0,56.51,78.79,78.79,0.0,50.8,1.0,50.8,78.79,78.79,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 -base-dhw-multiple.xml,68.21,29.51,8.31,10.5,48.31,5.2,11.54,31.95,4.81,6.01,21.28,0.12,0.0,0.2306,132.52,7569.02,5649.43,1.011,61.5,1.0,61.5,68.21,68.21,0.0,55.83,1.0,55.83,68.21,68.21,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 -base-dhw-none.xml,83.4,28.79,8.58,10.49,45.88,5.3,18.31,38.09,5.11,18.31,22.38,0.12,0.0,0.22122,188.81,10484.46,5495.15,1.0105,61.46,1.0,61.46,83.4,83.4,0.0,56.36,1.0,56.36,83.4,83.4,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 -base-dhw-recirc-demand.xml,79.0,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.98,21.28,0.12,0.0,0.22149,155.05,8609.9,5495.15,1.0105,56.51,1.0,56.51,79.0,79.0,0.0,50.8,1.0,50.8,79.0,79.0,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 -base-dhw-solar-fraction.xml,72.21,29.51,8.31,10.49,47.03,5.17,11.53,39.77,4.87,3.16,21.28,0.12,0.0,0.22149,147.36,8182.96,5495.15,1.0105,56.51,1.0,56.51,72.21,72.21,0.0,50.8,1.0,50.8,72.21,72.21,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 -base-dhw-solar-indirect-flat-plate.xml,70.39,29.51,8.31,10.49,47.03,5.17,11.53,39.06,5.06,1.74,21.28,0.12,0.0,0.22149,143.8,7985.16,5495.15,1.0105,56.51,1.0,56.51,70.39,70.39,0.0,50.8,1.0,50.8,70.39,70.39,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 -base-dhw-tank-elec-uef.xml,79.07,29.59,8.28,10.49,47.15,5.15,11.39,39.41,4.92,9.1,21.28,0.12,0.0,0.22302,155.3,8611.97,5486.95,1.0106,56.73,1.0,56.73,79.07,79.07,0.0,50.97,1.0,50.97,79.07,79.07,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 -base-dhw-tank-gas-uef.xml,79.02,28.95,8.52,10.49,46.13,5.27,17.66,38.48,5.05,14.75,21.28,0.12,0.0,0.23059,178.96,9927.13,5486.95,1.011,54.17,1.0,54.17,79.02,79.02,0.0,48.26,1.0,48.26,79.02,79.02,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 -base-dhw-tank-heat-pump-uef.xml,74.22,29.36,8.37,10.49,46.79,5.2,11.81,45.15,4.25,2.4,21.28,0.12,0.0,0.2183,159.17,8865.76,5512.62,1.0104,56.53,1.0,56.53,74.22,74.22,0.0,50.84,1.0,50.84,74.22,74.22,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 -base-dhw-tank-oil.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,192.41,10716.16,5512.62,1.0103,54.17,1.0,54.17,79.81,79.81,0.0,48.26,1.0,48.26,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tank-wood.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,,,,,54.17,1.0,54.17,79.81,79.81,0.0,48.26,1.0,48.26,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tankless-electric-uef.xml,79.44,29.51,8.31,10.49,47.03,5.17,11.53,39.93,4.85,9.17,21.28,0.12,0.0,0.22149,156.4,8684.95,5495.15,1.0105,56.64,1.0,56.64,79.44,79.44,0.0,50.91,1.0,50.91,79.44,79.44,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 -base-dhw-tankless-gas-uef.xml,72.75,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,9.66,21.28,0.12,0.0,0.22122,168.81,9373.82,5495.15,1.0105,54.17,1.0,54.17,72.75,72.75,0.0,48.26,1.0,48.26,72.75,72.75,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 -base-dhw-tankless-propane.xml,75.08,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,11.2,21.28,0.12,0.0,0.22122,179.02,9941.26,5495.15,1.0105,54.17,1.0,54.17,75.08,75.08,0.0,48.26,1.0,48.26,75.08,75.08,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 -base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,56.39,1.0,56.39,76.62,76.62,0.0,51.17,1.0,51.17,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 -base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,56.2,1.0,56.2,76.85,76.85,0.0,50.87,1.0,50.87,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 -base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,58.11,1.0,58.11,82.95,82.95,0.0,52.84,1.0,52.84,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 -base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.28,1.0,57.28,80.46,80.46,0.0,51.75,1.0,51.75,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 -base-enclosure-beds-4.xml,80.89,29.69,8.62,12.54,47.33,5.33,13.57,42.92,5.04,10.72,21.99,0.7,0.0,0.22142,158.38,9367.63,5764.99,1.026,55.68,1.0,55.68,80.89,80.89,0.0,49.81,1.0,49.81,80.89,80.89,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 -base-enclosure-beds-5.xml,80.83,29.88,8.93,14.54,47.62,5.5,15.57,44.42,5.18,12.39,22.7,1.04,0.0,0.22134,156.44,9815.49,6024.65,1.0414,54.87,1.0,54.87,80.83,80.83,0.0,48.86,1.0,48.86,80.83,80.83,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 -base-enclosure-ceilingtypes.xml,89.46,29.51,8.31,10.49,47.03,5.17,11.53,52.16,4.98,9.03,21.28,0.12,0.0,0.078,190.27,10494.5,5495.15,1.0037,56.39,1.0,56.39,89.46,89.46,0.0,50.69,1.0,50.69,89.46,89.46,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 -base-enclosure-floortypes.xml,104.52,19.32,7.11,10.49,30.85,4.53,11.52,52.94,4.56,9.22,15.13,0.78,0.0,0.22149,231.18,10114.68,4132.16,1.0588,54.77,1.0,54.77,104.52,104.52,0.0,49.36,1.0,49.36,104.52,104.52,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 -base-enclosure-garage.xml,78.25,29.47,6.84,10.49,46.97,4.45,11.73,41.67,3.26,9.11,21.42,0.12,0.0,0.22149,159.53,8834.44,5479.85,1.0105,57.15,1.0,57.15,78.25,78.25,0.0,51.3,1.0,51.3,78.25,78.25,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 -base-enclosure-infil-ach-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm50.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-ela.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-ach.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-cfm.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-overhangs.xml,78.91,29.51,8.31,10.49,47.03,5.17,11.53,39.8,4.72,9.02,21.28,0.12,0.0,0.22149,155.75,8648.83,5495.15,1.0105,56.51,1.0,56.51,78.91,78.91,0.0,50.8,1.0,50.8,78.91,78.91,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-skylights.xml,79.53,29.51,8.31,10.49,47.03,5.17,11.53,37.88,5.68,9.02,21.28,0.12,0.0,0.20166,152.24,8446.18,5495.15,1.0096,56.51,1.0,56.51,79.53,79.53,0.0,50.8,1.0,50.8,79.53,79.53,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 -base-enclosure-walltypes.xml,93.06,29.48,8.3,10.49,46.97,5.16,11.53,58.7,4.04,9.03,21.28,0.12,0.0,-0.04335,206.89,11349.14,5497.0,0.9979,56.62,1.0,56.62,93.06,93.06,0.0,50.91,1.0,50.91,93.06,93.06,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 -base-foundation-ambient.xml,87.48,19.32,7.11,10.49,30.85,4.53,11.52,32.25,5.76,9.21,15.13,0.78,0.0,0.22149,164.31,7188.92,4132.16,1.0588,54.97,1.0,54.97,87.48,87.48,0.0,49.58,1.0,49.58,87.48,87.48,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 -base-foundation-basement-garage.xml,80.98,26.74,7.06,10.49,42.6,4.52,11.53,37.17,5.01,9.26,17.78,0.66,0.0,0.22149,159.69,8064.5,4880.55,1.0347,55.29,1.0,55.29,80.98,80.98,0.0,50.06,1.0,50.06,80.98,80.98,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 -base-foundation-conditioned-basement-slab-insulation.xml,78.51,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.14,9.02,21.28,0.12,0.0,0.22149,151.91,8435.87,5495.15,1.0105,56.51,1.0,56.51,78.51,78.51,0.0,50.8,1.0,50.8,78.51,78.51,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 -base-foundation-conditioned-basement-wall-insulation.xml,79.12,28.09,7.95,10.49,44.76,4.99,11.53,38.33,4.52,9.02,21.28,0.12,0.0,0.22149,154.29,8411.05,5394.52,1.0105,57.45,1.0,57.45,79.12,79.12,0.0,51.58,1.0,51.58,79.12,79.12,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 -base-foundation-multiple.xml,80.44,19.04,6.51,10.49,30.42,4.25,11.67,26.36,5.01,9.17,15.13,0.78,0.0,0.22149,144.51,6265.48,4094.86,1.0588,54.49,1.0,54.49,80.44,80.44,0.0,48.97,1.0,48.97,80.44,80.44,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 -base-foundation-slab.xml,72.05,20.75,6.58,10.49,33.09,4.28,11.53,21.48,4.4,9.21,15.13,0.78,0.0,0.22149,125.08,5513.5,4163.06,1.0588,54.08,1.0,54.08,72.05,72.05,0.0,48.9,1.0,48.9,72.05,72.05,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-assembly-r.xml,77.91,18.96,6.69,10.49,30.29,4.34,11.67,25.03,4.55,9.19,15.13,0.78,0.0,0.22149,139.31,6039.93,4094.68,1.0588,53.91,1.0,53.91,77.91,77.91,0.0,48.45,1.0,48.45,77.91,77.91,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-wall-insulation.xml,84.7,18.96,6.69,10.49,30.29,4.34,11.67,32.84,4.23,9.13,15.13,0.78,0.0,0.22149,165.03,7155.15,4094.68,1.0588,53.91,1.0,53.91,84.7,84.7,0.0,48.45,1.0,48.45,84.7,84.7,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement.xml,80.81,18.96,6.69,10.49,30.29,4.34,11.67,26.65,5.05,9.18,15.13,0.78,0.0,0.22149,145.59,6312.01,4094.68,1.0588,53.91,1.0,53.91,80.81,80.81,0.0,48.45,1.0,48.45,80.81,80.81,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unvented-crawlspace.xml,78.45,17.55,7.45,10.49,28.04,4.71,11.78,23.13,4.98,9.29,15.13,0.78,0.0,0.22149,135.05,5800.87,4056.7,1.0588,55.71,1.0,55.71,78.45,78.45,0.0,50.26,1.0,50.26,78.45,78.45,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace-above-grade.xml,80.97,17.59,7.35,10.49,28.09,4.65,11.79,25.28,5.06,9.36,15.13,0.78,0.0,0.22149,142.73,6127.71,4054.81,1.0588,55.86,1.0,55.86,80.97,80.97,0.0,50.41,1.0,50.41,80.97,80.97,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace.xml,80.62,17.55,7.45,10.49,28.04,4.71,11.78,25.4,4.9,9.37,15.13,0.78,0.0,0.22149,142.82,6134.59,4056.7,1.0588,55.71,1.0,55.71,80.62,80.62,0.0,50.26,1.0,50.26,80.62,80.62,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 -base-foundation-walkout-basement.xml,80.57,33.11,9.36,10.49,52.77,5.71,11.53,45.02,5.14,9.02,21.28,0.12,0.0,0.22149,164.23,9437.16,5792.15,0.9921,56.2,1.0,56.2,80.57,80.57,0.0,50.98,1.0,50.98,80.57,80.57,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.45,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22137,165.56,9311.77,5565.81,1.0105,70.01,1.0,70.01,85.45,85.45,0.0,60.55,1.0,60.55,85.45,85.45,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.58,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.7,9.02,21.28,0.12,0.0,0.21902,85.66,4889.24,5648.96,1.0104,56.0,1.0,56.0,86.58,86.58,0.0,50.13,1.0,50.13,86.58,86.58,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.77,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.66,9.02,21.28,0.12,0.0,0.2198,84.04,4666.35,5495.15,1.0105,53.22,1.0,53.22,84.77,84.77,0.0,47.28,1.0,47.28,84.77,84.77,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.75,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.65,9.02,21.28,0.12,0.0,0.2198,84.0,4664.31,5495.15,1.0105,53.22,1.0,53.22,84.75,84.75,0.0,47.28,1.0,47.28,84.75,84.75,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed.xml,84.52,29.51,8.31,10.49,22.05,4.36,11.53,20.98,3.66,9.02,21.28,0.12,0.0,0.2198,83.78,4651.96,5495.15,1.0105,53.22,1.0,53.22,84.52,84.52,0.0,47.28,1.0,47.28,84.52,84.52,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-2-speed.xml,73.18,29.51,8.31,10.49,22.05,4.36,11.53,15.98,2.62,9.02,21.28,0.12,0.0,0.2198,74.37,4129.69,5495.15,1.0105,53.22,1.0,53.22,73.18,73.18,0.0,47.28,1.0,47.28,73.18,73.18,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-var-speed.xml,72.86,29.51,8.31,10.49,22.05,4.22,11.53,16.59,1.99,9.02,21.28,0.12,0.0,0.21969,74.65,4137.62,5484.97,1.0105,53.29,1.0,53.29,72.86,72.86,0.0,47.34,1.0,47.34,72.86,72.86,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 -base-hvac-boiler-elec-only.xml,100.03,29.51,8.31,10.49,22.92,5.2,11.53,30.6,4.7,9.02,21.28,0.12,0.0,0.21902,98.04,5595.85,5648.96,1.0104,56.0,1.0,56.0,100.03,100.03,0.0,50.13,1.0,50.13,100.03,100.03,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-boiler-gas-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.59,4.7,9.02,21.28,0.12,0.0,0.23058,133.48,7623.09,5648.96,1.011,57.08,1.0,57.08,72.02,72.02,0.0,51.67,1.0,51.67,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-oil-only.xml,72.04,29.51,8.31,10.49,48.31,5.2,11.53,32.6,4.7,9.02,21.28,0.12,0.0,0.23058,160.75,9180.54,5648.96,1.011,57.08,1.0,57.08,72.04,72.04,0.0,51.67,1.0,51.67,72.04,72.04,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-propane-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.58,4.7,9.02,21.28,0.12,0.0,0.23058,150.79,8611.85,5648.96,1.011,57.08,1.0,57.08,72.02,72.02,0.0,51.67,1.0,51.67,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-central-ac-only-1-speed-seer2.xml,85.88,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.96,9.02,21.28,0.12,0.0,0.22185,164.69,9401.4,5648.96,1.0106,71.49,1.0,71.49,85.88,85.88,0.0,62.0,1.0,62.0,85.88,85.88,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-1-speed.xml,85.91,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.97,9.02,21.28,0.12,0.0,0.22185,164.7,9402.26,5648.96,1.0106,71.49,1.0,71.49,85.91,85.91,0.0,62.0,1.0,62.0,85.91,85.91,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-2-speed.xml,83.62,29.51,8.31,10.49,47.0,5.2,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22185,163.31,9322.77,5648.96,1.0106,71.49,1.0,71.49,83.62,83.62,0.0,62.0,1.0,62.0,83.62,83.62,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-var-speed.xml,82.6,29.51,8.31,10.49,47.0,5.05,11.53,44.89,3.28,9.02,21.28,0.12,0.0,0.22172,162.86,9279.24,5638.15,1.0106,71.52,1.0,71.52,82.6,82.6,0.0,62.03,1.0,62.03,82.6,82.6,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.13,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.97,9.02,21.28,0.12,0.0,0.21902,85.94,4905.54,5648.96,1.0104,54.85,1.0,54.85,87.13,87.13,0.0,48.88,1.0,48.88,87.13,87.13,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 -base-hvac-dse.xml,79.08,29.51,8.31,10.49,47.03,5.17,11.53,38.26,5.36,9.02,21.28,0.12,0.0,0.22149,152.75,8482.26,5495.15,1.0105,56.5,1.0,56.5,79.08,79.08,0.0,50.8,1.0,50.8,79.08,79.08,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.45,29.52,8.31,10.49,31.7,4.36,11.53,28.259999999999998,3.66,9.02,21.28,0.12,0.0,0.2195,110.57,6139.57,5495.15,1.0105,53.22,1.0,53.22,81.45,81.45,0.0,47.28,1.0,47.28,81.45,81.45,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.75,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,31.39,3.66,9.02,21.28,0.12,0.0,0.21935,121.32,6736.23,5495.15,1.0104,53.22,1.0,53.22,80.75,80.75,0.0,47.28,1.0,47.28,80.75,80.75,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 -base-hvac-ducts-buried.xml,76.13,29.51,8.31,10.49,47.03,5.17,11.53,36.7,4.53,9.02,21.28,0.12,0.0,0.22149,147.35,8182.4,5495.15,1.0105,56.51,1.0,56.51,76.13,76.13,0.0,50.8,1.0,50.8,76.13,76.13,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 -base-hvac-ducts-leakage-cfm50.xml,77.47,29.51,8.31,10.49,47.03,5.17,11.53,37.97,4.7,9.02,21.28,0.12,0.0,0.22149,150.94,8381.95,5495.15,1.0105,56.51,1.0,56.51,77.47,77.47,0.0,50.8,1.0,50.8,77.47,77.47,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 -base-hvac-elec-resistance-only.xml,96.0,29.51,8.31,10.49,22.92,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.21902,94.4,5388.07,5648.96,1.0104,56.0,1.0,56.0,96.0,96.0,0.0,50.13,1.0,50.13,96.0,96.0,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-evap-cooler-only-ducted.xml,77.0,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.7,9.02,21.28,0.12,0.0,0.22185,159.11,9083.28,5648.96,1.0106,71.49,1.0,71.49,77.0,77.0,0.0,62.0,1.0,62.0,77.0,77.0,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 -base-hvac-evap-cooler-only.xml,76.84,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.63,9.02,21.28,0.12,0.0,0.22185,159.02,9077.87,5648.96,1.0106,71.49,1.0,71.49,76.84,76.84,0.0,62.0,1.0,62.0,76.84,76.84,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 -base-hvac-fireplace-wood-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.65,1.0,57.65,77.16,77.16,0.0,52.05,1.0,52.05,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-floor-furnace-propane-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,159.53,9106.71,5648.96,1.0106,57.65,1.0,57.65,77.16,77.16,0.0,52.05,1.0,52.05,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-furnace-elec-only.xml,112.37,29.51,8.31,10.49,22.92,5.2,11.53,37.93,4.7,9.02,21.28,0.12,0.0,0.21902,109.76,6264.68,5648.96,1.0104,56.0,1.0,56.0,112.37,112.37,0.0,50.13,1.0,50.13,112.37,112.37,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-furnace-gas-only.xml,79.22,29.51,8.31,10.49,47.0,5.2,11.53,40.33,4.7,9.02,21.28,0.12,0.0,0.22185,152.59,8710.82,5648.96,1.0106,57.65,1.0,57.65,79.22,79.22,0.0,52.05,1.0,52.05,79.22,79.22,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.44,9.02,21.28,0.12,0.0,0.22137,165.07,9284.29,5565.81,1.0105,70.01,1.0,70.01,84.35,84.35,0.0,60.55,1.0,60.55,84.35,84.35,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.93,29.51,8.31,10.49,22.92,5.2,11.53,13.9,4.7,9.02,21.28,0.12,0.0,0.21902,71.64,4089.39,5648.96,1.0104,56.0,1.0,56.0,71.93,71.93,0.0,50.13,1.0,50.13,71.93,71.93,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-ground-to-air-heat-pump.xml,69.13,29.51,8.31,10.49,22.05,4.36,11.53,12.84,3.19,9.02,21.28,0.12,0.0,0.2198,69.76,3873.7,5495.15,1.0105,53.22,1.0,53.22,69.13,69.13,0.0,47.28,1.0,47.28,69.13,69.13,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,83.06,29.51,8.31,10.49,22.05,4.36,11.53,20.65,3.31,9.02,21.28,0.12,0.0,0.2198,82.78,4596.73,5495.15,1.0105,53.22,1.0,53.22,83.06,83.06,0.0,47.28,1.0,47.28,83.06,83.06,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,78.23,29.51,8.31,10.49,47.03,5.17,11.53,39.53,4.5,9.02,21.28,0.12,0.0,0.22149,155.07,8610.94,5495.15,1.0105,56.51,1.0,56.51,78.23,78.23,0.0,50.8,1.0,50.8,78.23,78.23,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 -base-hvac-install-quality-ground-to-air-heat-pump.xml,67.7,29.51,8.31,10.49,22.05,4.36,11.53,12.55,2.83,9.02,21.28,0.12,0.0,0.2198,68.81,3820.55,5495.15,1.0105,53.22,1.0,53.22,67.7,67.7,0.0,47.28,1.0,47.28,67.7,67.7,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.45,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.83,9.02,21.28,0.12,0.0,0.22185,161.99,9247.5,5648.96,1.0106,71.49,1.0,71.49,81.45,81.45,0.0,62.0,1.0,62.0,81.45,81.45,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.8,29.51,8.31,10.49,22.05,4.36,11.53,13.89,1.93,9.02,21.28,0.12,0.0,0.2198,69.99,3886.36,5495.15,1.0105,53.22,1.0,53.22,67.8,67.8,0.0,47.28,1.0,47.28,67.8,67.8,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-air-conditioner-only-ducted.xml,81.7,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.96,9.02,21.28,0.12,0.0,0.22185,162.14,9256.21,5648.96,1.0106,71.49,1.0,71.49,81.7,81.7,0.0,62.0,1.0,62.0,81.7,81.7,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-air-conditioner-only-ductless.xml,80.9,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.57,9.02,21.28,0.12,0.0,0.22185,161.67,9228.88,5648.96,1.0106,71.49,1.0,71.49,80.9,80.9,0.0,62.0,1.0,62.0,80.9,80.9,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.59,29.51,8.29,10.49,47.0,4.24,11.53,44.89,1.97,9.02,21.28,0.12,0.0,0.22137,163.12,9174.59,5565.81,1.0105,70.01,1.0,70.01,80.59,80.59,0.0,60.55,1.0,60.55,80.59,80.59,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.81,29.51,8.31,10.49,22.92,5.2,11.53,14.43,4.7,9.02,21.28,0.12,0.0,0.21902,72.73,4151.1,5648.96,1.0104,56.0,1.0,56.0,72.81,72.81,0.0,50.13,1.0,50.13,72.81,72.81,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-mini-split-heat-pump-ducted.xml,68.14,29.51,8.31,10.49,22.05,4.36,11.53,14.03,1.97,9.02,21.28,0.12,0.0,0.2198,70.28,3902.38,5495.15,1.0105,53.22,1.0,53.22,68.14,68.14,0.0,47.28,1.0,47.28,68.14,68.14,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-heat-pump-ductless.xml,63.08,29.51,8.31,10.49,22.05,4.36,11.53,11.53,1.69,9.02,21.28,0.12,0.0,0.2198,65.86,3656.89,5495.15,1.0105,53.22,1.0,53.22,63.08,63.08,0.0,47.28,1.0,47.28,63.08,63.08,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 -base-hvac-multiple.xml,96.79,29.5,8.31,10.49,35.480000000000004,7.12,11.53,44.97,5.4399999999999995,9.02,21.28,0.12,0.0,0.21189,138.98,8633.7,6150.07,1.0101,55.48,1.0,55.48,96.79,96.79,0.0,50.64,1.0,50.64,96.79,96.79,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 -base-hvac-none.xml,94.49,0.0,42.92,5.18,0.0,23.98,6.1,0.0,26.17,4.75,15.13,0.78,0.0,0.18415,,,,,69.6,1.0,69.6,94.49,94.49,0.0,62.74,1.0,62.74,94.49,94.49,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 -base-hvac-programmable-thermostat.xml,76.08,29.51,8.31,10.49,47.03,5.17,11.53,37.4,4.25,9.03,21.28,0.12,0.0,0.22149,148.95,8271.56,5495.15,1.0105,56.51,1.0,56.51,76.08,76.08,0.0,50.8,1.0,50.8,76.08,76.08,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 -base-hvac-ptac-with-heating-electricity.xml,94.97,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.09,9.02,21.28,0.12,0.0,0.22006,94.08,5256.75,5529.74,1.0105,53.13,1.0,53.13,94.97,94.97,0.0,47.17,1.0,47.17,94.97,94.97,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 -base-hvac-ptac-with-heating-natural-gas.xml,73.24,29.51,8.31,10.49,47.0,5.68,11.53,35.26,3.09,9.02,21.28,0.12,0.0,0.22194,141.37,7900.01,5529.74,1.0106,56.44,1.0,56.44,73.24,73.24,0.0,50.75,1.0,50.75,73.24,73.24,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-ptac.xml,81.44,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.09,9.02,21.28,0.12,0.0,0.22194,161.14,9254.72,5683.08,1.0106,71.43,1.0,71.43,81.44,81.44,0.0,61.95,1.0,61.95,81.44,81.44,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-pthp.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.13,1.0,53.13,66.83,66.83,0.0,47.17,1.0,47.17,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-only-ceer.xml,82.98,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.89,9.02,21.28,0.12,0.0,0.22194,162.15,9312.47,5683.08,1.0106,71.43,1.0,71.43,82.98,82.98,0.0,61.95,1.0,61.95,82.98,82.98,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-only.xml,82.96,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.88,9.02,21.28,0.12,0.0,0.22194,162.14,9311.95,5683.08,1.0106,71.43,1.0,71.43,82.96,82.96,0.0,61.95,1.0,61.95,82.96,82.96,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-with-heating.xml,96.76,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.88,9.02,21.28,0.12,0.0,0.22006,95.1,5313.98,5529.74,1.0105,53.13,1.0,53.13,96.76,96.76,0.0,47.17,1.0,47.17,96.76,96.76,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-with-reverse-cycle.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.13,1.0,53.13,66.83,66.83,0.0,47.17,1.0,47.17,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-space-heater-gas-only.xml,69.04,29.51,8.31,10.49,47.0,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.22185,122.49,6992.53,5648.96,1.0106,57.65,1.0,57.65,69.04,69.04,0.0,52.05,1.0,52.05,69.04,69.04,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-stove-wood-pellets-only.xml,77.14,29.51,8.31,10.49,47.0,5.2,11.53,35.23,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.65,1.0,57.65,77.14,77.14,0.0,52.05,1.0,52.05,77.14,77.14,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-undersized.xml,74.16,29.51,8.31,10.49,47.03,5.17,11.53,34.76,4.29,9.02,21.28,0.12,0.0,0.22149,141.93,7881.32,5495.15,1.0105,56.51,1.0,56.51,74.16,74.16,0.0,50.8,1.0,50.8,74.16,74.16,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 -base-hvac-wall-furnace-elec-only.xml,96.97,29.51,8.31,10.49,22.92,5.2,11.53,28.78,4.7,9.02,21.28,0.12,0.0,0.21902,95.31,5440.07,5648.96,1.0104,56.0,1.0,56.0,96.97,96.97,0.0,50.13,1.0,50.13,96.97,96.97,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 -base-lighting-ceiling-fans.xml,78.72,29.5,8.0,10.49,47.0,5.01,11.52,39.45,4.67,9.02,21.8,0.12,0.0,0.21919,154.08,8639.13,5548.98,1.0104,56.53,1.0,56.53,78.72,78.72,0.0,50.88,1.0,50.88,78.72,78.72,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 -base-location-baltimore-md.xml,75.37,20.19,10.68,9.61,32.31,6.71,10.82,23.26,7.15,8.51,15.13,0.78,0.0,0.27306,79.59,9889.08,11579.58,1.073,51.29,1.0,51.29,75.37,75.37,0.0,48.91,1.0,48.91,75.37,75.37,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 -base-location-capetown-zaf.xml,79.78,3.94,4.59,8.35,6.31,2.51,9.47,1.65,3.66,7.51,15.13,0.78,0.0,0.17223,,,,,50.48,1.0,50.48,79.78,79.78,0.0,48.28,1.0,48.28,79.78,79.78,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 -base-location-dallas-tx.xml,71.82,9.39,26.65,7.53,15.05,15.84,8.51,6.07,13.71,6.72,15.13,0.78,0.0,0.27332,77.15,6246.97,7545.78,1.0731,46.94,1.0,46.94,71.82,71.82,0.0,44.1,1.0,44.1,71.82,71.82,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 -base-location-duluth-mn.xml,80.9,44.99,1.76,13.08,71.67,1.98,14.52,69.08,2.23,11.42,15.13,0.78,0.0,0.25692,182.79,12326.56,6310.8,1.0686,54.17,1.0,54.17,80.9,80.9,0.0,47.1,1.0,47.1,80.9,80.9,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 -base-location-helena-mt.xml,78.49,48.36,3.58,11.9,77.03,2.64,12.95,66.03,2.35,10.17,21.28,0.12,0.0,0.22296,202.54,11816.8,5772.96,1.0106,57.98,1.0,57.98,78.49,78.49,0.0,51.0,1.0,51.0,78.49,78.49,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 -base-location-honolulu-hi.xml,83.24,0.0,42.93,5.18,0.0,23.77,6.1,0.0,21.53,4.75,15.13,0.78,0.0,0.18335,,,,,62.57,1.0,62.57,83.24,83.24,0.0,41.39,1.0,41.39,83.24,83.24,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 -base-location-miami-fl.xml,80.63,0.05,41.23,5.34,0.08,24.09,6.27,0.01,21.0,4.88,15.13,0.78,0.0,0.20399,79.68,6171.56,7348.59,1.0541,63.34,1.0,63.34,80.63,80.63,0.0,43.37,1.0,43.37,80.63,80.63,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 -base-location-phoenix-az.xml,72.82,1.23,51.89,5.61,1.96,29.4,6.56,0.27,23.05,5.11,15.13,0.78,0.0,0.2826,73.51,4954.67,6265.71,1.0757,48.88,1.0,48.88,72.82,72.82,0.0,44.5,1.0,44.5,72.82,72.82,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 -base-location-portland-or.xml,82.44,12.85,3.42,9.98,20.58,2.47,11.26,20.52,2.67,8.93,15.13,0.78,0.0,0.18847,159.44,4790.85,2862.1,1.0498,66.31,1.0,66.31,82.44,82.44,0.0,50.01,1.0,50.01,82.44,82.44,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 -base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.51,1.0,56.51,82.2,82.2,0.0,50.8,1.0,50.8,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-airflow-fraction-zero.xml,78.85,29.25,8.43,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.85,8439.57,5573.33,1.0105,56.51,1.0,56.51,78.85,78.85,0.0,50.8,1.0,50.8,78.85,78.85,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.9,29.25,8.43,10.49,46.61,5.22,11.53,35.86,4.9,9.02,21.28,0.5,0.0,0.22149,144.33,8128.72,5573.33,1.0105,56.51,1.0,56.51,75.9,75.9,0.0,50.8,1.0,50.8,75.9,75.9,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 -base-mechvent-cfis.xml,79.76,29.25,8.43,10.49,46.61,5.22,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149,153.09,8622.06,5573.33,1.0105,56.51,1.0,56.51,79.76,79.76,0.0,50.8,1.0,50.8,79.76,79.76,0.0,75.79,33.33,8.36,10.49,53.09,5.2,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149 -base-mechvent-erv-atre-asre.xml,71.15,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149,124.05,7095.97,5660.33,1.0105,56.51,1.0,56.51,71.15,71.15,0.0,50.8,1.0,50.8,71.15,71.15,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-erv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149,124.06,7096.46,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-exhaust.xml,78.09,29.25,8.43,10.49,46.61,5.22,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149,150.77,8491.37,5573.33,1.0105,56.51,1.0,56.51,78.09,78.09,0.0,50.8,1.0,50.8,78.09,78.09,0.0,74.2,33.33,8.36,10.49,53.09,5.2,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149,124.05,7095.83,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.51,1.0,56.51,71.16,71.16,0.0,50.8,1.0,50.8,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-multiple.xml,82.61,29.06,8.52,10.49,46.31,6.16,11.53,42.72,5.86,9.03,21.28,1.49,0.0,0.22163,162.64,9331.67,5677.62,1.0106,57.25,1.0,57.25,82.61,82.61,0.0,51.55,1.0,51.55,82.61,82.61,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 -base-mechvent-supply.xml,77.83,29.25,8.43,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.26,8406.48,5573.33,1.0105,56.51,1.0,56.51,77.83,77.83,0.0,50.8,1.0,50.8,77.83,77.83,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-whole-house-fan.xml,77.36,29.51,8.31,10.49,47.03,5.17,11.53,39.6,3.41,9.03,21.28,0.12,0.0,0.22149,154.5,8579.36,5495.15,1.0105,56.51,1.0,56.51,77.36,77.36,0.0,50.8,1.0,50.8,77.36,77.36,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 -base-misc-generators.xml,77.17,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,195.32,10846.58,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-pv.xml,37.9,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,122.38,6796.09,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-appliances-dehumidifier-ief-portable.xml,71.7,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.74,6.72,15.13,0.78,0.1,0.27332,76.96,6255.99,7575.66,1.0731,48.25,1.0,48.25,71.7,71.7,0.0,46.72,1.0,46.72,71.7,71.7,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 +base-appliances-dehumidifier-ief-whole-home.xml,71.69,9.33,26.79,7.53,14.89,15.88,8.51,6.03,13.74,6.72,15.13,0.78,0.1,0.27332,76.95,6256.09,7576.38,1.0731,48.34,1.0,48.34,71.69,71.69,0.0,46.93,1.0,46.93,71.69,71.69,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 +base-appliances-dehumidifier-multiple.xml,71.69,9.37,26.82,7.53,14.91,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.96,6255.1,7573.95,1.0731,48.11,1.0,48.11,71.69,71.69,0.0,46.36,1.0,46.36,71.69,71.69,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-dehumidifier.xml,71.66,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.93,6254.05,7575.66,1.0731,48.25,1.0,48.25,71.66,71.66,0.0,46.72,1.0,46.72,71.66,71.66,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 +base-appliances-gas.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,162.59,9026.23,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-modified.xml,80.07,29.51,8.31,10.49,47.03,5.17,11.53,39.41,4.92,9.55,21.6,0.12,0.0,0.22149,156.21,8674.48,5495.15,1.0105,56.95,1.0,56.95,80.07,80.07,0.0,51.2,1.0,51.2,80.07,80.07,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 +base-appliances-none.xml,81.13,29.51,8.31,10.49,47.03,5.17,11.53,39.29,4.95,9.46,22.52,0.12,0.0,0.22149,157.07,8722.23,5495.15,1.0105,56.68,1.0,56.68,81.13,81.13,0.0,50.97,1.0,50.97,81.13,81.13,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 +base-appliances-oil.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,166.85,9262.72,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-propane.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,165.26,9174.64,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-appliances-wood.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,,,,,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 +base-atticroof-cathedral.xml,72.6,32.31,8.49,10.49,51.46,5.18,11.53,35.63,4.46,9.02,21.28,0.12,0.0,0.19844,139.72,8027.33,5691.51,1.0094,56.15,1.0,56.15,72.6,72.6,0.0,51.39,1.0,51.39,72.6,72.6,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 +base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.59,1.0,57.59,74.48,74.48,0.0,51.5,1.0,51.5,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 +base-atticroof-flat.xml,72.12,29.29,8.56,10.49,46.65,5.24,11.52,32.89,3.9,9.02,21.28,0.12,0.0,0.19801,136.87,7587.11,5491.72,1.0094,56.66,1.0,56.66,72.12,72.12,0.0,50.95,1.0,50.95,72.12,72.12,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 +base-atticroof-radiant-barrier.xml,78.23,9.39,26.65,7.53,15.05,15.84,8.51,9.26,14.82,6.72,15.13,0.78,0.0,0.22811,86.16,6895.88,7545.78,1.0606,47.03,1.0,47.03,78.23,78.23,0.0,44.17,1.0,44.17,78.23,78.23,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 +base-atticroof-unvented-insulated-roof.xml,74.87,29.51,8.31,10.49,47.03,5.17,11.53,35.9,4.15,9.02,21.28,0.12,0.0,0.1867,145.08,8043.17,5495.15,1.0089,56.68,1.0,56.68,74.87,74.87,0.0,50.97,1.0,50.97,74.87,74.87,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 +base-atticroof-vented.xml,77.29,30.04,8.11,10.49,47.87,5.07,11.83,39.35,4.34,9.19,21.28,0.12,0.0,0.22173,152.75,8562.46,5547.13,1.0106,57.47,1.0,57.47,77.29,77.29,0.0,51.89,1.0,51.89,77.29,77.29,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.92,7.78,5.19,10.49,12.44,3.55,11.51,17.7,2.44,9.57,13.08,0.82,0.0,0.21303,140.48,4687.07,3076.07,1.0846,67.78,1.0,67.78,83.92,83.92,0.0,58.78,1.0,58.78,83.92,83.92,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-location-portland-or.xml,77.83,3.38,3.51,9.98,5.41,2.44,10.99,5.28,1.86,9.12,13.08,0.82,0.0,0.18156,97.93,2793.02,2661.18,1.0717,62.28,1.0,62.28,77.83,77.83,0.0,51.34,1.0,51.34,77.83,77.83,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,77.2,5.34,5.98,10.49,8.78,3.91,11.5,7.68,3.54,9.56,13.08,0.82,0.0,0.2213,99.73,3295.13,3036.78,1.0881,59.77,1.0,59.77,77.2,77.2,0.0,51.18,1.0,51.18,77.2,77.2,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.78,5.34,5.98,10.49,8.78,3.91,11.5,8.12,3.54,9.56,13.08,0.82,0.0,0.2213,101.36,3348.99,3036.78,1.0881,59.9,1.0,59.9,77.78,77.78,0.0,51.27,1.0,51.27,77.78,77.78,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.29,5.34,5.98,10.49,8.78,3.91,11.5,7.75,3.54,9.56,13.08,0.82,0.0,0.2213,99.58,3290.2,3036.78,1.0881,59.9,1.0,59.9,77.29,77.29,0.0,51.27,1.0,51.27,77.29,77.29,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.82,5.34,5.97,10.49,8.45,3.91,11.5,6.43,3.54,9.56,13.08,0.82,0.0,0.21748,93.65,3089.91,3036.78,1.0865,58.93,1.0,58.93,75.82,76.27,0.0,50.78,1.0,50.78,75.82,76.27,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.3,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.71,9.56,13.08,0.82,0.0,0.21338,111.35,3668.22,3036.78,1.0848,63.53,1.0,63.53,80.3,80.3,0.0,52.03,1.0,52.03,80.3,80.3,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.02,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.18,9.56,13.08,0.82,0.0,0.21338,112.4,3702.63,3036.78,1.0848,64.03,1.0,64.03,82.02,82.02,0.0,52.5,1.0,52.5,82.02,82.02,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,80.83,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.85,9.56,13.08,0.82,0.0,0.21338,111.67,3678.64,3036.78,1.0848,64.03,1.0,64.03,80.83,80.83,0.0,52.5,1.0,52.5,80.83,80.83,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,5.34,5.98,10.49,8.51,3.91,11.5,10.66,5.51,9.56,13.08,0.82,0.0,0.21338,117.51,3871.08,3036.78,1.0848,67.42,1.0,67.42,90.59,90.59,0.0,55.58,1.0,55.58,90.59,90.59,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.64,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.08,9.56,13.08,0.82,0.0,0.21338,112.17,3695.21,3036.78,1.0848,63.66,1.0,63.66,81.64,81.64,0.0,52.15,1.0,52.15,81.64,81.64,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 +base-bldgtype-mf-unit-shared-generator.xml,72.4,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,160.88,5138.24,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.41,5.34,5.98,10.49,4.82,3.03,11.5,4.39,3.24,9.56,13.08,0.82,0.0,0.2113,79.76,2545.81,2944.68,1.0839,65.43,1.0,65.43,81.41,81.41,0.0,56.6,1.0,56.6,81.41,81.41,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.29,5.01,6.17,10.5,8.02,3.97,18.18,6.99,2.88,14.58,13.08,0.82,0.0,0.21273,141.59,4529.85,2950.08,1.0845,51.49,1.0,51.49,74.29,74.29,0.0,44.56,1.0,44.56,74.29,74.29,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-laundry-room.xml,71.53,5.01,6.17,10.49,8.02,3.97,18.18,7.55,2.76,12.35,13.08,0.82,0.0,0.21273,133.67,4275.95,2949.68,1.0845,51.49,1.0,51.49,71.53,71.53,0.0,44.56,1.0,44.56,71.53,71.53,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.49,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21303,89.53,2903.59,2990.17,1.0846,57.99,1.0,57.99,74.49,74.49,0.0,49.43,1.0,49.43,74.49,74.49,0.0,72.78,6.15,5.95,10.49,9.83,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21303 +base-bldgtype-mf-unit-shared-mechvent.xml,69.61,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21303,78.63,2550.1,2990.17,1.0846,57.99,1.0,57.99,69.61,69.61,0.0,49.43,1.0,49.43,69.61,69.61,0.0,68.4,6.15,5.95,10.49,9.83,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21303 +base-bldgtype-mf-unit-shared-pv.xml,12.26,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,47.4,1514.01,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,73.05,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,13.44,13.08,0.82,0.0,0.21273,135.99,4342.76,2944.68,1.0845,52.33,1.0,52.33,73.05,73.05,0.0,45.35,1.0,45.35,73.05,73.05,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit-shared-water-heater.xml,71.53,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,12.35,13.08,0.82,0.0,0.21273,133.22,4254.54,2944.68,1.0845,51.44,1.0,51.44,71.53,71.53,0.0,44.61,1.0,44.61,71.53,71.53,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 +base-bldgtype-mf-unit.xml,74.88,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,99.86,3189.39,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 +base-bldgtype-sfa-unit.xml,83.07,17.77,5.74,10.49,28.33,3.85,11.52,29.6,3.2,9.3,17.18,0.69,0.0,0.22149,156.5,6798.04,4182.74,1.0385,56.39,1.0,56.39,83.07,83.07,0.0,50.79,1.0,50.79,83.07,83.07,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 +base-dhw-combi-tankless.xml,65.22,28.79,8.58,10.49,47.16,5.33,18.31,32.96,4.64,10.29,21.28,0.12,0.0,0.23006,148.23,8465.14,5648.96,1.011,55.32,1.0,55.32,65.22,65.22,0.0,49.76,1.0,49.76,65.22,65.22,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 +base-dhw-desuperheater.xml,84.27,29.51,8.31,10.49,47.0,5.2,11.53,45.37,5.16,6.98,21.28,0.12,0.0,0.22185,163.34,9324.55,5648.96,1.0106,71.75,1.0,71.75,84.27,84.27,0.0,62.24,1.0,62.24,84.27,84.27,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 +base-dhw-dwhr.xml,76.35,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,6.75,21.28,0.12,0.0,0.22149,151.84,8431.86,5495.15,1.0105,56.68,1.0,56.68,76.35,76.35,0.0,50.97,1.0,50.97,76.35,76.35,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 +base-dhw-indirect-standbyloss.xml,69.06,28.71,8.61,10.49,47.04,5.35,18.65,31.27,4.92,14.07,21.28,0.12,0.0,0.22512,153.55,8793.16,5665.98,1.0107,55.32,1.0,55.32,69.06,69.06,0.0,49.76,1.0,49.76,69.06,69.06,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 +base-dhw-jacket-gas.xml,79.19,28.71,8.61,10.49,45.75,5.31,18.65,38.61,5.03,14.24,21.28,0.12,0.0,0.21632,177.2,9869.09,5512.62,1.0103,54.38,1.0,54.38,79.19,79.19,0.0,48.44,1.0,48.44,79.19,79.19,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 +base-dhw-jacket-hpwh.xml,75.1,29.04,8.49,10.49,46.27,5.25,12.42,44.25,4.34,3.37,21.28,0.12,0.0,0.21148,157.32,8818.38,5549.67,1.0101,57.01,1.0,57.01,75.1,75.1,0.0,51.24,1.0,51.24,75.1,75.1,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 +base-dhw-jacket-indirect.xml,67.97,28.71,8.61,10.49,47.04,5.35,18.65,31.76,4.84,13.1,21.28,0.12,0.0,0.22512,152.19,8715.57,5665.98,1.0107,55.32,1.0,55.32,67.97,67.97,0.0,49.76,1.0,49.76,67.97,67.97,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 +base-dhw-low-flow-fixtures.xml,78.79,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.8,21.28,0.12,0.0,0.22149,154.8,8596.35,5495.15,1.0105,56.68,1.0,56.68,78.79,78.79,0.0,50.97,1.0,50.97,78.79,78.79,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 +base-dhw-multiple.xml,68.21,29.51,8.31,10.5,48.31,5.2,11.54,31.95,4.81,6.01,21.28,0.12,0.0,0.2306,132.52,7569.02,5649.43,1.011,61.73,1.0,61.73,68.21,68.21,0.0,56.06,1.0,56.06,68.21,68.21,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 +base-dhw-none.xml,83.4,28.79,8.58,10.49,45.88,5.3,18.31,38.09,5.11,18.31,22.38,0.12,0.0,0.22122,188.81,10484.46,5495.15,1.0105,61.66,1.0,61.66,83.4,83.4,0.0,56.55,1.0,56.55,83.4,83.4,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 +base-dhw-recirc-demand.xml,79.0,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.98,21.28,0.12,0.0,0.22149,155.05,8609.9,5495.15,1.0105,56.68,1.0,56.68,79.0,79.0,0.0,50.97,1.0,50.97,79.0,79.0,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 +base-dhw-solar-fraction.xml,72.21,29.51,8.31,10.49,47.03,5.17,11.53,39.77,4.87,3.16,21.28,0.12,0.0,0.22149,147.36,8182.96,5495.15,1.0105,56.68,1.0,56.68,72.21,72.21,0.0,50.97,1.0,50.97,72.21,72.21,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 +base-dhw-solar-indirect-flat-plate.xml,70.39,29.51,8.31,10.49,47.03,5.17,11.53,39.06,5.06,1.74,21.28,0.12,0.0,0.22149,143.8,7985.16,5495.15,1.0105,56.68,1.0,56.68,70.39,70.39,0.0,50.97,1.0,50.97,70.39,70.39,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 +base-dhw-tank-elec-uef.xml,79.07,29.59,8.28,10.49,47.15,5.15,11.39,39.41,4.92,9.1,21.28,0.12,0.0,0.22302,155.3,8611.97,5486.95,1.0106,56.94,1.0,56.94,79.07,79.07,0.0,51.16,1.0,51.16,79.07,79.07,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 +base-dhw-tank-gas-uef.xml,79.02,28.95,8.52,10.49,46.13,5.27,17.66,38.48,5.05,14.75,21.28,0.12,0.0,0.23059,178.96,9927.13,5486.95,1.011,54.38,1.0,54.38,79.02,79.02,0.0,48.44,1.0,48.44,79.02,79.02,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 +base-dhw-tank-heat-pump-uef.xml,74.22,29.36,8.37,10.49,46.79,5.2,11.81,45.15,4.25,2.4,21.28,0.12,0.0,0.2183,159.17,8865.76,5512.62,1.0104,56.74,1.0,56.74,74.22,74.22,0.0,51.02,1.0,51.02,74.22,74.22,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 +base-dhw-tank-oil.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,192.41,10716.16,5512.62,1.0103,54.38,1.0,54.38,79.81,79.81,0.0,48.44,1.0,48.44,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tank-wood.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,,,,,54.38,1.0,54.38,79.81,79.81,0.0,48.44,1.0,48.44,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 +base-dhw-tankless-electric-uef.xml,79.44,29.51,8.31,10.49,47.03,5.17,11.53,39.93,4.85,9.17,21.28,0.12,0.0,0.22149,156.4,8684.95,5495.15,1.0105,56.82,1.0,56.82,79.44,79.44,0.0,51.1,1.0,51.1,79.44,79.44,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 +base-dhw-tankless-gas-uef.xml,72.75,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,9.66,21.28,0.12,0.0,0.22122,168.81,9373.82,5495.15,1.0105,54.38,1.0,54.38,72.75,72.75,0.0,48.44,1.0,48.44,72.75,72.75,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 +base-dhw-tankless-propane.xml,75.08,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,11.2,21.28,0.12,0.0,0.22122,179.02,9941.26,5495.15,1.0105,54.38,1.0,54.38,75.08,75.08,0.0,48.44,1.0,48.44,75.08,75.08,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 +base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,56.59,1.0,56.59,76.62,76.62,0.0,51.35,1.0,51.35,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 +base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,56.41,1.0,56.41,76.85,76.85,0.0,51.06,1.0,51.06,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 +base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,58.31,1.0,58.31,82.95,82.95,0.0,53.03,1.0,53.03,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 +base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.48,1.0,57.48,80.46,80.46,0.0,51.94,1.0,51.94,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 +base-enclosure-beds-4.xml,80.89,29.69,8.62,12.54,47.33,5.33,13.57,42.92,5.04,10.72,21.99,0.7,0.0,0.22142,158.38,9367.63,5764.99,1.026,55.85,1.0,55.85,80.89,80.89,0.0,49.98,1.0,49.98,80.89,80.89,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 +base-enclosure-beds-5.xml,80.83,29.88,8.93,14.54,47.62,5.5,15.57,44.42,5.18,12.39,22.7,1.04,0.0,0.22134,156.44,9815.49,6024.65,1.0414,55.05,1.0,55.05,80.83,80.83,0.0,49.02,1.0,49.02,80.83,80.83,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 +base-enclosure-ceilingtypes.xml,89.46,29.51,8.31,10.49,47.03,5.17,11.53,52.16,4.98,9.03,21.28,0.12,0.0,0.078,190.27,10494.5,5495.15,1.0037,56.57,1.0,56.57,89.46,89.46,0.0,50.86,1.0,50.86,89.46,89.46,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 +base-enclosure-floortypes.xml,104.52,19.32,7.11,10.49,30.85,4.53,11.52,52.94,4.56,9.22,15.13,0.78,0.0,0.22149,231.18,10114.68,4132.16,1.0588,54.88,1.0,54.88,104.52,104.52,0.0,49.47,1.0,49.47,104.52,104.52,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 +base-enclosure-garage.xml,78.25,29.47,6.84,10.49,46.97,4.45,11.73,41.67,3.26,9.11,21.42,0.12,0.0,0.22149,159.53,8834.44,5479.85,1.0105,57.34,1.0,57.34,78.25,78.25,0.0,51.48,1.0,51.48,78.25,78.25,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 +base-enclosure-infil-ach-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-cfm50.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-ela.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-ach.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-infil-natural-cfm.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-overhangs.xml,78.91,29.51,8.31,10.49,47.03,5.17,11.53,39.8,4.72,9.02,21.28,0.12,0.0,0.22149,155.75,8648.83,5495.15,1.0105,56.68,1.0,56.68,78.91,78.91,0.0,50.97,1.0,50.97,78.91,78.91,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 +base-enclosure-skylights.xml,79.53,29.51,8.31,10.49,47.03,5.17,11.53,37.88,5.68,9.02,21.28,0.12,0.0,0.20166,152.24,8446.18,5495.15,1.0096,56.68,1.0,56.68,79.53,79.53,0.0,50.97,1.0,50.97,79.53,79.53,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 +base-enclosure-walltypes.xml,93.06,29.48,8.3,10.49,46.97,5.16,11.53,58.7,4.04,9.03,21.28,0.12,0.0,-0.04335,206.89,11349.14,5497.0,0.9979,56.8,1.0,56.8,93.06,93.06,0.0,51.08,1.0,51.08,93.06,93.06,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 +base-foundation-ambient.xml,87.48,19.32,7.11,10.49,30.85,4.53,11.52,32.25,5.76,9.21,15.13,0.78,0.0,0.22149,164.31,7188.92,4132.16,1.0588,55.08,1.0,55.08,87.48,87.48,0.0,49.67,1.0,49.67,87.48,87.48,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 +base-foundation-basement-garage.xml,80.98,26.74,7.06,10.49,42.6,4.52,11.53,37.17,5.01,9.26,17.78,0.66,0.0,0.22149,159.69,8064.5,4880.55,1.0347,55.44,1.0,55.44,80.98,80.98,0.0,50.21,1.0,50.21,80.98,80.98,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 +base-foundation-conditioned-basement-slab-insulation.xml,78.51,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.14,9.02,21.28,0.12,0.0,0.22149,151.91,8435.87,5495.15,1.0105,56.68,1.0,56.68,78.51,78.51,0.0,50.97,1.0,50.97,78.51,78.51,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 +base-foundation-conditioned-basement-wall-insulation.xml,79.12,28.09,7.95,10.49,44.76,4.99,11.53,38.33,4.52,9.02,21.28,0.12,0.0,0.22149,154.29,8411.05,5394.52,1.0105,57.62,1.0,57.62,79.12,79.12,0.0,51.74,1.0,51.74,79.12,79.12,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 +base-foundation-multiple.xml,80.44,19.04,6.51,10.49,30.42,4.25,11.67,26.36,5.01,9.17,15.13,0.78,0.0,0.22149,144.51,6265.48,4094.86,1.0588,54.61,1.0,54.61,80.44,80.44,0.0,49.07,1.0,49.07,80.44,80.44,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 +base-foundation-slab.xml,72.05,20.75,6.58,10.49,33.09,4.28,11.53,21.48,4.4,9.21,15.13,0.78,0.0,0.22149,125.08,5513.5,4163.06,1.0588,54.21,1.0,54.21,72.05,72.05,0.0,49.02,1.0,49.02,72.05,72.05,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-assembly-r.xml,77.91,18.96,6.69,10.49,30.29,4.34,11.67,25.03,4.55,9.19,15.13,0.78,0.0,0.22149,139.31,6039.93,4094.68,1.0588,54.03,1.0,54.03,77.91,77.91,0.0,48.55,1.0,48.55,77.91,77.91,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement-wall-insulation.xml,84.7,18.96,6.69,10.49,30.29,4.34,11.67,32.84,4.23,9.13,15.13,0.78,0.0,0.22149,165.03,7155.15,4094.68,1.0588,54.03,1.0,54.03,84.7,84.7,0.0,48.55,1.0,48.55,84.7,84.7,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 +base-foundation-unconditioned-basement.xml,80.81,18.96,6.69,10.49,30.29,4.34,11.67,26.65,5.05,9.18,15.13,0.78,0.0,0.22149,145.59,6312.01,4094.68,1.0588,54.03,1.0,54.03,80.81,80.81,0.0,48.55,1.0,48.55,80.81,80.81,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 +base-foundation-unvented-crawlspace.xml,78.45,17.55,7.45,10.49,28.04,4.71,11.78,23.13,4.98,9.29,15.13,0.78,0.0,0.22149,135.05,5800.87,4056.7,1.0588,55.84,1.0,55.84,78.45,78.45,0.0,50.36,1.0,50.36,78.45,78.45,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace-above-grade.xml,80.97,17.59,7.35,10.49,28.09,4.65,11.79,25.28,5.06,9.36,15.13,0.78,0.0,0.22149,142.73,6127.71,4054.81,1.0588,55.98,1.0,55.98,80.97,80.97,0.0,50.52,1.0,50.52,80.97,80.97,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 +base-foundation-vented-crawlspace.xml,80.62,17.55,7.45,10.49,28.04,4.71,11.78,25.4,4.9,9.37,15.13,0.78,0.0,0.22149,142.82,6134.59,4056.7,1.0588,55.84,1.0,55.84,80.62,80.62,0.0,50.36,1.0,50.36,80.62,80.62,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 +base-foundation-walkout-basement.xml,80.57,33.11,9.36,10.49,52.77,5.71,11.53,45.02,5.14,9.02,21.28,0.12,0.0,0.22149,164.23,9437.16,5792.15,0.9921,56.39,1.0,56.39,80.57,80.57,0.0,51.15,1.0,51.15,80.57,80.57,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.45,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22137,165.56,9311.77,5565.81,1.0105,70.27,1.0,70.27,85.45,85.45,0.0,60.8,1.0,60.8,85.45,85.45,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.58,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.7,9.02,21.28,0.12,0.0,0.21902,85.66,4889.24,5648.96,1.0104,56.22,1.0,56.22,86.58,86.58,0.0,50.3,1.0,50.3,86.58,86.58,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.77,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.66,9.02,21.28,0.12,0.0,0.2198,84.04,4666.35,5495.15,1.0105,53.43,1.0,53.43,84.77,84.77,0.0,47.42,1.0,47.42,84.77,84.77,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.75,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.65,9.02,21.28,0.12,0.0,0.2198,84.0,4664.31,5495.15,1.0105,53.43,1.0,53.43,84.75,84.75,0.0,47.42,1.0,47.42,84.75,84.75,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-1-speed.xml,84.52,29.51,8.31,10.49,22.05,4.36,11.53,20.98,3.66,9.02,21.28,0.12,0.0,0.2198,83.78,4651.96,5495.15,1.0105,53.43,1.0,53.43,84.52,84.52,0.0,47.42,1.0,47.42,84.52,84.52,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-2-speed.xml,73.18,29.51,8.31,10.49,22.05,4.36,11.53,15.98,2.62,9.02,21.28,0.12,0.0,0.2198,74.37,4129.69,5495.15,1.0105,53.43,1.0,53.43,73.18,73.18,0.0,47.42,1.0,47.42,73.18,73.18,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 +base-hvac-air-to-air-heat-pump-var-speed.xml,72.86,29.51,8.31,10.49,22.05,4.22,11.53,16.59,1.99,9.02,21.28,0.12,0.0,0.21969,74.65,4137.62,5484.97,1.0105,53.49,1.0,53.49,72.86,72.86,0.0,47.49,1.0,47.49,72.86,72.86,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 +base-hvac-boiler-elec-only.xml,100.03,29.51,8.31,10.49,22.92,5.2,11.53,30.6,4.7,9.02,21.28,0.12,0.0,0.21902,98.04,5595.85,5648.96,1.0104,56.22,1.0,56.22,100.03,100.03,0.0,50.3,1.0,50.3,100.03,100.03,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-boiler-gas-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.59,4.7,9.02,21.28,0.12,0.0,0.23058,133.48,7623.09,5648.96,1.011,57.27,1.0,57.27,72.02,72.02,0.0,51.86,1.0,51.86,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-oil-only.xml,72.04,29.51,8.31,10.49,48.31,5.2,11.53,32.6,4.7,9.02,21.28,0.12,0.0,0.23058,160.75,9180.54,5648.96,1.011,57.27,1.0,57.27,72.04,72.04,0.0,51.86,1.0,51.86,72.04,72.04,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-boiler-propane-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.58,4.7,9.02,21.28,0.12,0.0,0.23058,150.79,8611.85,5648.96,1.011,57.27,1.0,57.27,72.02,72.02,0.0,51.86,1.0,51.86,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 +base-hvac-central-ac-only-1-speed-seer2.xml,85.88,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.96,9.02,21.28,0.12,0.0,0.22185,164.69,9401.4,5648.96,1.0106,71.75,1.0,71.75,85.88,85.88,0.0,62.24,1.0,62.24,85.88,85.88,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-1-speed.xml,85.91,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.97,9.02,21.28,0.12,0.0,0.22185,164.7,9402.26,5648.96,1.0106,71.75,1.0,71.75,85.91,85.91,0.0,62.24,1.0,62.24,85.91,85.91,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-2-speed.xml,83.62,29.51,8.31,10.49,47.0,5.2,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22185,163.31,9322.77,5648.96,1.0106,71.75,1.0,71.75,83.62,83.62,0.0,62.24,1.0,62.24,83.62,83.62,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 +base-hvac-central-ac-only-var-speed.xml,82.6,29.51,8.31,10.49,47.0,5.05,11.53,44.89,3.28,9.02,21.28,0.12,0.0,0.22172,162.86,9279.24,5638.15,1.0106,71.78,1.0,71.78,82.6,82.6,0.0,62.27,1.0,62.27,82.6,82.6,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.13,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.97,9.02,21.28,0.12,0.0,0.21902,85.94,4905.54,5648.96,1.0104,55.06,1.0,55.06,87.13,87.13,0.0,49.02,1.0,49.02,87.13,87.13,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 +base-hvac-dse.xml,79.08,29.51,8.31,10.49,47.03,5.17,11.53,38.26,5.36,9.02,21.28,0.12,0.0,0.22149,152.75,8482.26,5495.15,1.0105,56.68,1.0,56.68,79.08,79.08,0.0,50.97,1.0,50.97,79.08,79.08,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.45,29.52,8.31,10.49,31.7,4.36,11.53,28.259999999999998,3.66,9.02,21.28,0.12,0.0,0.2195,110.57,6139.57,5495.15,1.0105,53.43,1.0,53.43,81.45,81.45,0.0,47.42,1.0,47.42,81.45,81.45,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.75,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,31.39,3.66,9.02,21.28,0.12,0.0,0.21935,121.32,6736.23,5495.15,1.0104,53.43,1.0,53.43,80.75,80.75,0.0,47.42,1.0,47.42,80.75,80.75,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 +base-hvac-ducts-buried.xml,76.13,29.51,8.31,10.49,47.03,5.17,11.53,36.7,4.53,9.02,21.28,0.12,0.0,0.22149,147.35,8182.4,5495.15,1.0105,56.68,1.0,56.68,76.13,76.13,0.0,50.97,1.0,50.97,76.13,76.13,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 +base-hvac-ducts-leakage-cfm50.xml,77.47,29.51,8.31,10.49,47.03,5.17,11.53,37.97,4.7,9.02,21.28,0.12,0.0,0.22149,150.94,8381.95,5495.15,1.0105,56.68,1.0,56.68,77.47,77.47,0.0,50.97,1.0,50.97,77.47,77.47,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 +base-hvac-elec-resistance-only.xml,96.0,29.51,8.31,10.49,22.92,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.21902,94.4,5388.07,5648.96,1.0104,56.22,1.0,56.22,96.0,96.0,0.0,50.3,1.0,50.3,96.0,96.0,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-evap-cooler-only-ducted.xml,77.0,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.7,9.02,21.28,0.12,0.0,0.22185,159.11,9083.28,5648.96,1.0106,71.75,1.0,71.75,77.0,77.0,0.0,62.24,1.0,62.24,77.0,77.0,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 +base-hvac-evap-cooler-only.xml,76.84,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.63,9.02,21.28,0.12,0.0,0.22185,159.02,9077.87,5648.96,1.0106,71.75,1.0,71.75,76.84,76.84,0.0,62.24,1.0,62.24,76.84,76.84,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 +base-hvac-fireplace-wood-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.84,1.0,57.84,77.16,77.16,0.0,52.25,1.0,52.25,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-floor-furnace-propane-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,159.53,9106.71,5648.96,1.0106,57.84,1.0,57.84,77.16,77.16,0.0,52.25,1.0,52.25,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-furnace-elec-only.xml,112.37,29.51,8.31,10.49,22.92,5.2,11.53,37.93,4.7,9.02,21.28,0.12,0.0,0.21902,109.76,6264.68,5648.96,1.0104,56.22,1.0,56.22,112.37,112.37,0.0,50.3,1.0,50.3,112.37,112.37,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-furnace-gas-only.xml,79.22,29.51,8.31,10.49,47.0,5.2,11.53,40.33,4.7,9.02,21.28,0.12,0.0,0.22185,152.59,8710.82,5648.96,1.0106,57.84,1.0,57.84,79.22,79.22,0.0,52.25,1.0,52.25,79.22,79.22,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.44,9.02,21.28,0.12,0.0,0.22137,165.07,9284.29,5565.81,1.0105,70.27,1.0,70.27,84.35,84.35,0.0,60.8,1.0,60.8,84.35,84.35,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.93,29.51,8.31,10.49,22.92,5.2,11.53,13.9,4.7,9.02,21.28,0.12,0.0,0.21902,71.64,4089.39,5648.96,1.0104,56.22,1.0,56.22,71.93,71.93,0.0,50.3,1.0,50.3,71.93,71.93,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-ground-to-air-heat-pump.xml,69.13,29.51,8.31,10.49,22.05,4.36,11.53,12.84,3.19,9.02,21.28,0.12,0.0,0.2198,69.76,3873.7,5495.15,1.0105,53.43,1.0,53.43,69.13,69.13,0.0,47.42,1.0,47.42,69.13,69.13,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,83.06,29.51,8.31,10.49,22.05,4.36,11.53,20.65,3.31,9.02,21.28,0.12,0.0,0.2198,82.78,4596.73,5495.15,1.0105,53.43,1.0,53.43,83.06,83.06,0.0,47.42,1.0,47.42,83.06,83.06,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,78.23,29.51,8.31,10.49,47.03,5.17,11.53,39.53,4.5,9.02,21.28,0.12,0.0,0.22149,155.07,8610.94,5495.15,1.0105,56.68,1.0,56.68,78.23,78.23,0.0,50.97,1.0,50.97,78.23,78.23,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 +base-hvac-install-quality-ground-to-air-heat-pump.xml,67.7,29.51,8.31,10.49,22.05,4.36,11.53,12.55,2.83,9.02,21.28,0.12,0.0,0.2198,68.81,3820.55,5495.15,1.0105,53.43,1.0,53.43,67.7,67.7,0.0,47.42,1.0,47.42,67.7,67.7,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.45,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.83,9.02,21.28,0.12,0.0,0.22185,161.99,9247.5,5648.96,1.0106,71.75,1.0,71.75,81.45,81.45,0.0,62.24,1.0,62.24,81.45,81.45,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.8,29.51,8.31,10.49,22.05,4.36,11.53,13.89,1.93,9.02,21.28,0.12,0.0,0.2198,69.99,3886.36,5495.15,1.0105,53.43,1.0,53.43,67.8,67.8,0.0,47.42,1.0,47.42,67.8,67.8,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-air-conditioner-only-ducted.xml,81.7,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.96,9.02,21.28,0.12,0.0,0.22185,162.14,9256.21,5648.96,1.0106,71.75,1.0,71.75,81.7,81.7,0.0,62.24,1.0,62.24,81.7,81.7,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-air-conditioner-only-ductless.xml,80.9,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.57,9.02,21.28,0.12,0.0,0.22185,161.67,9228.88,5648.96,1.0106,71.75,1.0,71.75,80.9,80.9,0.0,62.24,1.0,62.24,80.9,80.9,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.59,29.51,8.29,10.49,47.0,4.24,11.53,44.89,1.97,9.02,21.28,0.12,0.0,0.22137,163.12,9174.59,5565.81,1.0105,70.27,1.0,70.27,80.59,80.59,0.0,60.8,1.0,60.8,80.59,80.59,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.81,29.51,8.31,10.49,22.92,5.2,11.53,14.43,4.7,9.02,21.28,0.12,0.0,0.21902,72.73,4151.1,5648.96,1.0104,56.22,1.0,56.22,72.81,72.81,0.0,50.3,1.0,50.3,72.81,72.81,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 +base-hvac-mini-split-heat-pump-ducted.xml,68.14,29.51,8.31,10.49,22.05,4.36,11.53,14.03,1.97,9.02,21.28,0.12,0.0,0.2198,70.28,3902.38,5495.15,1.0105,53.43,1.0,53.43,68.14,68.14,0.0,47.42,1.0,47.42,68.14,68.14,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 +base-hvac-mini-split-heat-pump-ductless.xml,63.08,29.51,8.31,10.49,22.05,4.36,11.53,11.53,1.69,9.02,21.28,0.12,0.0,0.2198,65.86,3656.89,5495.15,1.0105,53.43,1.0,53.43,63.08,63.08,0.0,47.42,1.0,47.42,63.08,63.08,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 +base-hvac-multiple.xml,96.79,29.5,8.31,10.49,35.480000000000004,7.12,11.53,44.97,5.4399999999999995,9.02,21.28,0.12,0.0,0.21189,138.98,8633.7,6150.07,1.0101,55.62,1.0,55.62,96.79,96.79,0.0,50.74,1.0,50.74,96.79,96.79,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 +base-hvac-none.xml,94.49,0.0,42.92,5.18,0.0,23.98,6.1,0.0,26.17,4.75,15.13,0.78,0.0,0.18415,,,,,69.91,1.0,69.91,94.49,94.49,0.0,63.05,1.0,63.05,94.49,94.49,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 +base-hvac-programmable-thermostat.xml,76.5,29.51,8.31,10.49,47.03,5.17,11.53,37.69,4.34,9.03,21.28,0.12,0.0,0.22149,149.81,8318.93,5495.15,1.0105,56.68,1.0,56.68,76.5,76.5,0.0,50.97,1.0,50.97,76.5,76.5,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 +base-hvac-ptac-with-heating-electricity.xml,94.97,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.09,9.02,21.28,0.12,0.0,0.22006,94.08,5256.75,5529.74,1.0105,53.33,1.0,53.33,94.97,94.97,0.0,47.31,1.0,47.31,94.97,94.97,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 +base-hvac-ptac-with-heating-natural-gas.xml,73.24,29.51,8.31,10.49,47.0,5.68,11.53,35.26,3.09,9.02,21.28,0.12,0.0,0.22194,141.37,7900.01,5529.74,1.0106,56.62,1.0,56.62,73.24,73.24,0.0,50.91,1.0,50.91,73.24,73.24,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-ptac.xml,81.44,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.09,9.02,21.28,0.12,0.0,0.22194,161.14,9254.72,5683.08,1.0106,71.69,1.0,71.69,81.44,81.44,0.0,62.19,1.0,62.19,81.44,81.44,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 +base-hvac-pthp.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.33,1.0,53.33,66.83,66.83,0.0,47.31,1.0,47.31,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-only-ceer.xml,82.98,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.89,9.02,21.28,0.12,0.0,0.22194,162.15,9312.47,5683.08,1.0106,71.69,1.0,71.69,82.98,82.98,0.0,62.19,1.0,62.19,82.98,82.98,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-only.xml,82.96,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.88,9.02,21.28,0.12,0.0,0.22194,162.14,9311.95,5683.08,1.0106,71.69,1.0,71.69,82.96,82.96,0.0,62.19,1.0,62.19,82.96,82.96,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 +base-hvac-room-ac-with-heating.xml,96.76,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.88,9.02,21.28,0.12,0.0,0.22006,95.1,5313.98,5529.74,1.0105,53.33,1.0,53.33,96.76,96.76,0.0,47.31,1.0,47.31,96.76,96.76,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 +base-hvac-room-ac-with-reverse-cycle.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.33,1.0,53.33,66.83,66.83,0.0,47.31,1.0,47.31,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 +base-hvac-space-heater-gas-only.xml,69.04,29.51,8.31,10.49,47.0,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.22185,122.49,6992.53,5648.96,1.0106,57.84,1.0,57.84,69.04,69.04,0.0,52.25,1.0,52.25,69.04,69.04,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-stove-wood-pellets-only.xml,77.14,29.51,8.31,10.49,47.0,5.2,11.53,35.23,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.84,1.0,57.84,77.14,77.14,0.0,52.25,1.0,52.25,77.14,77.14,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 +base-hvac-undersized.xml,74.16,29.51,8.31,10.49,47.03,5.17,11.53,34.76,4.29,9.02,21.28,0.12,0.0,0.22149,141.93,7881.32,5495.15,1.0105,56.68,1.0,56.68,74.16,74.16,0.0,50.97,1.0,50.97,74.16,74.16,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 +base-hvac-wall-furnace-elec-only.xml,96.97,29.51,8.31,10.49,22.92,5.2,11.53,28.78,4.7,9.02,21.28,0.12,0.0,0.21902,95.31,5440.07,5648.96,1.0104,56.22,1.0,56.22,96.97,96.97,0.0,50.3,1.0,50.3,96.97,96.97,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 +base-lighting-ceiling-fans.xml,78.72,29.5,8.0,10.49,47.0,5.01,11.52,39.45,4.67,9.02,21.8,0.12,0.0,0.21919,154.08,8639.13,5548.98,1.0104,56.7,1.0,56.7,78.72,78.72,0.0,51.04,1.0,51.04,78.72,78.72,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 +base-location-baltimore-md.xml,75.37,20.19,10.68,9.61,32.31,6.71,10.82,23.26,7.15,8.51,15.13,0.78,0.0,0.27306,79.59,9889.08,11579.58,1.073,51.36,1.0,51.36,75.37,75.37,0.0,48.99,1.0,48.99,75.37,75.37,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 +base-location-capetown-zaf.xml,79.78,3.94,4.59,8.35,6.31,2.51,9.47,1.65,3.66,7.51,15.13,0.78,0.0,0.17223,,,,,50.6,1.0,50.6,79.78,79.78,0.0,48.37,1.0,48.37,79.78,79.78,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 +base-location-dallas-tx.xml,71.82,9.39,26.65,7.53,15.05,15.84,8.51,6.07,13.71,6.72,15.13,0.78,0.0,0.27332,77.15,6246.97,7545.78,1.0731,47.03,1.0,47.03,71.82,71.82,0.0,44.17,1.0,44.17,71.82,71.82,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 +base-location-duluth-mn.xml,80.9,44.99,1.76,13.08,71.67,1.98,14.52,69.08,2.23,11.42,15.13,0.78,0.0,0.25692,182.79,12326.56,6310.8,1.0686,54.23,1.0,54.23,80.9,80.9,0.0,47.15,1.0,47.15,80.9,80.9,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 +base-location-helena-mt.xml,78.49,48.36,3.58,11.9,77.03,2.64,12.95,66.03,2.35,10.17,21.28,0.12,0.0,0.22296,202.54,11816.8,5772.96,1.0106,58.09,1.0,58.09,78.49,78.49,0.0,51.1,1.0,51.1,78.49,78.49,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 +base-location-honolulu-hi.xml,83.24,0.0,42.93,5.18,0.0,23.77,6.1,0.0,21.53,4.75,15.13,0.78,0.0,0.18335,,,,,62.89,1.0,62.89,83.24,83.24,0.0,41.47,1.0,41.47,83.24,83.24,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 +base-location-miami-fl.xml,80.63,0.05,41.23,5.34,0.08,24.09,6.27,0.01,21.0,4.88,15.13,0.78,0.0,0.20399,79.68,6171.56,7348.59,1.0541,63.52,1.0,63.52,80.63,80.63,0.0,43.43,1.0,43.43,80.63,80.63,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 +base-location-phoenix-az.xml,72.82,1.23,51.89,5.61,1.96,29.4,6.56,0.27,23.05,5.11,15.13,0.78,0.0,0.2826,73.51,4954.67,6265.71,1.0757,48.95,1.0,48.95,72.82,72.82,0.0,44.55,1.0,44.55,72.82,72.82,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 +base-location-portland-or.xml,82.44,12.85,3.42,9.98,20.58,2.47,11.26,20.52,2.67,8.93,15.13,0.78,0.0,0.18847,159.44,4790.85,2862.1,1.0498,66.47,1.0,66.47,82.44,82.44,0.0,50.1,1.0,50.1,82.44,82.44,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 +base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.68,1.0,56.68,82.2,82.2,0.0,50.97,1.0,50.97,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-cfis-airflow-fraction-zero.xml,78.85,29.25,8.43,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.85,8439.57,5573.33,1.0105,56.68,1.0,56.68,78.85,78.85,0.0,50.97,1.0,50.97,78.85,78.85,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-cfis-supplemental-fan-exhaust.xml,75.9,29.25,8.43,10.49,46.61,5.22,11.53,35.86,4.9,9.02,21.28,0.5,0.0,0.22149,144.33,8128.72,5573.33,1.0105,56.68,1.0,56.68,75.9,75.9,0.0,50.97,1.0,50.97,75.9,75.9,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 +base-mechvent-cfis.xml,79.76,29.25,8.43,10.49,46.61,5.22,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149,153.09,8622.06,5573.33,1.0105,56.68,1.0,56.68,79.76,79.76,0.0,50.97,1.0,50.97,79.76,79.76,0.0,75.79,33.33,8.36,10.49,53.09,5.2,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149 +base-mechvent-erv-atre-asre.xml,71.15,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149,124.05,7095.97,5660.33,1.0105,56.68,1.0,56.68,71.15,71.15,0.0,50.97,1.0,50.97,71.15,71.15,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-erv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149,124.06,7096.46,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-exhaust.xml,78.09,29.25,8.43,10.49,46.61,5.22,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149,150.77,8491.37,5573.33,1.0105,56.68,1.0,56.68,78.09,78.09,0.0,50.97,1.0,50.97,78.09,78.09,0.0,74.2,33.33,8.36,10.49,53.09,5.2,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149 +base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149,124.05,7095.83,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 +base-mechvent-multiple.xml,82.61,29.06,8.52,10.49,46.31,6.16,11.53,42.72,5.86,9.03,21.28,1.49,0.0,0.22163,162.64,9331.67,5677.62,1.0106,57.42,1.0,57.42,82.61,82.61,0.0,51.71,1.0,51.71,82.61,82.61,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 +base-mechvent-supply.xml,77.83,29.25,8.43,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.26,8406.48,5573.33,1.0105,56.68,1.0,56.68,77.83,77.83,0.0,50.97,1.0,50.97,77.83,77.83,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 +base-mechvent-whole-house-fan.xml,77.36,29.51,8.31,10.49,47.03,5.17,11.53,39.6,3.41,9.03,21.28,0.12,0.0,0.22149,154.5,8579.36,5495.15,1.0105,56.68,1.0,56.68,77.36,77.36,0.0,50.97,1.0,50.97,77.36,77.36,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 +base-misc-generators.xml,77.17,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,195.32,10846.58,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base-pv.xml,37.9,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,122.38,6796.09,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 base-version-co2-2019ABCD.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022C.xml,,,,,,,,,,,,,,,155.11,8613.37,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -187,4 +187,4 @@ base-version-eri-2022C.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9. base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.82,30.81,8.32,10.39,49.02,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.38,33.54,8.27,10.39,53.36,4.32,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.51,1.0,56.51,79.05,79.05,0.0,50.8,1.0,50.8,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 +base.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 From 59030b41db3840c6a2e4fb46234a1a01dd49ce3c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 20 Feb 2024 09:09:47 -0700 Subject: [PATCH 19/35] Squashed 'hpxml-measures/' changes from ff99d251f8..5ff6774afa 5ff6774afa Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 45cdd444fd Latest results. 6d6d0177e0 Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow dc687d155e Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 6be89690f6 Expose WithinInfiltrationVolume inputs for some attic/foundation types. d42c040f55 Minor refactoring. 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 1092b38dee Handle case where Qinf > Qtot. 8db9c4dd9c Latest results. fbf067fdcb Fix assert_in_epsilon tests. c3c95819d2 Simplify code. 9dabadd9b4 Update Changelog.md [ci skip] 1115e941ee Fix typo in docs. b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. git-subtree-dir: hpxml-measures git-subtree-split: 5ff6774afa4c4836087c3ea0288657e588101ef5 --- Changelog.md | 2 + HPXMLtoOpenStudio/measure.xml | 16 +- HPXMLtoOpenStudio/resources/airflow.rb | 91 +- HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 62 +- .../hpxml_schematron/EPvalidator.xml | 27 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 +- docs/source/workflow_inputs.rst | 60 +- .../tests/base_results/results_sizing.csv | 942 +++++++----------- .../results_workflow_simulations1.csv | 578 ++++++----- .../results_workflow_simulations1_bills.csv | 572 ++++++----- .../results_workflow_simulations2.csv | 280 +++--- .../results_workflow_simulations2_bills.csv | 276 ++--- 14 files changed, 1397 insertions(+), 1535 deletions(-) diff --git a/Changelog.md b/Changelog.md index 837868dc3..5a3924058 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,6 +12,8 @@ __New Features__ - Adds schedule inputs for hot water recirculation pumps and general water use internal gains. - Updated water heater installation location defaulting to match ANSI 301-2022 - Updated calculation of hot water piping length for buildings with both conditioned and unconditioned basements to avoid double counting. + - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. + - Small change to default flow rate for imbalanced mechanical ventilation systems. - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - **Breaking change**: Modeling whole SFA/MF buildings is now specified using a `SoftwareInfo/extension/WholeSFAorMFBuildingSimulation=true` element instead of `building-id=ALL` argument. - Air source heat pump enhancements: diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1c64e4a84..c3170379d 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 53efd403-5c1e-4f5d-b000-ed28eb726d8f - 2024-02-20T01:03:31Z + 95143a8b-4da3-49da-80ab-05cc3611b94c + 2024-02-20T15:53:07Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 8D63CEED + 340760F9 battery.rb @@ -304,13 +304,13 @@ hpxml.rb rb resource - 48D38B28 + BE15F354 hpxml_defaults.rb rb resource - 6232FAF8 + 2AF46603 hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - E48E2E8F + 40EC21C6 hpxml_schematron/iso-schematron.xsd @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - 7D95EA72 + 222F3FD7 lighting.rb @@ -598,7 +598,7 @@ test_defaults.rb rb test - 0C0D8F7B + 7A1606C2 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 8233246df..301243ba7 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -103,19 +103,22 @@ def self.apply(model, runner, weather, spaces, hpxml_header, hpxml_bldg, cfa, nb vented_attic = hpxml_bldg.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } vented_crawl = hpxml_bldg.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - _sla, conditioned_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) if @apply_ashrae140_assumptions - conditioned_const_ach = nach + conditioned_const_ach = infil_values[:nach] conditioned_ach50 = nil + else + conditioned_ach50 = infil_values[:ach50] + conditioned_const_ach = nil end - conditioned_const_ach *= a_ext unless conditioned_const_ach.nil? - conditioned_ach50 *= a_ext unless conditioned_ach50.nil? + conditioned_const_ach *= infil_values[:a_ext] unless conditioned_const_ach.nil? + conditioned_ach50 *= infil_values[:a_ext] unless conditioned_ach50.nil? has_flue_chimney_in_cond_space = hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space apply_natural_ventilation_and_whole_house_fan(model, hpxml_bldg.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml_bldg.header.natvent_days_per_week, - infil_volume, infil_height, unavailable_periods) + infil_values[:volume], infil_values[:height], unavailable_periods) apply_infiltration_and_ventilation_fans(model, weather, hpxml_bldg.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_values[:volume], infil_values[:height], vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) end @@ -214,31 +217,23 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) end a_ext = 1.0 if a_ext.nil? - return sla, ach50, nach, volume, height, a_ext + return { sla: sla, ach50: ach50, nach: nach, volume: volume, height: height, a_ext: a_ext } end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) - # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 - sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) + # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + bldg_type = hpxml_bldg.building_construction.residential_facility_type - nl = get_infiltration_NL_from_SLA(sla, height) + nl = get_infiltration_NL_from_SLA(infil_values[:sla], infil_values[:height]) q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) - q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) - if vent_fan.is_balanced? - phi = 1.0 + is_balanced, frac_imbal = true, 0.0 else - phi = q_inf / q_tot + is_balanced, frac_imbal = false, 1.0 end - q_fan = q_tot - phi * (q_inf * a_ext) - q_fan = [q_fan, 0].max - - if not vent_fan.hours_in_operation.nil? - # Convert from hourly average requirement to actual fan flow rate - q_fan *= 24.0 / vent_fan.hours_in_operation - end - + q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, infil_values[:a_ext], bldg_type, eri_version, vent_fan.hours_in_operation) return q_fan end @@ -1633,7 +1628,10 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') + infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') + infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2016,12 +2014,12 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, weather) def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) end def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) @@ -2101,6 +2099,47 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end + + def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) + q_inf_eff = q_inf * a_ext + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + if frac_imbal == 0 + q_fan = q_tot - q_inf_eff + else + q_inf_eff = q_inf * a_ext + if q_inf_eff >= q_tot + q_fan = 0.0 + else + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end + end + elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') + if is_balanced + phi = 1.0 + else + phi = q_inf / q_tot + end + q_fan = q_tot - phi * q_inf_eff + else + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type + # No infiltration credit for attached/multifamily + return q_tot + end + + if q_inf > 2.0 / 3.0 * q_tot + q_fan = q_tot - 2.0 / 3.0 * q_tot + else + q_fan = q_tot - q_inf + end + end + + # Convert from hourly average requirement to actual fan flow rate + if not hours_in_operation.nil? + q_fan *= 24.0 / hours_in_operation + end + + return [q_fan, 0.0].max + end end class Duct diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index da43f5e12..a0250fb47 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -2322,7 +2322,7 @@ def to_doc(building) fail "Unhandled attic type '#{@attic_type}'." end end - XMLHelper.add_element(attic, 'WithinInfiltrationVolume', within_infiltration_volume, :boolean) unless @within_infiltration_volume.nil? + XMLHelper.add_element(attic, 'WithinInfiltrationVolume', @within_infiltration_volume, :boolean, @within_infiltration_volume_isdefaulted) unless @within_infiltration_volume.nil? if not @attached_to_roof_idrefs.nil? @attached_to_roof_idrefs.each do |roof| roof_attached = XMLHelper.add_element(attic, 'AttachedToRoof') diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 6e47eeaa2..1cd59b940 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -29,9 +29,9 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_building_occupancy(hpxml_bldg, schedules_file) apply_building_construction(hpxml_bldg, cfa, nbeds, infil_measurement) apply_climate_and_risk_zones(hpxml_bldg, epw_file) - apply_infiltration(hpxml_bldg, infil_measurement) apply_attics(hpxml_bldg) apply_foundations(hpxml_bldg) + apply_infiltration(hpxml_bldg, infil_measurement) apply_roofs(hpxml_bldg) apply_rim_joists(hpxml_bldg) apply_walls(hpxml_bldg) @@ -669,26 +669,16 @@ def self.apply_climate_and_risk_zones(hpxml_bldg, epw_file) end end - def self.apply_infiltration(hpxml_bldg, infil_measurement) - if infil_measurement.infiltration_volume.nil? - infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - infil_measurement.infiltration_volume_isdefaulted = true - end - if infil_measurement.infiltration_height.nil? - infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) - infil_measurement.infiltration_height_isdefaulted = true - end - if infil_measurement.a_ext.nil? - if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && - [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) - tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() - infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) - infil_measurement.a_ext_isdefaulted = true + def self.apply_attics(hpxml_bldg) + hpxml_bldg.attics.each do |attic| + next unless attic.within_infiltration_volume.nil? + + if [HPXML::AtticTypeUnvented].include? attic.attic_type + attic.within_infiltration_volume = false + attic.within_infiltration_volume_isdefaulted = true end end - end - def self.apply_attics(hpxml_bldg) return unless hpxml_bldg.has_location(HPXML::LocationAtticVented) vented_attics = hpxml_bldg.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } @@ -707,6 +697,16 @@ def self.apply_attics(hpxml_bldg) end def self.apply_foundations(hpxml_bldg) + hpxml_bldg.foundations.each do |foundation| + next unless foundation.within_infiltration_volume.nil? + + next unless [HPXML::FoundationTypeBasementUnconditioned, + HPXML::FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type + + foundation.within_infiltration_volume = false + foundation.within_infiltration_volume_isdefaulted = true + end + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceVented) vented_crawls = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } if vented_crawls.empty? @@ -740,6 +740,25 @@ def self.apply_foundations(hpxml_bldg) end end + def self.apply_infiltration(hpxml_bldg, infil_measurement) + if infil_measurement.infiltration_volume.nil? + infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + infil_measurement.infiltration_volume_isdefaulted = true + end + if infil_measurement.infiltration_height.nil? + infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) + infil_measurement.infiltration_height_isdefaulted = true + end + if infil_measurement.a_ext.nil? + if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && + [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) + tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() + infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) + infil_measurement.a_ext_isdefaulted = true + end + end + end + def self.apply_roofs(hpxml_bldg) hpxml_bldg.roofs.each do |roof| if roof.azimuth.nil? @@ -1992,18 +2011,21 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? + + if vent_fan.flow_rate.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) vent_fan.rated_flow_rate_isdefaulted = true end + if vent_fan.fan_power.nil? vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 186a63bd0..4a6386f2e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -456,7 +456,7 @@ [Roof] - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation @@ -479,7 +479,14 @@ Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate[UnitofMeasure="SLA" or UnitofMeasure="ACHnatural"]/Value - + + + [RoofType=AdjacentToUnventedAttic] + + Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="false"]]/WithinInfiltrationVolume + + + [Roof_RadiantBarrier] @@ -538,7 +545,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'ground' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 0 or 1 element(s) for xpath: Type Expected Type to be 'solid concrete' or 'concrete block' or 'concrete block foam core' or 'concrete block vermiculite core' or 'concrete block perlite core' or 'concrete block solid core' or 'double brick' or 'wood' @@ -568,6 +575,20 @@ + + [FoundationWallType=AdjacentToUnventedCrawl] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Crawlspace[Vented="false"]]/WithinInfiltrationVolume + + + + + [FoundationWallType=AdjacentToUncondBasement] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Basement[Conditioned="false"]]/WithinInfiltrationVolume + + + [FoundationWallInsulationLayer] diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 4eb2a3f71..5e160d2e1 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -933,8 +933,8 @@ def self.process_load_infiltration_ventilation(mj, bldg_design_loads, weather) Heating and Cooling Loads: Infiltration & Ventilation ''' - sla, _ach50, _nach, _volume, _height, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) - sla *= a_ext + infil_values = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) + sla = infil_values[:sla] * infil_values[:a_ext] ela = sla * @cfa ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 83d13fcb5..8fa176270 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2350,7 +2350,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2360,13 +2360,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2376,13 +2376,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2391,7 +2391,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 21.7, 61.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.0, 74.2) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2400,7 +2400,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2418,7 +2418,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2448,7 +2448,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2459,7 +2459,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 173.3, 298.8, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 5550b6f3f..6ae660290 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2900,20 +2900,22 @@ Each exhaust only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/ .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -2938,20 +2940,22 @@ Each supply only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/M .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -2976,20 +2980,22 @@ Each balanced (supply and exhaust) fan is entered as a ``/HPXML/Building/Buildin .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] If FanPower not provided, defaults to 0.7 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. .. _vent_fan_hrv: @@ -3014,20 +3020,22 @@ Each heat recovery ventilator (HRV) is entered as a ``/HPXML/Building/BuildingDe .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3054,20 +3062,22 @@ Each energy recovery ventilator (ERV) is entered as a ``/HPXML/Building/Building .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedTotalRecoveryEfficiency (ATRE) is preferable to TotalRecoveryEfficiency (TRE). .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3098,20 +3108,22 @@ Each central fan integrated supply (CFIS) system is entered as a ``/HPXML/Buildi .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". .. [#] SupplementalFan must reference another ``VentilationFan`` where UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] The flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] The HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). .. [#] If FanPower not provided, defaults to 0.58 W/cfm based on ANSI/RESNET/ICC 301-2022 Addendum C. diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 8c15ace79..70506a3a6 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -1,579 +1,369 @@ 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,22316.0,0.0,0.0,928.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,19675.0,0.0,0.0,818.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,22316.0,0.0,0.0,928.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,20276.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,16675.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,66900.0,31615.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,66900.0,0.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-emergency.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,31615.0,0.0,16675.0,997.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-emergency.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-supplemental.xml,31615.0,0.0,16675.0,997.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,0.0,31615.0,2110.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,0.0,0.0,2110.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,20276.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,16675.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,66900.0,31615.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,66900.0,0.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,20276.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,16675.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,66900.0,31615.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,66900.0,0.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,20276.0,757.0,998.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,16675.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,66900.0,31615.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,66900.0,0.0,2110.0,2782.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,25330.0,25330.0,31615.0,799.0,1053.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,25330.0,25330.0,19583.0,799.0,1053.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,16597.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,66554.0,66554.0,31615.0,2099.0,2768.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,66554.0,66554.0,0.0,2099.0,2768.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-emergency.xml,27143.0,27143.0,24098.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-supplemental.xml,27143.0,27143.0,24098.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad-backup-emergency.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad-backup-supplemental.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA-backup-emergency.xml,27143.0,27143.0,24098.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA-backup-supplemental.xml,27143.0,27143.0,24098.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad-backup-emergency.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad-backup-supplemental.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA-backup-emergency.xml,24390.0,24390.0,24098.0,769.0,1014.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA-backup-supplemental.xml,24390.0,24390.0,24098.0,769.0,1014.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,24098.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad-backup-emergency.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad-backup-supplemental.xml,33550.0,33550.0,24098.0,1058.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,27143.0,27143.0,32706.0,1578.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,27143.0,27143.0,32706.0,1578.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,32706.0,1719.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,32706.0,1719.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,33550.0,33550.0,32706.0,1780.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,33550.0,33550.0,32706.0,1780.0,1395.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,27143.0,27143.0,31615.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,27143.0,27143.0,14335.0,856.0,1129.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,11487.0,997.0,1315.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,49658.0,49658.0,31615.0,1566.0,2065.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,49658.0,49658.0,0.0,1566.0,2065.0 -denver-hvac-autosize-boiler-coal-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-elec-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,24098.0,22316.0,0.0,0.0,928.0 -denver-hvac-autosize-boiler-gas-only-pilot.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-gas-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-oil-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-propane-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-boiler-wood-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,22316.0,0.0,0.0,928.0 -denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,22316.0,0.0,0.0,928.0 -denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,21829.0,0.0,0.0,908.0 -denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20879.0,0.0,0.0,868.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.xml,31615.0,22316.0,31615.0,997.0,928.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-supplemental.xml,31615.0,22316.0,16675.0,997.0,928.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-emergency.xml,31615.0,22316.0,31615.0,997.0,928.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-supplemental.xml,31615.0,22316.0,16675.0,997.0,928.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-emergency.xml,66900.0,22316.0,31615.0,2110.0,928.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-supplemental.xml,66900.0,22316.0,0.0,2110.0,928.0 -denver-hvac-autosize-dse.xml,24098.0,15586.0,0.0,532.0,648.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-emergency.xml,35860.0,35860.0,31615.0,1131.0,1491.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,35860.0,35860.0,31615.0,1131.0,1491.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,23994.0,23994.0,31615.0,757.0,998.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35860.0,35860.0,31615.0,1131.0,1491.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35860.0,35860.0,31615.0,1131.0,1491.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,25330.0,25330.0,31615.0,799.0,1053.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,25330.0,25330.0,31615.0,799.0,1053.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35076.0,35076.0,31615.0,1106.0,1459.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35076.0,35076.0,31615.0,1106.0,1459.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,24390.0,24390.0,31615.0,769.0,1014.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,24390.0,24390.0,31615.0,769.0,1014.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,33550.0,33550.0,31615.0,1058.0,1395.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,33550.0,33550.0,31615.0,1058.0,1395.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,19971.0,19971.0,26641.0,630.0,830.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,19971.0,19971.0,26641.0,630.0,830.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,26641.0,26641.0,26641.0,840.0,1108.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,26641.0,26641.0,26641.0,840.0,1108.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,30208.0,30208.0,26641.0,953.0,1256.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,30208.0,30208.0,26641.0,953.0,1256.0 -denver-hvac-autosize-ducts-area-fractions.xml,71768.0,98179.0,0.0,1585.0,4083.0 -denver-hvac-autosize-ducts-area-multipliers.xml,31918.0,21903.0,0.0,705.0,911.0 -denver-hvac-autosize-ducts-buried.xml,29075.0,18474.0,0.0,642.0,768.0 -denver-hvac-autosize-ducts-defaults.xml,29832.0,14572.0,0.0,703.0,379.0 -denver-hvac-autosize-ducts-effective-rvalue.xml,32701.0,22311.0,0.0,722.0,928.0 -denver-hvac-autosize-ducts-leakage-cfm50.xml,34972.0,24549.0,0.0,772.0,1021.0 -denver-hvac-autosize-ducts-leakage-percent.xml,33200.0,25064.0,0.0,733.0,1042.0 -denver-hvac-autosize-elec-resistance-only.xml,24098.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-evap-cooler-furnace-gas.xml,32706.0,13741.0,0.0,722.0,2508.0 -denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,16228.0,0.0,0.0,2961.0 -denver-hvac-autosize-evap-cooler-only.xml,0.0,13741.0,0.0,0.0,2508.0 -denver-hvac-autosize-fireplace-wood-only.xml,25243.0,0.0,0.0,736.0,0.0 -denver-hvac-autosize-floor-furnace-propane-only.xml,24098.0,0.0,0.0,703.0,0.0 -denver-hvac-autosize-furnace-coal-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32706.0,22316.0,0.0,722.0,928.0 -denver-hvac-autosize-furnace-elec-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32706.0,21829.0,0.0,722.0,908.0 -denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32706.0,20879.0,0.0,722.0,868.0 -denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-gas-only-pilot.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-gas-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-gas-room-ac.xml,32706.0,14572.0,0.0,722.0,379.0 -denver-hvac-autosize-furnace-oil-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-propane-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-wood-only.xml,32706.0,0.0,0.0,722.0,0.0 -denver-hvac-autosize-furnace-x3-dse.xml,24338.0,15586.0,0.0,538.0,648.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,25786.0,0.0,0.0,925.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,19675.0,0.0,0.0,705.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,25786.0,0.0,0.0,925.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-emergency.xml,33030.0,33030.0,33030.0,1042.0,1184.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-supplemental.xml,33030.0,33030.0,33030.0,1042.0,1184.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-emergency.xml,33030.0,33030.0,33030.0,1042.0,1373.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-supplemental.xml,33030.0,33030.0,33030.0,1042.0,1373.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-emergency.xml,35919.0,35919.0,33030.0,1133.0,1494.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-supplemental.xml,35919.0,35919.0,33030.0,1133.0,1494.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-emergency.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-emergency.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-supplemental.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,31615.0,0.0,31615.0,997.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1134.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1134.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,31615.0,997.0,1315.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,35012.0,35012.0,31615.0,1104.0,1456.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,35012.0,35012.0,31615.0,1104.0,1456.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,27096.0,28224.0,31615.0,641.0,880.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,27096.0,28224.0,20276.0,641.0,880.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,35703.0,37189.0,31615.0,845.0,1160.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,35703.0,37189.0,16675.0,845.0,1160.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,75549.0,78694.0,31615.0,1787.0,2454.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,75549.0,78694.0,0.0,1787.0,2454.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,28572.0,29619.0,31615.0,676.0,924.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,28572.0,29619.0,19583.0,676.0,924.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,35661.0,36968.0,31615.0,844.0,1153.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,35661.0,36968.0,16597.0,844.0,1153.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,75070.0,77823.0,31615.0,1776.0,2427.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,75070.0,77823.0,0.0,1776.0,2427.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30664.0,31941.0,31615.0,725.0,996.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30664.0,31941.0,14335.0,725.0,996.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,35717.0,37204.0,31615.0,845.0,1160.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,35717.0,37204.0,11487.0,845.0,1160.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,56100.0,58436.0,31615.0,1327.0,1822.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,56100.0,58436.0,0.0,1327.0,1822.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32706.0,26251.0,0.0,542.0,819.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32706.0,25525.0,0.0,542.0,796.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32706.0,24570.0,0.0,542.0,766.0 -denver-hvac-autosize-install-quality-furnace-gas-only.xml,32706.0,0.0,0.0,542.0,0.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,35698.0,37390.0,31615.0,844.0,1005.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,35698.0,37390.0,31615.0,844.0,1005.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,35698.0,37390.0,31615.0,844.0,1166.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,35698.0,37390.0,31615.0,844.0,1166.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,39533.0,41408.0,31615.0,935.0,1291.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,39533.0,41408.0,31615.0,935.0,1291.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,21082.0,0.0,0.0,657.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,24623.0,25649.0,26641.0,583.0,800.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,24623.0,25649.0,12764.0,583.0,800.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,30097.0,31351.0,26641.0,712.0,978.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,30097.0,31351.0,9679.0,712.0,978.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,47273.0,49242.0,26641.0,1118.0,1536.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,47273.0,49242.0,0.0,1118.0,1536.0 -denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17915.0,0.0,0.0,745.0 -denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14582.0,0.0,0.0,486.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17915.0,0.0,0.0,745.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15799.0,0.0,0.0,657.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,17915.0,0.0,0.0,745.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,41844.0,0.0,26641.0,1320.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,41844.0,0.0,0.0,1320.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,21796.0,21796.0,26641.0,687.0,906.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,21796.0,21796.0,12764.0,687.0,906.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,26641.0,26641.0,26641.0,840.0,1108.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,26641.0,26641.0,9679.0,840.0,1108.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,41844.0,41844.0,26641.0,1320.0,1740.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,41844.0,41844.0,0.0,1320.0,1740.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-emergency.xml,18957.0,18957.0,24098.0,632.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-supplemental.xml,18957.0,18957.0,12029.0,632.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,24098.0,803.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,8756.0,803.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-emergency.xml,37850.0,37850.0,24098.0,1262.0,1262.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-supplemental.xml,37850.0,37850.0,0.0,1262.0,1262.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-emergency.xml,18957.0,18957.0,25048.0,1185.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-supplemental.xml,18957.0,18957.0,25048.0,1185.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,25048.0,1356.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,25048.0,1356.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-emergency.xml,25572.0,25572.0,25048.0,1405.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-supplemental.xml,25572.0,25572.0,25048.0,1405.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,18957.0,18957.0,27030.0,1229.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,18957.0,18957.0,27030.0,1229.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,27030.0,1400.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,27030.0,1400.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,25572.0,25572.0,27030.0,1449.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,25572.0,25572.0,27030.0,1449.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-emergency.xml,18957.0,18957.0,24098.0,1335.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-supplemental.xml,18957.0,18957.0,24098.0,1335.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,24098.0,1506.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,24098.0,1506.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-emergency.xml,25572.0,25572.0,24098.0,1555.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-supplemental.xml,25572.0,25572.0,24098.0,1555.0,852.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,18957.0,18957.0,0.0,632.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,24098.0,24098.0,0.0,803.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37850.0,37850.0,0.0,1262.0,1262.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,18957.0,18957.0,0.0,632.0,632.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,24098.0,24098.0,0.0,803.0,803.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37850.0,37850.0,0.0,1262.0,1262.0 -denver-hvac-autosize-multiple-sizing-methodology-ACCA-backup-emergency.xml,43776.0,31700.0,6235.0,1032.0,1049.0 -denver-hvac-autosize-multiple-sizing-methodology-ACCA-backup-supplemental.xml,43776.0,31700.0,2997.0,1032.0,1049.0 -denver-hvac-autosize-multiple-sizing-methodology-HERS-backup-emergency.xml,37870.0,25794.0,6235.0,844.0,885.0 -denver-hvac-autosize-multiple-sizing-methodology-HERS-backup-supplemental.xml,37870.0,25794.0,3430.0,844.0,885.0 -denver-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-emergency.xml,49172.0,37096.0,6235.0,1203.0,1269.0 -denver-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-supplemental.xml,49172.0,37096.0,2997.0,1203.0,1269.0 +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,25917.0,25917.0,23640.0,817.0,1078.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,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25917.0,25917.0,23640.0,817.0,1078.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,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,24037.0,24037.0,23640.0,758.0,1000.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,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25917.0,25917.0,32235.0,1529.0,1078.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,33052.0,33052.0,32235.0,1755.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25917.0,25917.0,31147.0,817.0,1078.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,48922.0,48922.0,31147.0,1543.0,2034.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,19936.0,0.0,0.0,829.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,24037.0,24037.0,31147.0,758.0,1000.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,33052.0,33052.0,31147.0,1043.0,1374.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19626.0,19626.0,26181.0,619.0,816.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,29687.0,29687.0,26181.0,936.0,1234.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,19936.0,0.0,712.0,829.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-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24963.0,0.0,0.0,873.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,657.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24963.0,0.0,0.0,873.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA.xml,31565.0,31565.0,31565.0,996.0,1104.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,34979.0,34979.0,31565.0,1103.0,1455.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,1090.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,34704.0,34704.0,31147.0,1095.0,1443.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,35132.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,29280.0,30497.0,31147.0,693.0,951.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35188.0,36653.0,31147.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57570.0,31147.0,1307.0,1795.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,23459.0,0.0,534.0,732.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,967.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,39186.0,41044.0,31147.0,927.0,1280.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20423.0,0.0,0.0,637.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24847.0,26181.0,564.0,775.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,46458.0,48392.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17356.0,0.0,0.0,722.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14282.0,0.0,0.0,476.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17356.0,0.0,0.0,722.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,17356.0,0.0,0.0,722.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,41122.0,0.0,26181.0,1297.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,21116.0,21116.0,26181.0,666.0,878.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,41122.0,41122.0,26181.0,1297.0,1710.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,18566.0,18566.0,23640.0,619.0,619.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,37131.0,37131.0,23640.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,18566.0,18566.0,24589.0,1162.0,619.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,25086.0,25086.0,24589.0,1379.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,18566.0,18566.0,26570.0,1206.0,619.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,25086.0,25086.0,26570.0,1423.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,18566.0,18566.0,23640.0,1308.0,619.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,25086.0,25086.0,23640.0,1525.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,18566.0,18566.0,0.0,619.0,619.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,37131.0,37131.0,0.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,18566.0,18566.0,0.0,619.0,619.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,37131.0,37131.0,0.0,1238.0,1238.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,42834.0,30709.0,12678.0,1007.0,1013.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0,824.0,854.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,47994.0,35869.0,12678.0,1171.0,1223.0 denver-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 -denver-hvac-autosize-ptac-with-heating-electricity.xml,24098.0,14572.0,0.0,532.0,379.0 -denver-hvac-autosize-ptac-with-heating-natural-gas.xml,24098.0,14572.0,0.0,532.0,379.0 -denver-hvac-autosize-ptac.xml,0.0,14572.0,0.0,0.0,379.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,16758.0,16758.0,24098.0,489.0,436.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,16758.0,16758.0,16179.0,489.0,436.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,24098.0,703.0,627.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,12710.0,703.0,627.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,50993.0,50993.0,24098.0,1487.0,1326.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,50993.0,50993.0,0.0,1487.0,1326.0 -denver-hvac-autosize-pthp-sizing-methodology-ACCA-backup-emergency.xml,16758.0,16758.0,24098.0,489.0,436.0 -denver-hvac-autosize-pthp-sizing-methodology-ACCA-backup-supplemental.xml,16758.0,16758.0,16179.0,489.0,436.0 -denver-hvac-autosize-pthp-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,24098.0,703.0,627.0 -denver-hvac-autosize-pthp-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,12710.0,703.0,627.0 -denver-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-emergency.xml,50993.0,50993.0,24098.0,1487.0,1326.0 -denver-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-supplemental.xml,50993.0,50993.0,0.0,1487.0,1326.0 -denver-hvac-autosize-room-ac-only-33percent.xml,0.0,4809.0,0.0,0.0,125.0 -denver-hvac-autosize-room-ac-only-ceer.xml,0.0,14572.0,0.0,0.0,379.0 -denver-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,14572.0,0.0,0.0,379.0 -denver-hvac-autosize-room-ac-only.xml,0.0,14572.0,0.0,0.0,379.0 -denver-hvac-autosize-room-ac-with-heating.xml,24098.0,14572.0,0.0,532.0,379.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-emergency.xml,16758.0,16758.0,24098.0,489.0,436.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-supplemental.xml,16758.0,16758.0,16179.0,489.0,436.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-emergency.xml,24098.0,24098.0,24098.0,703.0,627.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-supplemental.xml,24098.0,24098.0,12710.0,703.0,627.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-emergency.xml,50993.0,50993.0,24098.0,1487.0,1326.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-supplemental.xml,50993.0,50993.0,0.0,1487.0,1326.0 -denver-hvac-autosize-seasons.xml,32706.0,22316.0,0.0,722.0,928.0 -denver-hvac-autosize-setpoints-daily-schedules.xml,32706.0,22316.0,0.0,722.0,928.0 -denver-hvac-autosize-setpoints-daily-setbacks.xml,32706.0,22316.0,0.0,722.0,928.0 -denver-hvac-autosize-setpoints.xml,32706.0,22316.0,0.0,722.0,928.0 -denver-hvac-autosize-space-heater-gas-only.xml,24098.0,0.0,0.0,703.0,0.0 -denver-hvac-autosize-stove-oil-only.xml,24098.0,0.0,0.0,703.0,0.0 -denver-hvac-autosize-stove-wood-pellets-only.xml,24098.0,0.0,0.0,703.0,0.0 -denver-hvac-autosize-undersized.xml,29360.0,20563.0,0.0,648.0,855.0 -denver-hvac-autosize-wall-furnace-elec-only.xml,24098.0,0.0,0.0,703.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27100.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,25334.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,27100.0,0.0,0.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-emergency.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,20318.0,0.0,3456.0,529.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-emergency.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS-backup-supplemental.xml,20318.0,0.0,3456.0,529.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,24483.0,0.0,20318.0,638.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,24483.0,0.0,0.0,638.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,27344.0,27344.0,20318.0,712.0,1137.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,27344.0,27344.0,0.0,712.0,1137.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30436.0,30436.0,20318.0,793.0,1266.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30436.0,30436.0,0.0,793.0,1266.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,14346.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,14346.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,14346.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,14346.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,14346.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,14346.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,14346.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,14346.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,14346.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,21542.0,1031.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,182.0,641.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,21542.0,1053.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,21542.0,1149.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,20318.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,20318.0,756.0,1207.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-boiler-coal-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-elec-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14346.0,27100.0,0.0,0.0,1127.0 -houston-hvac-autosize-boiler-gas-only-pilot.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-gas-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-oil-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-propane-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-boiler-wood-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27100.0,0.0,0.0,1127.0 -houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27100.0,0.0,0.0,1127.0 -houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27344.0,0.0,0.0,1137.0 -houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,24480.0,0.0,0.0,1018.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.xml,20318.0,27100.0,20318.0,529.0,1127.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-supplemental.xml,20318.0,27100.0,3456.0,529.0,1127.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-emergency.xml,20318.0,27100.0,20318.0,529.0,1127.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS-backup-supplemental.xml,20318.0,27100.0,3456.0,529.0,1127.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-emergency.xml,24483.0,27100.0,20318.0,638.0,1127.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad-backup-supplemental.xml,24483.0,27100.0,0.0,638.0,1127.0 -houston-hvac-autosize-dse.xml,14346.0,18125.0,0.0,262.0,754.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,27100.0,27100.0,20318.0,706.0,1127.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,27100.0,27100.0,0.0,706.0,1127.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30526.0,30526.0,20318.0,795.0,1269.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30526.0,30526.0,0.0,795.0,1269.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,27344.0,27344.0,20318.0,712.0,1137.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,27344.0,27344.0,0.0,712.0,1137.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,30436.0,30436.0,20318.0,793.0,1266.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,30436.0,30436.0,0.0,793.0,1266.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,20318.0,638.0,1018.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,20318.0,756.0,1207.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,20784.0,20784.0,16325.0,541.0,864.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,20784.0,20784.0,0.0,541.0,864.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,19595.0,19595.0,16325.0,510.0,815.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,19595.0,19595.0,0.0,510.0,815.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,22457.0,22457.0,16325.0,585.0,934.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,22457.0,22457.0,0.0,585.0,934.0 -houston-hvac-autosize-ducts-area-fractions.xml,45208.0,118904.0,0.0,824.0,4944.0 -houston-hvac-autosize-ducts-area-multipliers.xml,20870.0,26672.0,0.0,381.0,1109.0 -houston-hvac-autosize-ducts-buried.xml,19295.0,23097.0,0.0,352.0,960.0 -houston-hvac-autosize-ducts-defaults.xml,20016.0,18125.0,0.0,407.0,471.0 -houston-hvac-autosize-ducts-effective-rvalue.xml,21538.0,27095.0,0.0,393.0,1127.0 -houston-hvac-autosize-ducts-leakage-cfm50.xml,22796.0,33171.0,0.0,416.0,1379.0 -houston-hvac-autosize-ducts-leakage-percent.xml,19755.0,33313.0,0.0,360.0,1385.0 -houston-hvac-autosize-elec-resistance-only.xml,14346.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-evap-cooler-furnace-gas.xml,21542.0,16944.0,0.0,393.0,5400.0 -houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18499.0,0.0,0.0,5400.0 -houston-hvac-autosize-evap-cooler-only.xml,0.0,16944.0,0.0,0.0,5400.0 -houston-hvac-autosize-fireplace-wood-only.xml,15160.0,0.0,0.0,442.0,0.0 -houston-hvac-autosize-floor-furnace-propane-only.xml,14346.0,0.0,0.0,418.0,0.0 -houston-hvac-autosize-furnace-coal-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21542.0,27100.0,0.0,393.0,1127.0 -houston-hvac-autosize-furnace-elec-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21542.0,27344.0,0.0,393.0,1137.0 -houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21542.0,24480.0,0.0,393.0,1018.0 -houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-gas-only-pilot.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-gas-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-gas-room-ac.xml,21542.0,18125.0,0.0,393.0,471.0 -houston-hvac-autosize-furnace-oil-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-propane-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-wood-only.xml,21542.0,0.0,0.0,393.0,0.0 -houston-hvac-autosize-furnace-x3-dse.xml,14489.0,18125.0,0.0,264.0,754.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,33273.0,0.0,0.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25334.0,0.0,0.0,704.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,33273.0,0.0,0.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-emergency.xml,33273.0,33273.0,21169.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA-backup-supplemental.xml,33273.0,33273.0,21169.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,21169.0,660.0,704.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,21169.0,660.0,704.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-emergency.xml,33273.0,33273.0,21169.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad-backup-supplemental.xml,33273.0,33273.0,21169.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-emergency.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-emergency.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS-backup-supplemental.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,20318.0,0.0,20318.0,529.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,33273.0,33273.0,20318.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,33273.0,33273.0,20318.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,704.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,20318.0,660.0,704.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,33273.0,33273.0,20318.0,867.0,924.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,33273.0,33273.0,20318.0,867.0,924.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-emergency.xml,33336.0,31858.0,20318.0,651.0,994.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA-backup-supplemental.xml,33336.0,31858.0,0.0,651.0,994.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-emergency.xml,31163.0,29782.0,20318.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS-backup-supplemental.xml,31163.0,29782.0,0.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-emergency.xml,37551.0,35886.0,20318.0,734.0,1119.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37551.0,35886.0,0.0,734.0,1119.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-emergency.xml,33612.0,31955.0,20318.0,657.0,997.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,33612.0,31955.0,0.0,657.0,997.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,31141.0,29605.0,20318.0,608.0,923.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,31141.0,29605.0,0.0,608.0,923.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,37414.0,35568.0,20318.0,731.0,1109.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37414.0,35568.0,0.0,731.0,1109.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30112.0,28790.0,20318.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30112.0,28790.0,0.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31162.0,29792.0,20318.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31162.0,29792.0,0.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35714.0,34143.0,20318.0,698.0,1065.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35714.0,34143.0,0.0,698.0,1065.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21542.0,31858.0,0.0,295.0,994.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21542.0,31955.0,0.0,295.0,997.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21542.0,28790.0,0.0,295.0,898.0 -houston-hvac-autosize-install-quality-furnace-gas-only.xml,21542.0,0.0,0.0,295.0,0.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,40850.0,39327.0,20318.0,798.0,819.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,40850.0,39327.0,20318.0,798.0,819.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-emergency.xml,31103.0,29943.0,20318.0,608.0,624.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,31103.0,29943.0,20318.0,608.0,624.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,40850.0,39327.0,20318.0,798.0,819.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,40850.0,39327.0,20318.0,798.0,819.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24442.0,0.0,0.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,25566.0,24442.0,16325.0,499.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25566.0,24442.0,0.0,499.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,24103.0,23043.0,16325.0,471.0,719.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,24103.0,23043.0,0.0,471.0,719.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27623.0,26411.0,16325.0,540.0,824.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27623.0,26411.0,0.0,540.0,824.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20784.0,0.0,0.0,864.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17972.0,0.0,0.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20784.0,0.0,0.0,864.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19595.0,0.0,0.0,815.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,20784.0,0.0,0.0,864.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,18710.0,0.0,16325.0,487.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,18710.0,0.0,0.0,487.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,20784.0,20784.0,16325.0,541.0,864.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,20784.0,20784.0,0.0,541.0,864.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,19595.0,19595.0,16325.0,510.0,815.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,19595.0,19595.0,0.0,510.0,815.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,22457.0,22457.0,16325.0,585.0,934.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,22457.0,22457.0,0.0,585.0,934.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-emergency.xml,17972.0,17972.0,14346.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA-backup-supplemental.xml,17972.0,17972.0,0.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,14346.0,565.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,0.0,565.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-emergency.xml,19418.0,19418.0,14346.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad-backup-supplemental.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-emergency.xml,17972.0,17972.0,15357.0,879.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA-backup-supplemental.xml,17972.0,17972.0,0.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,15357.0,845.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,573.0,575.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-emergency.xml,19418.0,19418.0,15357.0,927.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad-backup-supplemental.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-emergency.xml,17972.0,17972.0,16737.0,904.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA-backup-supplemental.xml,17972.0,17972.0,1055.0,618.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,16737.0,870.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,1953.0,601.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,19418.0,19418.0,16737.0,952.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-emergency.xml,17972.0,17972.0,14346.0,1017.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA-backup-supplemental.xml,17972.0,17972.0,0.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,14346.0,983.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,0.0,565.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-emergency.xml,19418.0,19418.0,14346.0,1065.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad-backup-supplemental.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17972.0,17972.0,0.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16944.0,16944.0,0.0,565.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17972.0,17972.0,0.0,599.0,599.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16944.0,16944.0,0.0,565.0,565.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,19418.0,19418.0,0.0,647.0,647.0 -houston-hvac-autosize-multiple-sizing-methodology-ACCA-backup-emergency.xml,57183.0,53026.0,9037.0,1324.0,1681.0 -houston-hvac-autosize-multiple-sizing-methodology-ACCA-backup-supplemental.xml,57183.0,53026.0,4447.0,1324.0,1681.0 -houston-hvac-autosize-multiple-sizing-methodology-HERS-backup-emergency.xml,49152.0,44995.0,9037.0,1113.0,1490.0 -houston-hvac-autosize-multiple-sizing-methodology-HERS-backup-supplemental.xml,49152.0,44995.0,4447.0,1113.0,1490.0 -houston-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-emergency.xml,59306.0,55149.0,9037.0,1380.0,1766.0 -houston-hvac-autosize-multiple-sizing-methodology-MaxLoad-backup-supplemental.xml,59306.0,55149.0,4447.0,1380.0,1766.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,24475.0,24475.0,14077.0,638.0,1018.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,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,24475.0,24475.0,14077.0,638.0,1018.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,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,24475.0,24475.0,14077.0,638.0,1018.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,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,24475.0,24475.0,21260.0,1026.0,1018.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,29028.0,29028.0,21260.0,1144.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,24475.0,24475.0,20038.0,638.0,1018.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,29028.0,29028.0,20038.0,756.0,1207.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,24475.0,0.0,0.0,1018.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,24475.0,24475.0,20038.0,638.0,1018.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,29028.0,29028.0,20038.0,756.0,1207.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,20779.0,20779.0,16055.0,541.0,864.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,22451.0,22451.0,16055.0,585.0,934.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,24475.0,0.0,388.0,1018.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-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,33269.0,0.0,0.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,33269.0,0.0,0.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA.xml,33269.0,33269.0,20288.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20288.0,660.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad.xml,33269.0,33269.0,20288.0,867.0,924.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,33269.0,33269.0,20038.0,867.0,924.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,703.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,33269.0,33269.0,20038.0,867.0,924.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,30106.0,28783.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29789.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34140.0,20038.0,698.0,1065.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,28783.0,0.0,291.0,898.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,40845.0,39322.0,20038.0,798.0,819.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,624.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,40845.0,39322.0,20038.0,798.0,819.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24436.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24436.0,16055.0,499.0,762.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,27617.0,26405.0,16055.0,540.0,823.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20779.0,0.0,0.0,864.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17967.0,0.0,0.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20779.0,0.0,0.0,864.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,20779.0,0.0,0.0,864.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,18399.0,0.0,16055.0,479.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,20779.0,20779.0,16055.0,541.0,864.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,22451.0,22451.0,16055.0,585.0,934.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17967.0,17967.0,14077.0,599.0,599.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,19413.0,19413.0,14077.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17967.0,17967.0,15088.0,874.0,599.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,19413.0,19413.0,15088.0,922.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17967.0,17967.0,16466.0,899.0,599.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,19413.0,19413.0,16466.0,947.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17967.0,17967.0,14077.0,1010.0,599.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,19413.0,19413.0,14077.0,1058.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17967.0,17967.0,0.0,599.0,599.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,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17967.0,17967.0,0.0,599.0,599.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,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,56823.0,53013.0,12670.0,1318.0,1681.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0,1107.0,1490.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,58946.0,55136.0,12670.0,1374.0,1766.0 houston-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 -houston-hvac-autosize-ptac-with-heating-electricity.xml,14346.0,18125.0,0.0,262.0,471.0 -houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14346.0,18125.0,0.0,262.0,471.0 -houston-hvac-autosize-ptac.xml,0.0,18125.0,0.0,0.0,471.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-emergency.xml,18125.0,18125.0,14346.0,529.0,471.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA-backup-supplemental.xml,18125.0,18125.0,0.0,529.0,471.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,14346.0,494.0,441.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,285.0,494.0,441.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-emergency.xml,20417.0,20417.0,14346.0,595.0,531.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad-backup-supplemental.xml,20417.0,20417.0,0.0,595.0,531.0 -houston-hvac-autosize-pthp-sizing-methodology-ACCA-backup-emergency.xml,18125.0,18125.0,14346.0,529.0,471.0 -houston-hvac-autosize-pthp-sizing-methodology-ACCA-backup-supplemental.xml,18125.0,18125.0,0.0,529.0,471.0 -houston-hvac-autosize-pthp-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,14346.0,494.0,441.0 -houston-hvac-autosize-pthp-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,285.0,494.0,441.0 -houston-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-emergency.xml,20417.0,20417.0,14346.0,595.0,531.0 -houston-hvac-autosize-pthp-sizing-methodology-MaxLoad-backup-supplemental.xml,20417.0,20417.0,0.0,595.0,531.0 -houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5981.0,0.0,0.0,156.0 -houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18125.0,0.0,0.0,471.0 -houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18125.0,0.0,0.0,471.0 -houston-hvac-autosize-room-ac-only.xml,0.0,18125.0,0.0,0.0,471.0 -houston-hvac-autosize-room-ac-with-heating.xml,14346.0,18125.0,0.0,262.0,471.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-emergency.xml,18125.0,18125.0,14346.0,529.0,471.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA-backup-supplemental.xml,18125.0,18125.0,0.0,529.0,471.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-emergency.xml,16944.0,16944.0,14346.0,494.0,441.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS-backup-supplemental.xml,16944.0,16944.0,285.0,494.0,441.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-emergency.xml,20417.0,20417.0,14346.0,595.0,531.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad-backup-supplemental.xml,20417.0,20417.0,0.0,595.0,531.0 -houston-hvac-autosize-seasons.xml,21542.0,27100.0,0.0,393.0,1127.0 -houston-hvac-autosize-setpoints-daily-schedules.xml,21542.0,27100.0,0.0,393.0,1127.0 -houston-hvac-autosize-setpoints-daily-setbacks.xml,21542.0,27100.0,0.0,393.0,1127.0 -houston-hvac-autosize-setpoints.xml,21542.0,27100.0,0.0,393.0,1127.0 -houston-hvac-autosize-space-heater-gas-only.xml,14346.0,0.0,0.0,418.0,0.0 -houston-hvac-autosize-stove-oil-only.xml,14346.0,0.0,0.0,418.0,0.0 -houston-hvac-autosize-stove-wood-pellets-only.xml,14346.0,0.0,0.0,418.0,0.0 -houston-hvac-autosize-undersized.xml,18113.0,23553.0,0.0,330.0,979.0 -houston-hvac-autosize-wall-furnace-elec-only.xml,14346.0,0.0,0.0,418.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 af7535626..fb84b3baa 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -1,296 +1,284 @@ 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.759,60.759,32.902,32.902,22.991,0.0,0.0,0.0,0.0,4.867,0.0,0.379,0.0,0.0,4.346,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,21.53,0.0,14.349,9.071,0.615,0.0,0.0,0.0,0.0,1949.1,3732.4,3732.4,23.443,19.507,0.0,3.549,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,4.985,0.0,0.486,0.0,4.979,-8.29,-2.488,0.0,-0.044,-0.452,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.29,-0.066,-1.185,-3.845,-0.109,0.0,3.172,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.565,34.565,32.819,32.819,1.747,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.699,1.818,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.465,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.596,0.0,30.655,6.557,0.574,0.0,0.0,0.0,0.0,2034.7,2929.9,2929.9,9.843,15.23,0.0,1.737,1.625,0.0,0.0,0.387,4.862,-5.108,0.0,0.0,0.0,1.244,-0.399,1.044,0.237,0.397,0.0,0.043,-3.994,-0.792,0.0,0.551,0.003,0.0,0.0,0.211,2.871,17.063,0.0,0.0,0.0,1.896,-0.394,-0.314,-2.214,-0.083,0.0,0.353,8.986,1.854,1354.7,998.0,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,15278.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.581,34.581,32.848,32.848,1.733,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.697,1.818,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.497,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.57,0.0,30.617,6.557,0.574,0.0,0.0,0.0,0.0,2081.9,2929.9,2929.9,9.837,15.23,0.0,1.755,1.638,0.0,0.0,0.39,4.888,-5.154,0.0,0.0,0.0,1.261,-0.397,1.051,0.247,0.4,0.0,0.043,-4.062,-0.798,0.0,0.567,0.015,0.0,0.0,0.214,2.895,17.017,0.0,0.0,0.0,1.911,-0.391,-0.307,-2.201,-0.08,0.0,0.353,8.919,1.848,1354.7,998.0,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,15278.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.546,34.546,32.758,32.758,1.787,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.688,1.815,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.42,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.626,0.0,30.601,6.557,0.574,0.0,0.0,0.0,0.0,1905.9,2949.3,2949.3,9.876,15.229,0.0,1.733,1.621,0.0,0.0,0.386,4.86,-5.107,0.0,0.0,0.0,1.229,-0.406,1.043,0.233,0.396,0.0,0.044,-3.915,-0.794,0.0,0.55,0.003,0.0,0.0,0.212,2.881,17.064,0.0,0.0,0.0,1.893,-0.401,-0.312,-2.2,-0.082,0.0,0.353,8.935,1.851,1354.7,998.0,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,15278.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier.xml,34.524,34.524,32.789,32.789,1.735,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.69,1.816,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.448,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.582,0.0,30.584,6.557,0.574,0.0,0.0,0.0,0.0,1956.2,2929.9,2929.9,9.876,15.23,0.0,1.757,1.641,0.0,0.0,0.391,4.903,-5.172,0.0,0.0,0.0,1.253,-0.403,1.053,0.26,0.401,0.0,0.043,-4.044,-0.802,0.0,0.573,0.021,0.0,0.0,0.216,2.92,16.999,0.0,0.0,0.0,1.912,-0.398,-0.303,-2.187,-0.078,0.0,0.353,8.876,1.844,1354.7,998.0,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,15278.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-freezer-temperature-dependent-schedule.xml,59.947,59.947,37.002,37.002,22.945,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.365,0.829,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,1.276,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.487,0.0,14.466,9.071,0.614,0.0,0.0,0.0,0.0,2095.7,3708.8,3708.8,23.355,19.442,0.0,3.55,3.643,0.513,7.522,0.631,10.102,-12.683,0.0,0.0,0.0,8.308,-0.068,4.809,0.0,0.728,0.0,4.967,-8.388,-2.487,0.0,-0.047,-0.454,-0.05,2.707,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.305,-0.064,-1.149,-3.869,-0.164,0.0,3.184,8.471,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-appliances-gas.xml,60.759,60.759,32.902,32.902,27.858,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.346,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.991,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.53,0.0,14.349,9.071,0.615,0.0,0.0,0.0,0.0,1949.1,3732.4,3732.4,23.443,19.507,0.0,3.549,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,4.985,0.0,0.486,0.0,4.979,-8.29,-2.488,0.0,-0.044,-0.452,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.29,-0.066,-1.185,-3.845,-0.109,0.0,3.172,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,59.341,59.341,36.572,36.572,22.768,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.367,0.829,9.536,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.637,0.365,1.519,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.322,0.0,14.449,9.633,0.614,0.0,0.0,0.0,0.0,2078.2,3595.9,3595.9,23.444,19.403,0.0,3.553,3.645,0.513,7.526,0.631,10.108,-12.683,0.0,0.0,0.0,8.318,-0.069,5.409,0.0,0.0,0.0,4.938,-8.425,-2.487,0.0,-0.048,-0.454,-0.05,2.707,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.304,-0.065,-1.283,-3.864,0.0,0.0,3.189,8.416,2.02,1354.7,1998.3,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.643,53.643,28.205,28.205,25.438,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.0,0.0,3.933,0.726,7.785,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.824,0.0,12.641,7.75,0.616,0.0,0.0,0.0,0.0,1804.9,3114.9,3114.9,23.85,18.204,0.0,3.514,3.621,0.509,7.456,0.627,10.045,-12.705,0.0,0.0,0.0,8.234,-0.065,5.398,0.0,0.0,0.0,5.445,-6.091,-2.491,0.0,0.017,-0.404,-0.043,2.853,-0.01,-1.212,11.708,0.0,0.0,0.0,-6.068,-0.06,-1.236,-3.553,0.0,0.0,2.86,5.921,2.016,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,60.759,60.759,32.902,32.902,22.991,4.867,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.346,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.53,0.0,14.349,9.071,0.615,0.0,0.0,0.0,0.0,1949.1,3732.4,3732.4,23.443,19.507,0.0,3.549,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,4.985,0.0,0.486,0.0,4.979,-8.29,-2.488,0.0,-0.044,-0.452,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.29,-0.066,-1.185,-3.845,-0.109,0.0,3.172,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,60.759,60.759,32.902,32.902,22.991,0.0,4.867,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.346,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.53,0.0,14.349,9.071,0.615,0.0,0.0,0.0,0.0,1949.1,3732.4,3732.4,23.443,19.507,0.0,3.549,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,4.985,0.0,0.486,0.0,4.979,-8.29,-2.488,0.0,-0.044,-0.452,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.29,-0.066,-1.185,-3.845,-0.109,0.0,3.172,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.759,60.759,32.902,32.902,22.991,0.0,0.0,4.867,0.0,0.0,0.0,0.379,0.0,0.0,4.346,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.53,0.0,14.349,9.071,0.615,0.0,0.0,0.0,0.0,1949.1,3732.4,3732.4,23.443,19.507,0.0,3.549,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.31,-0.069,4.985,0.0,0.486,0.0,4.979,-8.29,-2.488,0.0,-0.044,-0.452,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.29,-0.066,-1.185,-3.845,-0.109,0.0,3.172,8.28,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.195,62.195,35.473,35.473,26.722,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.113,0.771,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,25.005,0.0,13.25,9.071,0.616,0.0,0.0,0.0,0.0,2047.2,3387.1,3387.1,23.038,16.725,6.774,0.0,4.233,0.513,7.48,0.634,12.699,-15.652,0.0,0.0,0.0,8.32,-0.094,9.33,0.0,0.729,0.0,0.0,-7.833,-2.496,0.175,0.0,-0.482,-0.045,2.788,-0.012,-1.106,15.648,0.0,0.0,0.0,-6.288,-0.069,-2.029,-4.694,-0.154,0.0,0.0,7.745,2.012,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30280.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,2408.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,64.058,64.058,40.24,40.24,23.819,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.762,0.926,8.919,0.0,0.0,5.748,0.0,0.398,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,11.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.29,0.0,15.958,9.019,0.614,0.0,0.0,0.0,0.0,2290.6,3817.7,3817.7,22.894,20.061,4.567,1.167,5.564,0.52,7.671,0.638,14.486,-17.164,0.0,0.0,0.0,8.541,-0.091,7.114,0.0,0.731,0.0,0.287,-8.988,-3.17,0.018,0.024,-0.549,-0.052,2.711,-0.026,-1.811,17.674,0.0,0.0,0.0,-6.316,-0.085,-1.654,-5.205,-0.164,0.0,0.093,8.985,2.578,1354.7,998.0,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31926.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,2408.0,724.0,6561.0,18738.0,0.0,11700.0,0.0,207.0,1211.0,650.0,0.0,0.0,764.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.31,55.31,34.765,34.765,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,3.617,0.659,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.226,0.0,11.319,9.071,0.616,0.0,0.0,0.0,0.0,2029.7,3207.2,3207.2,17.971,12.997,6.035,0.0,3.612,0.508,7.441,0.624,10.017,-12.688,0.0,0.0,0.0,8.192,-0.08,4.799,0.0,0.726,0.0,0.0,-7.799,-2.489,0.324,0.0,-0.434,-0.048,2.771,-0.018,-1.311,11.72,0.0,0.0,0.0,-6.201,-0.055,-1.126,-3.734,-0.16,0.0,0.0,7.781,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25234.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,2408.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-ceiling.xml,38.463,38.463,33.276,33.276,5.187,0.0,0.0,0.0,0.0,0.0,0.0,0.022,0.0,0.0,9.471,1.973,6.712,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.181,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,4.79,0.0,33.197,6.557,0.582,0.0,0.0,0.0,0.0,1762.0,3536.7,3536.7,14.518,20.6,0.0,7.07,1.549,0.0,0.0,0.334,4.33,-6.058,0.0,0.0,0.0,0.631,-0.422,0.994,0.0,0.401,0.0,0.128,-3.499,-0.87,0.0,3.82,0.175,0.0,0.0,0.218,3.046,16.138,0.0,0.0,0.0,2.051,-0.414,-0.242,-1.995,-0.037,0.0,0.389,8.574,1.776,1354.7,998.0,9789.2,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,24744.0,63.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,12169.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-radiant-barrier.xml,37.289,37.289,32.835,32.835,4.454,0.0,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.0,9.108,1.896,6.711,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.185,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.112,0.0,31.881,6.557,0.581,0.0,0.0,0.0,0.0,1750.2,3337.6,3337.6,13.639,18.932,0.0,5.948,1.569,0.0,0.0,0.333,4.332,-5.943,0.0,0.0,0.0,0.81,-0.366,0.99,0.0,0.396,0.0,0.11,-3.434,-0.854,0.0,2.399,0.164,0.0,0.0,0.21,2.969,16.228,0.0,0.0,0.0,2.137,-0.358,-0.264,-2.068,-0.047,0.0,0.374,8.641,1.792,1354.7,998.0,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,21643.0,65.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,9065.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.867,57.867,34.932,34.932,22.935,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.725,0.68,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,11.645,9.071,0.616,0.0,0.0,0.0,0.0,2046.6,3307.2,3307.2,19.576,14.296,0.0,5.354,3.622,0.51,7.463,0.627,10.052,-12.698,0.0,0.0,0.0,8.264,-0.07,4.806,0.0,0.728,0.0,2.785,-7.81,-2.491,0.0,-1.395,-0.4,-0.043,2.868,-0.009,-1.203,11.715,0.0,0.0,0.0,-6.03,-0.061,-1.101,-3.519,-0.157,0.0,1.405,7.769,2.016,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30945.0,4827.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.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,58.679,58.679,35.268,35.268,23.411,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,3.848,0.71,9.188,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.922,0.0,12.26,9.071,0.803,0.0,0.0,0.0,0.0,2053.1,3353.7,3353.7,21.989,15.565,0.0,3.887,3.633,0.511,7.49,0.629,10.078,-12.698,0.0,0.0,0.0,8.277,-0.066,4.805,0.0,0.728,0.0,4.297,-7.473,-2.49,0.0,-0.503,-0.424,-0.046,2.791,-0.015,-1.275,11.715,0.0,0.0,0.0,-6.17,-0.062,-1.123,-3.674,-0.16,0.0,1.903,7.491,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.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.954,60.954,37.329,37.329,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.321,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,37.028,37.028,24.04,24.04,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.095,0.0,0.0,1.534,0.185,9.672,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.04,0.0,2.898,9.37,0.731,0.0,0.0,0.0,0.0,1496.3,1906.1,1906.1,8.305,6.269,0.0,2.942,3.648,0.0,0.0,0.585,1.314,-1.599,0.0,0.0,2.977,0.0,-0.048,1.674,0.0,0.0,0.0,5.215,-3.529,-1.183,0.0,-0.891,-0.193,0.0,0.0,-0.044,-0.088,1.303,0.0,0.0,-0.905,0.0,-0.045,-0.267,-0.401,0.0,0.0,0.548,3.087,0.842,1354.7,998.0,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,32.364,32.364,24.943,24.943,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.054,0.0,0.0,2.077,0.304,9.557,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.083,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.884,0.0,5.047,9.37,0.612,0.0,0.0,0.0,0.0,1513.4,2227.0,2227.0,10.066,11.013,0.0,-0.005,3.291,0.0,0.0,1.39,3.735,-4.234,0.0,0.0,4.543,0.0,-0.086,1.252,0.0,0.791,0.0,2.747,-5.509,-1.139,0.0,-0.001,-0.416,0.0,0.0,-0.396,-0.133,3.971,0.0,0.0,-2.921,0.0,-0.081,-0.23,-1.203,-0.123,0.0,0.499,5.302,0.886,1354.7,998.0,11171.5,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,50.251,50.251,23.789,23.789,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,1.417,0.158,9.755,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.399,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.537,0.0,2.432,9.37,0.818,0.0,0.0,0.0,0.0,1491.9,2170.3,2170.3,11.815,8.826,0.0,5.38,4.202,0.0,0.0,0.793,1.293,-1.715,0.0,0.0,5.429,0.0,-0.077,1.706,0.0,0.0,0.0,12.476,-3.737,-1.243,0.0,-1.132,-0.025,0.0,0.0,-0.042,0.011,1.187,0.0,0.0,-1.14,0.0,-0.073,-0.178,-0.296,0.0,0.0,0.531,2.88,0.782,1354.7,998.0,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,26.114,26.114,24.211,24.211,1.904,0.0,0.0,0.0,0.0,0.0,0.0,0.014,0.0,0.0,1.558,0.191,9.582,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.763,0.0,3.001,9.37,0.637,0.0,0.0,0.0,0.0,1508.3,1950.2,1950.2,3.926,6.271,0.0,0.284,3.112,0.0,0.0,0.366,1.367,-1.509,0.0,0.0,0.305,0.0,-0.01,1.681,0.0,0.0,0.0,0.543,-3.319,-1.118,0.0,-0.795,-0.417,0.0,0.0,-0.066,-0.199,1.393,0.0,0.0,-0.811,0.0,-0.007,-0.374,-0.454,0.0,0.0,0.567,3.297,0.907,1354.7,998.0,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.466,26.466,24.825,24.825,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.012,0.0,0.0,1.971,0.292,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.144,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.519,0.0,4.744,9.37,0.593,0.0,0.0,0.0,0.0,1514.5,1818.7,1818.7,4.235,4.793,0.0,-0.003,3.149,0.0,0.0,0.363,1.418,-1.433,0.0,0.0,-0.003,0.0,-0.057,1.741,0.0,0.0,0.0,0.472,-3.109,-1.046,0.0,-0.002,-0.488,0.0,0.0,-0.03,-0.32,1.47,0.0,0.0,-0.002,0.0,-0.055,-0.481,-0.645,0.0,0.0,0.844,3.508,0.98,1354.7,998.0,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.717,26.717,25.953,25.953,0.764,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.855,0.509,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.19,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.706,0.0,8.666,9.37,0.579,0.0,0.0,0.0,0.0,1612.1,2253.4,2253.4,3.618,7.758,0.0,-0.017,2.482,0.0,0.0,0.423,3.949,-2.673,0.0,0.0,-0.013,0.0,-0.407,0.996,0.0,0.687,0.0,0.0,-4.026,-0.783,0.0,-0.012,-1.037,0.0,0.0,-0.034,-1.032,5.529,0.0,0.0,-0.008,0.0,-0.398,-0.37,-1.611,-0.368,0.0,0.0,6.859,1.242,1354.7,998.0,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.916,19.916,18.508,18.508,1.408,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.394,0.394,4.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.165,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.506,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,1.303,0.0,6.943,4.142,0.587,0.0,0.0,0.0,0.0,1088.9,1700.7,1700.7,4.017,7.292,0.0,-0.017,2.596,0.0,0.0,0.419,4.07,-3.113,0.0,0.0,-0.015,0.0,-0.341,1.298,0.0,0.746,0.0,0.0,-3.471,-0.93,0.0,-0.012,-0.775,0.0,0.0,-0.01,-0.682,5.089,0.0,0.0,-0.011,0.0,-0.333,-0.387,-1.448,-0.271,0.0,0.0,4.755,1.095,817.1,530.8,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.374,27.374,26.452,26.452,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,3.073,0.754,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,4.0,1632.2,2104.6,2104.6,3.815,7.12,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213,1354.7,998.0,11171.6,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.147,28.147,27.163,27.163,0.983,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.649,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,9.698,9.37,0.58,0.0,0.0,0.0,13.0,1662.1,2293.7,2293.7,3.975,8.325,0.0,-0.016,2.514,0.0,0.0,0.42,3.963,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.282,0.0,0.699,0.0,0.049,-4.124,-0.809,0.0,-0.011,-0.983,0.0,0.0,-0.032,-0.982,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.465,-1.603,-0.35,0.0,1.199,6.758,1.216,1354.7,998.0,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.61,27.61,26.736,26.736,0.873,0.0,0.0,0.0,0.0,0.0,0.0,0.106,0.0,0.0,3.297,0.754,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,4.0,1642.7,2158.4,2158.4,3.814,7.12,0.0,-0.017,2.515,0.0,0.0,0.421,3.975,-2.773,0.0,0.0,-0.014,0.0,-0.39,1.285,0.0,0.701,0.0,0.0,-4.138,-0.812,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.97,5.429,0.0,0.0,-0.009,0.0,-0.381,-0.462,-1.595,-0.348,0.0,0.0,6.744,1.213,1354.7,998.0,11171.6,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.443,31.443,30.726,30.726,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,7.199,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,9.698,9.37,0.58,0.0,0.0,0.0,13.0,1826.5,3251.9,3251.9,3.903,8.325,0.0,-0.016,2.514,0.0,0.0,0.42,3.963,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.282,0.0,0.699,0.0,0.019,-4.124,-0.809,0.0,-0.011,-0.983,0.0,0.0,-0.032,-0.982,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.465,-1.603,-0.35,0.0,1.199,6.758,1.216,1354.7,998.0,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.737,27.737,27.02,27.02,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,3.492,0.856,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,9.698,9.37,0.58,0.0,0.0,0.0,13.0,1655.1,2254.7,2254.7,3.903,8.325,0.0,-0.016,2.514,0.0,0.0,0.42,3.963,-2.774,0.0,0.0,-0.013,0.0,-0.389,1.282,0.0,0.699,0.0,0.019,-4.124,-0.809,0.0,-0.011,-0.983,0.0,0.0,-0.032,-0.982,5.429,0.0,0.0,-0.008,0.0,-0.38,-0.465,-1.603,-0.35,0.0,1.199,6.758,1.216,1354.7,998.0,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.606,23.606,22.809,22.809,0.797,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1474.9,1412.1,1474.9,3.808,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,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.689,23.689,22.838,22.838,0.85,0.0,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.761,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1486.9,1412.1,1486.9,3.973,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.043,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,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-fireplace-elec.xml,23.595,23.595,23.024,23.024,0.571,0.0,0.0,0.0,0.0,0.0,0.179,0.076,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1613.8,1412.1,1613.8,3.812,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,3093.4,0.0,7031.0,0.0,0.0,6.8,91.76,7031.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,2677.0,7051.0,0.0,3264.0,0.0,103.0,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.617,23.617,22.861,22.861,0.755,0.0,0.0,0.0,0.0,0.0,0.0,0.092,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1502.8,1412.1,1502.8,3.812,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,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,23.469,23.469,22.849,22.849,0.62,0.0,0.0,0.0,0.0,0.0,0.04,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.735,0.0,0.0,9.37,0.499,0.0,0.0,0.0,0.0,1493.1,1412.1,1493.1,3.901,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.017,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,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.346,26.346,26.346,26.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05,0.745,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.398,9.37,0.593,0.0,0.0,0.0,4.0,1617.3,2185.5,2185.5,0.0,7.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.009,-0.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19,1354.7,998.0,11171.5,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.019,27.019,27.019,27.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.621,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.578,9.37,0.593,0.0,0.0,0.0,13.0,1643.7,2271.4,2271.4,0.0,8.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.934,0.0,0.0,-0.037,-0.976,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.458,-1.597,-0.337,0.0,1.191,6.674,1.193,1354.7,998.0,11171.5,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.567,26.567,26.567,26.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.271,0.745,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.398,9.37,0.593,0.0,0.0,0.0,4.0,1626.7,2251.7,2251.7,0.0,7.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.009,-0.932,0.0,0.0,-0.036,-0.965,5.281,0.0,0.0,-0.006,0.0,-0.33,-0.455,-1.589,-0.335,0.0,0.0,6.661,1.19,1354.7,998.0,11171.5,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,30.534,30.534,30.534,30.534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.136,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.578,9.37,0.593,0.0,0.0,0.0,13.0,1790.1,3148.8,3148.8,0.0,8.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.934,0.0,0.0,-0.037,-0.976,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.458,-1.597,-0.337,0.0,1.191,6.674,1.193,1354.7,998.0,11171.5,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,26.864,26.864,26.864,26.864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.466,0.846,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.578,9.37,0.593,0.0,0.0,0.0,13.0,1637.2,2232.7,2232.7,0.0,8.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.934,0.0,0.0,-0.037,-0.976,5.281,0.0,0.0,-0.006,0.0,-0.329,-0.458,-1.597,-0.337,0.0,1.191,6.674,1.193,1354.7,998.0,11171.5,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.963,34.139,25.897,19.073,0.899,0.0,14.167,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,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-ground-loop-ground-to-air-heat-pump.xml,28.271,28.271,28.271,28.271,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.473,0.0,0.0,2.256,2.721,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,0.0,1705.4,2011.5,2011.5,3.814,7.788,0.0,-0.016,2.522,0.0,0.0,0.421,3.979,-2.785,0.0,0.0,-0.013,0.0,-0.385,1.286,0.0,0.703,0.0,0.0,-4.15,-0.816,0.0,-0.011,-0.974,0.0,0.0,-0.031,-0.965,5.418,0.0,0.0,-0.008,0.0,-0.376,-0.461,-1.595,-0.346,0.0,0.0,6.732,1.21,1354.7,998.0,11171.6,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.684,31.684,16.434,16.434,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.861,0.511,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.825,0.0,14.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,0.0,928.0,1598.0,1598.0,3.861,7.816,0.0,-0.018,2.47,0.0,0.0,0.422,3.947,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.05,0.0,0.0,0.0,0.0,-4.279,-0.789,0.0,-0.013,-1.037,0.0,0.0,-0.032,-1.015,5.52,0.0,0.0,-0.01,0.0,-0.409,-0.844,-1.625,0.0,0.0,0.0,7.1,1.236,1354.7,998.0,11171.9,3093.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-laundry-room.xml,29.601,29.601,16.252,16.252,13.349,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.723,0.475,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.039,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,0.0,919.2,1586.4,1586.4,4.011,7.695,0.0,-0.017,2.526,0.0,0.0,0.42,3.983,-2.859,0.0,0.0,-0.014,0.0,-0.392,2.071,0.0,0.0,0.0,0.0,-3.984,-0.834,0.0,-0.012,-0.938,0.0,0.0,-0.026,-0.911,5.343,0.0,0.0,-0.01,0.0,-0.383,-0.783,-1.56,0.0,0.0,0.0,6.286,1.191,1354.7,998.0,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-mechvent-multiple.xml,51.298,51.298,30.438,30.438,20.86,0.0,0.0,0.0,0.0,0.0,0.0,0.063,0.0,0.0,2.762,0.296,9.563,0.0,0.0,2.025,0.0,0.206,3.71,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.697,0.0,0.0,0.0,0.0,12.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057,0.0,4.993,9.37,0.617,0.0,0.0,0.0,0.0,1803.5,2327.9,2327.9,7.873,9.041,0.0,-0.018,2.767,0.0,0.0,0.405,4.178,-4.251,0.0,0.0,-0.022,0.0,-0.278,0.076,0.0,12.318,0.0,0.0,-5.844,-1.189,0.0,-0.014,-0.127,0.0,0.0,0.065,0.167,3.952,0.0,0.0,-0.019,0.0,-0.273,-0.006,-0.709,-4.009,0.0,0.0,4.953,0.836,1354.7,998.0,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.711,32.711,27.055,27.055,5.657,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.527,0.419,9.537,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.708,0.0,0.0,0.0,0.0,3.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.58,0.0,7.083,9.37,0.591,0.0,0.0,0.0,0.0,1584.7,2367.0,2367.0,4.521,7.958,0.0,-0.016,2.661,0.0,0.0,0.422,4.121,-3.257,0.0,0.0,-0.015,0.0,-0.335,1.77,0.0,1.904,0.0,0.0,-4.734,-0.957,0.0,-0.012,-0.672,0.0,0.0,0.001,-0.567,4.946,0.0,0.0,-0.01,0.0,-0.327,-0.485,-1.304,-1.671,0.0,0.0,6.124,1.068,1354.7,998.0,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,31.174,31.174,26.924,26.924,4.25,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,2.463,0.401,9.546,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.122,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,3.935,0.0,6.868,9.37,0.6,0.0,0.0,0.0,0.0,1564.1,2309.3,2309.3,6.341,8.579,0.0,-0.015,2.674,0.0,0.0,0.392,3.998,-3.692,0.0,0.0,-0.016,0.0,-0.243,1.729,0.0,5.289,0.0,0.0,-5.086,-1.045,0.0,-0.011,-0.513,0.0,0.0,-0.002,-0.459,4.51,0.0,0.0,-0.013,0.0,-0.237,-0.413,-1.303,-1.427,0.0,0.0,5.752,0.98,1354.7,998.0,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-battery.xml,27.673,3.225,26.774,2.326,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1649.1,2045.5,2045.5,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,44.391,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-pv.xml,26.796,2.349,25.897,1.449,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,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-recirc-scheduled.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,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-recirc.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,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.68,29.68,16.273,16.273,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,913.0,1595.2,1595.2,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,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.796,26.796,25.897,25.897,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,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-whole-building.xml,218.134,218.134,218.134,218.134,0.0,0.0,0.0,0.0,0.0,0.0,35.137,0.0,0.0,0.0,22.441,0.0,55.569,0.0,0.0,14.641,0.0,1.364,0.0,0.0,0.0,0.0,12.712,0.0,0.0,1.912,2.192,0.0,9.172,0.0,12.693,50.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.082,0.0,50.043,55.316,3.607,0.0,0.0,0.0,1.0,21887.2,16212.0,21887.2,54.369,56.669,0.0,7.761,18.926,0.0,0.0,2.286,27.714,-27.412,0.0,0.0,7.748,0.0,-1.263,57.956,0.0,0.0,0.0,0.0,-50.842,-7.753,0.0,-1.081,-3.254,0.0,0.0,-0.05,-3.755,29.95,0.0,0.0,-3.834,0.0,-1.238,-13.68,-10.172,0.0,0.0,0.0,50.392,6.888,8128.5,5988.0,67057.1,16864.7,0.0,72000.0,72000.0,0.0,6.8,91.76,88106.0,0.0,18018.0,0.0,1722.0,10488.0,0.0,2376.0,0.0,3860.0,51642.0,53050.0,0.0,21576.0,0.0,618.0,1104.0,0.0,630.0,0.0,2244.0,6954.0,19920.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,51.953,51.953,34.308,34.308,17.645,0.0,0.0,0.0,0.0,0.0,0.0,0.23,0.0,0.0,3.289,0.576,9.076,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.456,0.0,9.918,9.106,0.615,0.0,0.0,0.0,0.0,2028.3,3203.9,3203.9,18.259,15.793,0.0,2.426,5.061,0.297,4.364,0.638,7.116,-8.588,0.0,0.0,0.0,5.002,-0.071,7.096,0.0,0.729,0.0,2.429,-7.794,-2.489,0.0,0.015,-0.629,-0.025,1.636,-0.014,-1.001,7.908,0.0,0.0,0.0,-3.947,-0.066,-1.651,-3.207,-0.159,0.0,1.338,7.788,2.018,1354.7,998.0,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,28081.0,7456.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1879.0,1447.0,5942.0,17656.0,4937.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1529.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,98.436,98.436,36.921,36.921,61.515,0.0,0.0,0.0,0.0,0.0,0.0,0.802,0.0,0.0,4.989,0.937,9.084,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.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,57.361,0.0,15.982,9.106,0.623,0.0,0.0,0.0,0.0,2100.0,4529.8,4529.8,36.753,28.623,49.493,0.0,2.937,0.289,3.687,0.667,4.711,-5.326,0.0,0.0,0.0,3.418,-0.85,7.541,0.0,0.772,0.0,0.0,-8.484,-2.669,8.563,0.0,-0.155,0.004,1.537,0.121,0.039,5.084,0.0,0.0,0.0,-4.273,-0.813,-0.842,-1.316,-0.093,0.0,0.0,7.077,1.838,1354.7,998.0,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43723.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1879.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,43.277,43.277,29.579,29.579,13.697,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.0,0.0,2.703,0.45,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.702,0.0,7.743,9.221,0.615,0.0,0.0,0.0,0.0,1759.6,2713.5,2713.5,13.654,10.87,0.0,2.334,2.365,0.292,4.232,0.624,3.565,-4.312,0.0,0.0,0.0,4.669,-0.047,3.042,0.0,0.726,0.0,3.461,-6.592,-1.805,0.0,0.032,-0.275,-0.026,1.588,-0.018,-0.583,3.962,0.0,0.0,0.0,-4.04,-0.045,-0.752,-1.557,-0.163,0.0,1.614,6.601,1.462,1354.7,998.0,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21791.0,8161.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3064.0,14741.0,5838.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-sfa-unit.xml,43.277,43.277,29.579,29.579,13.697,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.0,0.0,2.703,0.45,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.702,0.0,7.743,9.221,0.615,0.0,0.0,0.0,0.0,1759.6,2713.5,2713.5,13.654,10.87,0.0,2.334,2.365,0.292,4.232,0.624,3.565,-4.312,0.0,0.0,0.0,4.669,-0.047,3.042,0.0,0.726,0.0,3.461,-6.592,-1.805,0.0,0.032,-0.275,-0.026,1.588,-0.018,-0.583,3.962,0.0,0.0,0.0,-4.04,-0.045,-0.752,-1.557,-0.163,0.0,1.614,6.601,1.462,1354.7,998.0,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21792.0,8161.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3065.0,14741.0,5838.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-dhw-combi-tankless-outside.xml,52.189,52.189,21.369,21.369,30.82,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.356,0.0,0.0,9.173,0.0,0.0,0.0,0.0,0.0,1295.6,1163.0,1295.6,16.826,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.0,776.6,8411.2,1930.1,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,53.386,53.386,21.376,21.376,32.011,0.0,0.0,0.0,0.0,0.0,0.0,0.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.722,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.411,0.0,0.0,9.173,0.0,0.0,0.0,0.0,0.0,1297.1,1163.0,1297.1,17.407,0.0,0.0,3.736,3.635,0.512,7.475,0.63,10.086,-12.693,0.0,0.0,0.0,8.135,-0.071,5.887,0.0,0.727,0.0,0.0,-7.472,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.0,776.6,8411.2,1930.1,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,31.692,31.692,31.692,31.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.183,0.717,6.825,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.74,9.07,0.666,2.821,0.0,0.0,0.0,1971.5,2952.8,2952.8,0.0,19.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.066,-0.443,-0.048,2.736,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.158,-3.693,-0.162,0.0,3.638,8.501,2.042,1354.7,998.0,11183.3,2566.2,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,38.269,38.269,38.269,38.269,0.0,0.0,0.0,0.0,0.0,0.0,5.898,0.602,0.0,0.0,3.053,0.993,6.586,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.261,0.0,13.631,9.069,0.614,2.872,0.0,0.0,0.0,3427.2,2543.0,3427.2,22.716,16.873,0.0,3.58,3.636,0.512,7.501,0.629,10.08,-12.691,0.0,0.0,0.0,8.283,-0.065,4.804,0.0,0.727,0.0,3.908,-7.483,-2.489,0.0,0.01,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.062,-1.136,-3.815,-0.161,0.0,2.148,8.391,2.018,1354.7,998.0,11185.8,2566.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.551,57.551,29.48,29.48,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.463,0.0,0.0,4.356,0.827,2.704,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.289,0.0,14.446,9.081,1.811,2.925,0.0,0.0,0.0,1813.8,3298.9,3298.9,23.813,19.758,0.0,3.51,3.632,0.511,7.485,0.627,10.06,-12.745,0.0,0.0,0.0,8.31,-0.057,4.799,0.0,0.726,0.0,5.908,-4.327,-2.498,0.0,0.007,-0.394,-0.042,2.895,-0.009,-1.193,11.668,0.0,0.0,0.0,-6.008,-0.053,-1.086,-3.568,-0.152,0.0,3.163,7.478,2.01,1354.6,997.9,11146.0,2557.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.266,33.266,33.266,33.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.347,1.144,6.811,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.127,9.076,0.0,2.849,0.0,0.0,0.0,1833.3,3409.8,3409.8,0.0,19.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.042,-0.437,-0.047,2.752,-0.024,-1.348,11.85,0.0,0.0,0.0,-6.847,-0.067,-1.152,-3.654,-0.161,0.0,3.183,8.23,2.042,1354.7,998.0,11133.5,2554.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,30.838,30.838,30.838,30.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.293,6.808,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.498,9.069,0.666,2.844,0.0,0.0,0.0,1972.5,2743.9,2743.9,0.0,19.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.159,-3.699,-0.162,0.0,4.443,8.507,2.042,1354.7,998.0,11185.8,2566.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.299,33.299,33.299,33.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.398,1.161,6.772,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.344,9.069,0.666,2.899,0.0,0.0,0.0,1972.5,3421.8,3421.8,0.0,19.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.049,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.159,-3.696,-0.162,0.0,3.219,8.523,2.042,1354.7,998.0,11185.3,2566.7,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.948,56.948,33.322,33.322,23.626,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,6.631,0.615,0.0,0.0,0.0,0.0,2001.0,3541.1,3541.1,23.506,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,0.0,1296.3,1163.4,1296.3,17.02,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.3,855.1,9363.6,2148.7,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,60.222,60.222,21.41,21.41,38.812,0.0,0.0,0.0,0.0,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.408,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,0.0,1296.3,1163.3,1296.3,17.117,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.7,771.0,8867.4,2034.8,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.51,56.51,21.369,21.369,35.141,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.356,0.0,0.0,9.101,3.299,0.0,0.0,0.0,0.0,1295.6,1163.0,1295.6,16.826,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.2,768.7,8830.9,2026.4,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,55.344,55.344,21.371,21.371,33.974,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.153,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.068,0.0,13.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.973,0.0,0.0,9.1,2.704,0.0,0.0,0.0,0.0,1296.1,1163.4,1296.1,17.043,0.0,0.0,3.739,3.639,0.512,7.49,0.63,10.097,-12.676,0.0,0.0,0.0,8.128,-0.072,5.894,0.0,0.728,0.0,0.0,-8.988,-2.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1060.2,765.1,8818.5,2023.6,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,47.29,47.29,21.374,21.374,25.916,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.989,0.0,0.0,9.076,0.787,0.0,5.9,0.0,0.0,1296.8,1163.1,1296.8,17.31,0.0,0.0,3.737,3.636,0.512,7.479,0.63,10.092,-12.691,0.0,0.0,0.0,8.134,-0.073,5.89,0.0,0.727,0.0,0.0,-7.917,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.1,285.6,3158.3,724.7,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,55.102,55.102,21.372,21.372,33.73,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.327,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,0.0,1296.3,1163.3,1296.3,17.117,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1069.7,771.0,8867.4,2034.8,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,59.112,59.112,35.269,35.269,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.226,0.796,8.716,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.329,0.0,13.866,9.071,0.296,0.0,0.0,0.0,0.0,2042.3,3540.8,3540.8,23.561,19.125,0.0,3.538,3.637,0.512,7.504,0.629,10.084,-12.691,0.0,0.0,0.0,8.289,-0.066,4.805,0.0,0.728,0.0,5.141,-7.626,-2.489,0.0,-0.028,-0.438,-0.048,2.756,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.23,-0.062,-1.135,-3.76,-0.161,0.0,3.083,7.636,2.018,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,65.125,65.125,26.682,26.682,38.443,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.325,0.819,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.243,0.0,14.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.704,0.0,14.278,9.071,2.729,0.0,0.0,0.0,0.0,1392.0,3278.4,3278.4,24.059,19.593,0.0,3.535,3.637,0.512,7.507,0.63,10.086,-12.69,0.0,0.0,0.0,8.293,-0.066,5.889,0.0,0.727,0.0,5.226,-8.434,-2.488,0.0,-0.034,-0.442,-0.049,2.748,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.062,-1.41,-3.789,-0.162,0.0,3.164,8.313,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,57.464,57.464,29.362,29.362,28.102,0.0,0.0,0.0,0.0,0.0,0.0,0.464,0.0,0.0,3.807,0.697,3.266,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.063,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.318,0.0,12.177,9.122,1.311,0.0,0.0,0.0,0.0,1807.8,3207.2,3207.2,25.553,19.0,0.0,3.507,3.631,0.511,7.486,0.626,10.051,-12.749,0.0,0.0,0.0,8.316,-0.051,4.796,0.0,0.726,0.0,5.908,-4.293,-2.497,0.0,0.032,-0.387,-0.041,2.918,-0.008,-1.179,11.664,0.0,0.0,0.0,-5.97,-0.047,-1.081,-3.398,-0.15,0.0,2.773,5.336,2.01,1354.7,998.0,10785.9,2475.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.898,54.898,21.372,21.372,33.526,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.15,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,12.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.387,0.0,0.0,9.097,1.921,0.0,0.0,0.0,0.0,1296.4,1163.3,1296.4,17.165,0.0,0.0,3.74,3.639,0.512,7.487,0.63,10.092,-12.69,0.0,0.0,0.0,8.133,-0.069,5.892,0.0,0.728,0.0,0.0,-8.551,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.4,776.5,8919.9,2046.8,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.999,58.999,35.373,35.373,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,8.793,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,8.834,0.615,0.0,0.0,0.0,0.0,2050.8,3658.2,3658.2,23.507,19.177,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.969,47.969,23.301,23.301,24.669,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,1.928,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.743,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.564,0.0,0.0,9.062,2.83,0.0,5.89,0.0,0.0,2066.1,1773.3,2066.1,17.068,0.0,0.0,3.737,3.637,0.512,7.485,0.63,10.096,-12.685,0.0,0.0,0.0,8.137,-0.073,5.892,0.0,0.728,0.0,0.0,-8.376,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.0,347.7,3918.9,899.3,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,48.393,48.393,24.285,24.285,24.108,0.0,0.0,0.0,0.0,0.0,0.0,0.398,0.0,0.0,4.166,0.782,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.0,0.0,0.0,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,13.621,0.0,0.0,0.0,0.0,0.0,0.0,1289.3,3109.6,3109.6,23.63,18.946,0.0,3.535,3.635,0.512,7.497,0.629,10.078,-12.696,0.0,0.0,0.0,8.283,-0.065,5.402,0.0,0.0,0.0,5.192,-7.267,-2.489,0.0,-0.02,-0.433,-0.047,2.77,-0.018,-1.306,11.717,0.0,0.0,0.0,-6.206,-0.061,-1.262,-3.724,0.0,0.0,3.036,7.3,2.018,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand-scheduled.xml,59.171,59.171,35.545,35.545,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.013,0.615,0.0,0.0,0.0,0.0,2043.7,3547.5,3547.5,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,59.171,59.171,35.545,35.545,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.013,0.615,0.0,0.0,0.0,0.0,2043.7,3547.5,3547.5,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.751,58.751,35.125,35.125,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,8.528,0.017,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.013,0.615,0.0,0.0,0.0,0.0,2028.5,3532.9,3532.9,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.9,73.9,50.274,50.274,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.105,0.615,0.0,0.0,0.0,0.0,2976.3,4170.7,4170.7,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,69.049,69.049,45.424,45.424,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,18.594,0.249,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.105,0.615,0.0,0.0,0.0,0.0,2674.0,4000.8,4000.8,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.9,73.9,50.274,50.274,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.105,0.615,0.0,0.0,0.0,0.0,2976.3,4170.7,4170.7,23.507,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.5,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,53.408,53.408,29.783,29.783,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.254,0.803,2.875,0.0,0.324,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.987,9.094,0.629,0.0,6.634,0.0,0.0,2007.5,3266.7,3266.7,23.507,19.19,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.782,-0.162,0.0,3.103,7.796,2.018,1354.6,997.9,10983.6,2520.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.969,51.969,28.353,28.353,23.616,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.266,0.805,1.444,0.0,0.311,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.117,0.0,14.038,9.208,0.696,0.0,8.354,0.0,0.0,2011.8,3237.9,3237.9,23.509,19.22,0.0,3.54,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.805,0.0,0.728,0.0,5.097,-7.804,-2.488,0.0,-0.032,-0.442,-0.049,2.746,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.139,-3.789,-0.162,0.0,3.112,7.858,2.019,1354.3,997.6,10193.3,2339.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,53.482,53.482,29.856,29.856,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.259,0.804,2.938,0.0,0.327,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,14.01,9.131,0.65,0.0,6.625,0.0,0.0,2046.8,3268.8,3268.8,23.508,19.21,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.747,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.783,-0.162,0.0,3.107,7.817,2.018,1354.7,997.9,10725.6,2461.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.598,53.598,29.7,29.7,23.898,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.22,0.794,3.155,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.38,0.0,13.84,9.071,0.215,0.0,5.896,0.0,0.0,1698.2,3483.8,3483.8,23.574,19.111,0.0,3.537,3.637,0.512,7.504,0.629,10.083,-12.691,0.0,0.0,0.0,8.288,-0.066,4.805,0.0,0.727,0.0,5.151,-7.582,-2.489,0.0,-0.027,-0.438,-0.048,2.758,-0.019,-1.32,11.723,0.0,0.0,0.0,-6.228,-0.062,-1.134,-3.755,-0.161,0.0,3.079,7.599,2.018,474.2,349.3,3910.1,897.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.691,51.691,28.437,28.437,23.255,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.365,0.829,1.413,0.0,0.306,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.778,0.0,14.465,9.186,0.684,0.0,8.35,0.0,0.0,2015.0,3267.6,3267.6,23.54,19.494,0.0,3.545,3.64,0.512,7.511,0.63,10.09,-12.69,0.0,0.0,0.0,8.294,-0.066,4.809,0.0,0.728,0.0,5.028,-8.112,-2.488,0.0,-0.04,-0.447,-0.049,2.727,-0.022,-1.353,11.724,0.0,0.0,0.0,-6.272,-0.062,-1.146,-3.851,-0.163,0.0,3.186,8.373,2.019,1354.2,997.5,10326.4,2369.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.682,51.682,28.065,28.065,23.617,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.265,0.805,1.467,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.118,0.0,14.036,9.2,0.691,0.0,8.316,0.0,0.0,2022.6,3237.7,3237.7,23.509,19.218,0.0,3.54,3.637,0.512,7.506,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.805,0.0,0.728,0.0,5.097,-7.803,-2.488,0.0,-0.032,-0.441,-0.049,2.746,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.139,-3.788,-0.162,0.0,3.112,7.855,2.019,1354.4,997.7,10243.7,2350.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.856,65.856,26.734,26.734,23.843,0.0,0.0,0.0,0.0,15.28,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,59.203,59.203,35.584,35.584,23.619,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.252,0.802,9.003,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.119,0.0,13.977,9.045,0.624,0.0,0.0,0.0,0.0,2497.8,3569.4,3569.4,23.484,19.171,0.0,3.539,3.637,0.512,7.506,0.629,10.085,-12.69,0.0,0.0,0.0,8.288,-0.066,4.806,0.0,0.728,0.0,5.097,-7.802,-2.488,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.242,-0.062,-1.137,-3.782,-0.162,0.0,3.101,7.789,2.019,1354.7,998.0,11206.9,2571.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,59.245,59.245,35.672,35.672,23.573,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.257,0.803,9.086,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.076,0.0,13.999,9.071,0.692,0.0,0.0,0.0,0.0,2033.9,3523.4,3523.4,23.495,19.189,0.0,3.54,3.637,0.512,7.507,0.629,10.083,-12.69,0.0,0.0,0.0,8.288,-0.065,4.806,0.0,0.728,0.0,5.089,-7.838,-2.488,0.0,-0.032,-0.441,-0.049,2.747,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.061,-1.139,-3.786,-0.162,0.0,3.105,7.821,2.019,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.585,67.585,26.528,26.528,41.057,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,17.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.071,5.067,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.53,65.53,26.697,26.697,38.833,0.0,0.0,0.0,0.0,0.0,0.0,0.398,0.0,0.0,4.339,0.822,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.122,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.59,0.0,14.337,9.071,2.982,0.0,0.0,0.0,0.0,1391.8,3281.5,3281.5,24.024,19.621,0.0,3.537,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,5.89,0.0,0.727,0.0,5.203,-8.532,-2.488,0.0,-0.036,-0.443,-0.049,2.744,-0.02,-1.335,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.411,-3.8,-0.162,0.0,3.174,8.394,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.53,65.53,26.697,26.697,38.833,0.0,0.0,0.0,0.0,0.0,0.0,0.398,0.0,0.0,4.339,0.822,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.122,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.59,0.0,14.337,9.071,2.982,0.0,0.0,0.0,0.0,1391.8,3281.5,3281.5,24.024,19.621,0.0,3.537,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,5.89,0.0,0.727,0.0,5.203,-8.532,-2.488,0.0,-0.036,-0.443,-0.049,2.744,-0.02,-1.335,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.411,-3.8,-0.162,0.0,3.174,8.394,2.019,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.856,65.856,26.734,26.734,39.122,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,57.409,57.409,28.513,28.513,28.895,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,3.74,0.682,2.488,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.061,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.0,11.898,9.212,1.419,0.0,0.0,0.0,0.0,1782.8,3205.4,3205.4,27.224,18.922,0.0,3.492,3.629,0.511,7.489,0.627,10.065,-12.729,0.0,0.0,0.0,8.322,-0.059,4.799,0.0,0.726,0.0,6.064,-3.726,-2.497,0.0,0.044,-0.372,-0.039,2.957,-0.003,-1.112,11.684,0.0,0.0,0.0,-5.895,-0.056,-1.055,-3.265,-0.15,0.0,2.69,4.958,2.01,1354.7,998.0,9993.4,2293.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,57.271,57.271,28.33,28.33,28.941,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,3.721,0.677,2.328,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.091,0.0,11.814,9.127,1.31,0.0,0.0,0.0,0.0,1775.1,3563.6,3563.6,25.73,19.109,0.0,3.504,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.799,0.0,0.726,0.0,6.059,-3.694,-2.5,0.0,0.049,-0.373,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.064,-3.336,-0.148,0.0,2.694,4.958,2.008,1354.7,998.0,10745.6,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,57.292,57.292,33.248,33.248,24.044,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,6.72,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.517,0.0,13.769,9.093,2.525,0.0,0.0,0.0,0.0,2973.7,3225.2,3225.2,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11025.2,2529.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,57.271,57.271,28.33,28.33,28.941,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,3.721,0.677,2.328,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.091,0.0,11.814,9.127,1.31,0.0,0.0,0.0,0.0,1775.1,3563.6,3563.6,25.73,19.109,0.0,3.504,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,4.799,0.0,0.726,0.0,6.059,-3.694,-2.5,0.0,0.049,-0.373,-0.039,2.963,-0.004,-1.134,11.654,0.0,0.0,0.0,-5.899,-0.04,-1.064,-3.336,-0.148,0.0,2.694,4.958,2.008,1354.7,998.0,10745.6,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,53.041,53.041,27.622,27.622,25.419,0.0,0.0,0.0,0.0,0.0,0.0,0.419,0.0,0.0,4.063,0.757,1.248,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.805,0.0,13.21,9.103,0.603,0.0,5.917,0.0,0.0,1808.6,3233.2,3233.2,25.635,19.149,0.0,3.527,3.634,0.511,7.495,0.628,10.069,-12.712,0.0,0.0,0.0,8.296,-0.06,4.801,0.0,0.726,0.0,5.429,-6.393,-2.491,0.0,-0.006,-0.42,-0.046,2.811,-0.015,-1.272,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.115,-3.623,-0.158,0.0,2.959,6.773,2.017,474.2,349.3,3821.8,877.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.508,52.508,28.225,28.225,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.398,0.837,1.122,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.74,0.0,14.614,9.017,1.97,0.0,8.046,0.0,0.0,1821.5,3283.2,3283.2,23.943,19.613,0.0,3.535,3.637,0.512,7.513,0.629,10.079,-12.682,0.0,0.0,0.0,8.297,-0.061,4.805,0.0,0.727,0.0,5.218,-7.326,-2.487,0.0,-0.04,-0.444,-0.049,2.744,-0.022,-1.346,11.731,0.0,0.0,0.0,-6.243,-0.057,-1.143,-3.832,-0.163,0.0,3.206,8.456,2.02,1354.3,997.6,11682.8,2680.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,57.501,57.501,29.493,29.493,28.008,0.0,0.0,0.0,0.0,0.0,0.0,0.462,0.0,0.0,3.799,0.696,3.407,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.228,0.0,12.154,9.116,1.721,0.0,0.0,0.0,0.0,1820.6,3489.3,3489.3,23.847,19.302,0.0,3.509,3.631,0.511,7.488,0.626,10.053,-12.751,0.0,0.0,0.0,8.323,-0.053,4.797,0.0,0.726,0.0,5.895,-4.387,-2.498,0.0,0.031,-0.389,-0.041,2.911,-0.009,-1.184,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.082,-3.436,-0.15,0.0,2.748,5.407,2.009,1354.7,998.0,10842.6,2488.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.476,58.476,35.101,35.101,23.376,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.269,0.805,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.889,0.0,13.947,9.117,0.021,0.0,0.0,0.0,0.0,4519.6,5543.3,5543.3,30.815,19.665,0.0,3.548,3.643,0.513,7.527,0.631,10.1,-12.683,0.0,0.0,0.0,8.319,-0.061,5.264,0.0,0.776,0.0,5.042,-8.562,-2.504,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.331,11.73,0.0,0.0,0.0,-6.243,-0.057,-1.241,-3.785,-0.183,0.0,3.099,7.938,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,59.064,59.064,35.034,35.034,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.206,0.791,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.505,0.0,13.776,9.121,0.021,0.0,0.0,0.0,0.0,1904.8,3571.8,3571.8,23.606,19.08,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.804,0.0,0.727,0.0,5.176,-7.476,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.132,-3.741,-0.161,0.0,3.069,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.856,65.856,26.734,26.734,23.843,15.28,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.856,65.856,26.734,26.734,23.843,0.0,0.0,15.28,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.738,61.738,26.528,26.528,35.21,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.052,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11342.7,2602.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.841,59.841,35.797,35.797,24.044,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1916.6,3618.2,3618.2,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.736,59.736,35.692,35.692,24.044,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,9.164,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1910.3,3613.8,3613.8,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.841,59.841,35.797,35.797,24.044,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1916.6,3618.2,3618.2,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,60.229,60.229,26.528,26.528,33.701,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,9.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,54.489,54.489,26.528,26.528,27.96,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,3.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.071,0.0,0.0,5.896,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,474.2,349.3,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,52.176,52.176,26.953,26.953,25.223,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.305,0.815,0.0,0.0,0.304,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.672,0.0,1.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.169,0.0,14.206,9.262,0.0,0.0,8.001,0.0,0.0,1389.7,3252.1,3252.1,23.641,19.352,0.0,3.54,3.638,0.512,7.508,0.63,10.086,-12.69,0.0,0.0,0.0,8.291,-0.066,4.807,0.0,0.728,0.0,5.108,-7.776,-2.488,0.0,-0.035,-0.443,-0.049,2.742,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.251,-0.062,-1.141,-3.807,-0.162,0.0,3.143,8.038,2.019,1344.7,989.2,9817.2,2252.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.762,61.762,26.528,26.528,35.234,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.762,61.762,26.528,26.528,24.044,0.0,11.19,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.071,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.539,66.539,40.586,40.586,25.953,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.0,6.232,1.246,8.97,0.0,0.0,5.266,0.142,0.373,0.0,0.0,0.0,0.0,2.086,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,10.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.202,0.0,21.662,9.049,0.611,0.0,0.0,0.0,0.0,2203.4,4705.6,4705.6,31.122,28.31,0.0,3.854,7.588,1.092,5.856,0.687,20.447,-24.934,0.0,0.0,0.865,6.679,-0.176,8.989,0.0,0.761,0.0,3.45,-8.584,-2.924,0.0,-0.073,-0.998,-0.099,1.89,-0.019,-1.438,23.4,0.0,0.0,-0.133,-4.728,-0.167,-1.88,-7.197,-0.157,0.0,2.816,8.467,2.342,1354.7,998.0,11171.6,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43660.0,7645.0,15016.0,0.0,575.0,9018.0,0.0,315.0,1768.0,2171.0,7152.0,25996.0,4924.0,14074.0,0.0,207.0,312.0,0.0,-101.0,0.0,2293.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.712,74.712,43.895,43.895,30.817,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,6.123,1.221,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.741,0.0,21.195,8.985,0.613,0.0,0.0,0.0,0.0,2424.2,4882.7,4882.7,34.41,28.517,0.0,3.762,7.867,1.07,7.889,0.666,20.489,-25.194,0.0,0.0,0.0,9.001,-0.146,11.164,0.0,0.745,0.0,4.042,-9.647,-3.528,0.0,-0.046,-0.99,-0.093,2.719,-0.015,-1.934,23.371,0.0,0.0,0.0,-6.362,-0.136,-2.403,-7.513,-0.158,0.0,2.742,9.522,2.841,1354.7,998.0,11171.5,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,46224.0,7675.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,8913.0,26570.0,4931.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.495,55.495,30.351,30.351,25.144,0.0,0.0,0.0,0.0,0.0,0.0,0.415,0.0,0.0,4.012,0.745,5.472,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.645,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.548,0.0,13.085,5.264,0.616,0.0,0.0,0.0,0.0,1665.6,3364.7,3364.7,23.878,18.541,0.0,3.522,3.629,0.511,7.48,0.628,10.065,-12.698,0.0,0.0,0.0,8.266,-0.064,4.802,0.0,0.725,0.0,5.396,-6.548,-2.49,0.0,-0.002,-0.418,-0.045,2.818,-0.014,-1.254,11.715,0.0,0.0,0.0,-6.131,-0.06,-1.115,-3.609,-0.158,0.0,2.951,6.535,2.017,939.6,637.2,6162.0,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19204.0,5923.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.392,57.392,33.01,33.01,24.382,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.131,0.773,7.281,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.261,0.309,1.281,1.396,0.0,1.88,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.834,0.0,13.528,7.209,0.615,0.0,0.0,0.0,0.0,1982.1,3398.8,3398.8,23.691,18.859,0.0,3.531,3.633,0.511,7.492,0.629,10.08,-12.696,0.0,0.0,0.0,8.279,-0.068,4.805,0.0,0.727,0.0,5.247,-7.177,-2.49,0.0,-0.016,-0.429,-0.047,2.782,-0.016,-1.287,11.717,0.0,0.0,0.0,-6.184,-0.064,-1.125,-3.694,-0.16,0.0,3.027,7.155,2.017,1147.2,817.6,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19440.0,5928.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,61.02,61.02,38.144,38.144,22.876,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.374,0.831,10.708,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.376,0.421,1.744,1.662,0.0,2.351,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.423,0.0,14.427,10.893,0.614,0.0,0.0,0.0,0.0,2083.8,3705.3,3705.3,23.323,19.492,0.0,3.55,3.643,0.513,7.52,0.63,10.096,-12.689,0.0,0.0,0.0,8.305,-0.066,4.809,0.0,0.729,0.0,4.951,-8.422,-2.487,0.0,-0.044,-0.451,-0.05,2.715,-0.023,-1.366,11.724,0.0,0.0,0.0,-6.292,-0.062,-1.149,-3.864,-0.163,0.0,3.177,8.409,2.02,1562.3,1178.4,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19938.0,5966.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.806,62.806,40.674,40.674,22.133,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.499,0.861,12.379,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.434,0.477,1.976,1.795,0.0,2.586,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.727,0.0,14.886,12.689,0.614,0.0,0.0,0.0,0.0,2407.6,4057.2,4057.2,23.138,19.807,0.0,3.559,3.647,0.513,7.534,0.632,10.112,-12.683,0.0,0.0,0.0,8.322,-0.069,4.813,0.0,0.73,0.0,4.804,-9.048,-2.487,0.0,-0.059,-0.462,-0.052,2.681,-0.025,-1.397,11.73,0.0,0.0,0.0,-6.342,-0.065,-1.158,-3.947,-0.165,0.0,3.253,9.032,2.02,1769.9,1358.7,16181.1,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,20182.0,5981.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,75.294,75.294,36.114,36.114,39.179,0.0,0.0,0.0,0.0,0.0,0.0,0.646,0.0,0.0,4.47,0.856,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,36.686,0.0,14.875,9.071,0.619,0.0,0.0,0.0,0.0,2065.2,3771.7,3771.7,29.769,19.848,0.0,17.252,3.594,0.505,7.238,0.622,9.979,-12.816,0.0,0.0,0.0,7.721,-0.088,4.856,0.0,0.734,0.0,7.199,-7.962,-2.534,0.0,0.22,-0.305,-0.029,2.933,0.014,-0.909,11.597,0.0,0.0,0.0,-6.046,-0.078,-0.982,-3.533,-0.137,0.0,2.729,7.611,1.973,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44956.0,8864.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,14165.0,4597.0,32487.0,6076.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,14963.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.952,67.952,29.038,29.038,38.914,0.0,0.0,0.0,0.0,0.0,0.0,0.642,0.0,0.0,3.581,0.635,9.213,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.051,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.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,36.448,0.0,10.945,9.178,0.621,0.0,0.0,0.0,0.0,1721.9,3494.2,3494.2,29.533,21.519,0.0,3.47,3.646,0.0,0.0,0.672,9.515,-13.016,0.0,0.0,29.07,0.0,-0.224,2.055,0.0,0.786,0.0,8.084,-6.522,-1.567,0.0,0.424,-0.063,0.0,0.0,0.099,0.961,10.952,0.0,0.0,-7.905,0.0,-0.219,-0.251,-1.997,-0.084,0.0,2.664,5.46,1.079,1354.7,998.0,11171.5,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,20905.0,5991.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.145,59.145,33.962,33.962,25.183,0.0,0.0,0.0,0.0,0.0,0.0,0.415,0.0,0.0,3.0,0.515,9.116,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.708,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.577,0.0,8.851,9.071,0.725,0.0,0.0,0.0,0.0,2022.7,2814.9,2814.9,18.474,11.96,0.0,3.53,3.791,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.369,0.0,0.0,0.0,3.96,-5.766,-2.495,0.0,0.118,-0.265,-0.033,2.467,0.004,-1.083,8.261,0.0,0.0,0.0,-5.594,-0.043,-1.194,-2.577,0.0,0.0,1.289,5.629,2.012,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28783.0,6753.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4597.0,12553.0,414.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32704.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4595.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.889,66.889,35.619,35.619,31.27,0.0,0.0,0.0,0.0,0.0,0.0,0.516,0.0,0.0,4.176,0.781,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.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,29.285,0.0,13.582,9.071,0.617,0.0,0.0,0.0,0.0,2060.1,3657.3,3657.3,28.532,20.194,0.0,3.491,3.64,0.512,7.49,0.631,10.103,-12.714,0.0,0.0,0.0,8.298,-0.068,10.58,0.0,0.726,0.0,6.61,-7.832,-2.496,0.0,0.015,-0.395,-0.042,2.869,-0.007,-1.174,11.699,0.0,0.0,0.0,-6.049,-0.064,-2.353,-3.492,-0.153,0.0,3.086,7.745,2.011,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37768.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9543.0,20371.0,5964.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.635,60.635,35.596,35.596,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.235,0.797,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,9.071,0.615,0.0,0.0,0.0,0.0,2042.5,3909.2,3909.2,24.243,19.404,0.0,3.528,3.635,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.291,-0.067,5.886,0.0,0.727,0.0,5.378,-7.802,-2.489,0.0,-0.024,-0.434,-0.048,2.774,-0.018,-1.303,11.723,0.0,0.0,0.0,-6.2,-0.063,-1.397,-3.715,-0.16,0.0,3.099,7.778,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.889,66.889,35.619,35.619,31.27,0.0,0.0,0.0,0.0,0.0,0.0,0.516,0.0,0.0,4.176,0.781,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.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,29.285,0.0,13.582,9.071,0.617,0.0,0.0,0.0,0.0,2060.1,3657.3,3657.3,28.532,20.194,0.0,3.491,3.64,0.512,7.49,0.631,10.103,-12.714,0.0,0.0,0.0,8.298,-0.068,10.58,0.0,0.726,0.0,6.61,-7.832,-2.496,0.0,0.015,-0.395,-0.042,2.869,-0.007,-1.174,11.699,0.0,0.0,0.0,-6.049,-0.064,-2.353,-3.492,-0.153,0.0,3.086,7.745,2.011,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37767.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9542.0,20371.0,5964.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.889,66.889,35.619,35.619,31.27,0.0,0.0,0.0,0.0,0.0,0.0,0.516,0.0,0.0,4.176,0.781,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.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,29.285,0.0,13.582,9.071,0.617,0.0,0.0,0.0,0.0,2060.1,3657.3,3657.3,28.532,20.194,0.0,3.491,3.64,0.512,7.49,0.631,10.103,-12.714,0.0,0.0,0.0,8.298,-0.068,10.58,0.0,0.726,0.0,6.61,-7.832,-2.496,0.0,0.015,-0.395,-0.042,2.869,-0.007,-1.174,11.699,0.0,0.0,0.0,-6.049,-0.064,-2.353,-3.492,-0.153,0.0,3.086,7.745,2.011,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37767.0,8724.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9542.0,20371.0,5964.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.445,59.445,35.571,35.571,23.875,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.229,0.797,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.359,0.0,13.881,9.071,0.615,0.0,0.0,0.0,0.0,2052.7,3880.6,3880.6,23.522,19.14,0.0,3.535,3.634,0.511,7.498,0.863,10.076,-12.691,0.0,0.0,0.0,8.278,-0.066,4.804,0.0,0.727,0.0,5.144,-7.799,-2.489,0.0,-0.027,-0.438,-0.048,2.755,-0.149,-1.32,11.723,0.0,0.0,0.0,-6.227,-0.062,-1.135,-3.763,-0.161,0.0,3.08,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.356,59.356,35.431,35.431,23.925,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.115,0.77,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.406,0.0,13.413,9.071,0.615,0.0,0.0,0.0,0.0,2039.8,3485.2,3485.2,23.46,18.623,0.0,3.532,3.633,0.511,7.487,0.629,9.995,-12.285,0.0,0.0,0.0,8.257,-0.067,4.805,0.0,0.727,0.0,5.149,-7.807,-2.49,0.0,-0.011,-0.427,-0.046,2.78,-0.016,-1.336,11.091,0.0,0.0,0.0,-6.176,-0.063,-1.128,-3.718,-0.16,0.0,2.982,7.773,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,59.148,59.148,35.437,35.437,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.121,0.773,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.205,0.0,13.44,9.071,0.615,0.0,0.0,0.0,0.0,2051.9,3766.3,3766.3,23.331,18.137,0.0,3.651,3.635,0.512,7.5,0.629,10.079,-12.691,0.0,0.0,0.0,8.281,-0.064,4.805,0.0,0.727,0.0,5.101,-7.799,-2.489,0.0,-0.281,-0.436,-0.048,2.76,-0.019,-1.315,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.135,-3.758,-0.161,0.0,2.762,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.683,61.683,36.669,36.669,25.013,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,5.102,1.0,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.425,0.0,17.48,9.071,0.614,0.0,0.0,0.0,1.0,2045.2,3931.8,3931.8,25.228,21.925,0.0,3.534,3.651,0.514,7.558,0.633,10.115,-12.626,2.713,-2.174,0.0,8.436,-0.07,4.813,0.0,0.73,0.0,5.405,-7.78,-2.485,0.0,-0.122,-0.495,-0.056,2.637,-0.033,-1.464,11.705,-0.052,3.749,0.0,-6.527,-0.065,-1.157,-3.967,-0.167,0.0,3.886,7.805,2.023,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35051.0,8659.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24321.0,6007.0,7037.0,4572.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,60.356,60.356,35.641,35.641,24.715,0.0,0.0,0.0,0.0,0.0,0.0,0.408,0.0,0.0,4.276,0.807,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.146,0.0,14.055,9.071,0.615,0.0,0.0,0.0,0.0,2055.4,3912.4,3912.4,24.124,19.439,0.0,3.522,3.633,0.511,7.501,0.629,10.073,-12.685,1.146,-0.321,0.0,8.292,-0.065,4.806,0.0,0.728,0.0,5.312,-7.8,-2.489,0.0,-0.03,-0.435,-0.048,2.767,-0.018,-1.311,11.717,-0.492,0.431,0.0,-6.219,-0.061,-1.13,-3.734,-0.161,0.0,3.132,7.781,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33349.0,8625.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,20437.0,5964.0,7037.0,732.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.691,59.691,36.33,36.33,23.361,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.848,0.941,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.877,0.0,16.448,9.071,0.614,0.0,0.0,0.0,0.0,2054.6,4104.7,4104.7,24.093,21.335,0.0,3.549,3.654,0.514,7.556,0.633,10.123,-12.643,0.856,-1.409,0.0,8.402,-0.068,4.813,0.0,0.729,0.0,5.063,-7.781,-2.485,0.0,-0.104,-0.489,-0.055,2.642,-0.032,-1.457,11.715,0.261,2.537,0.0,-6.485,-0.064,-1.163,-3.984,-0.167,0.0,3.633,7.804,2.022,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33422.0,8627.0,7508.0,696.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,22502.0,5976.0,7037.0,2785.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.437,59.437,36.427,36.427,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.931,0.961,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.548,0.0,16.8,9.071,0.613,0.0,0.0,0.0,0.0,2054.1,3952.8,3952.8,24.01,21.408,0.0,3.557,3.659,0.515,7.569,0.634,10.135,-12.639,0.764,-1.653,0.0,8.431,-0.068,4.816,0.0,0.73,0.0,4.995,-7.78,-2.485,0.0,-0.115,-0.496,-0.056,2.622,-0.034,-1.479,11.709,0.263,2.973,0.0,-6.529,-0.064,-1.167,-4.027,-0.167,0.0,3.701,7.805,2.022,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33349.0,8625.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,22723.0,5980.0,7037.0,3001.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.882,40.882,29.115,29.115,11.768,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,3.8,0.7,9.407,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.012,0.0,11.99,9.291,0.608,0.0,0.0,0.0,0.0,1660.8,2806.6,2806.6,13.457,13.116,0.0,3.945,3.837,0.0,0.0,0.688,10.051,-12.161,0.0,0.0,0.0,7.97,-0.147,2.656,0.0,0.773,0.0,0.317,-5.952,-1.448,0.0,-0.058,-0.571,0.0,0.0,-0.016,-0.626,12.095,0.0,0.0,0.0,-1.544,-0.144,-0.569,-3.486,-0.164,0.0,0.082,6.062,1.198,1354.7,998.0,11171.6,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,13448.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,359.0,3320.0,313.0,0.0,-487.0,800.0 -base-enclosure-thermal-mass.xml,59.016,59.016,35.539,35.539,23.477,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.208,0.793,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.986,0.0,13.821,9.071,0.615,0.0,0.0,0.0,0.0,2051.8,3508.8,3508.8,23.385,18.821,0.0,3.539,3.634,0.512,7.484,0.629,10.104,-12.697,0.0,0.0,0.0,8.256,-0.104,4.801,0.0,0.726,0.0,5.052,-7.799,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.345,11.731,0.0,0.0,0.0,-6.227,-0.1,-1.141,-3.851,-0.162,0.0,3.035,7.782,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,76.088,76.088,34.35,34.35,41.738,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,3.004,0.523,9.021,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.049,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.074,0.0,8.978,9.071,0.622,0.0,0.0,0.0,0.0,2066.1,2846.0,2846.0,26.296,12.822,0.0,3.344,16.987,0.473,7.14,0.838,1.286,-1.617,0.0,0.0,0.0,7.334,-0.056,4.84,0.0,0.732,0.0,8.06,-8.05,-2.557,0.0,0.311,-0.524,-0.006,3.433,-0.079,-0.157,1.405,0.0,0.0,0.0,-4.914,-0.05,-0.94,-0.487,-0.12,0.0,1.765,7.516,1.95,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35717.0,8676.0,918.0,0.0,575.0,16373.0,0.0,0.0,2408.0,2171.0,4597.0,14800.0,5807.0,867.0,0.0,207.0,1686.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,58.23,58.23,34.529,34.529,23.701,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,3.403,0.591,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.196,0.0,10.154,9.071,0.618,0.0,0.0,0.0,0.0,2039.7,3487.8,3487.8,23.508,18.624,0.0,3.539,3.637,0.512,7.513,0.629,10.084,-12.691,0.0,0.0,0.0,8.339,-0.064,4.806,0.0,0.728,0.0,5.115,-7.8,-2.489,0.0,0.051,-0.377,-0.039,2.955,-0.004,-1.132,11.723,0.0,0.0,0.0,-5.942,-0.06,-1.064,-8.097,-0.151,0.0,2.606,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,59.984,59.984,33.671,33.671,26.313,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.647,0.449,9.018,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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.0,0.0,24.633,0.0,7.594,9.071,0.619,0.0,0.0,0.0,0.0,2026.8,2455.3,2455.3,17.734,8.647,0.0,3.454,5.149,0.499,7.205,0.6,0.0,0.0,0.0,0.0,0.0,7.478,-0.043,4.779,0.0,0.721,0.0,5.145,-7.908,-2.516,0.0,0.211,-0.364,-0.022,3.226,0.016,0.0,0.0,0.0,0.0,0.0,-5.15,-0.041,-1.09,0.0,-0.142,0.0,1.328,7.663,1.991,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25952.0,8372.0,0.0,0.0,575.0,7829.0,0.0,0.0,2408.0,2171.0,4597.0,12523.0,5715.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,67.04,67.04,35.727,35.727,31.313,0.0,0.0,0.0,0.0,0.0,0.0,0.517,0.0,0.0,4.264,0.799,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.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.0,0.0,29.327,0.0,13.903,9.071,0.617,0.0,0.0,0.0,0.0,2057.5,3769.3,3769.3,28.23,21.382,0.0,3.476,3.628,0.511,7.479,0.63,19.599,-16.819,0.0,0.0,0.0,8.385,-0.085,4.83,0.0,0.73,0.0,6.637,-7.855,-2.5,0.0,0.035,-0.371,-0.039,2.872,-0.0,-4.822,14.292,0.0,0.0,0.0,-6.099,-0.08,-1.051,-3.405,-0.151,0.0,3.201,7.721,2.007,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39131.0,8753.0,13788.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,22074.0,5967.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,59.144,59.144,35.622,35.622,23.522,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.273,0.808,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.029,0.0,14.083,9.071,0.614,0.0,0.0,0.0,0.0,2039.7,3884.4,3884.4,23.508,19.176,0.0,3.541,3.638,0.512,7.492,0.63,10.091,-12.691,0.0,0.0,0.0,8.23,-0.074,4.808,0.0,0.728,0.0,5.076,-7.8,-2.489,0.0,-0.049,-0.459,-0.051,2.685,-0.024,-1.234,12.133,0.0,0.0,0.0,-6.385,-0.07,-1.153,-3.916,-0.164,0.0,3.12,7.783,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,58.965,58.965,33.189,33.189,25.776,0.0,0.0,0.0,0.0,0.0,0.0,0.425,0.0,0.0,2.283,0.348,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.045,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.14,0.0,5.952,9.071,0.623,0.0,0.0,0.0,0.0,2053.2,2987.9,2987.9,23.552,11.519,0.0,3.577,3.692,0.519,7.538,0.642,10.689,-11.794,0.0,0.0,0.0,8.474,-0.061,4.889,0.0,0.74,0.0,5.49,-8.052,-2.553,0.0,0.395,-0.072,0.004,3.608,0.068,-3.443,2.905,0.0,0.0,0.0,-4.566,-0.057,-0.863,-2.598,-0.113,0.0,1.374,7.51,1.955,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15569.0,5831.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,60.223,60.223,35.026,35.026,25.196,0.0,0.0,0.0,0.0,0.0,0.0,0.416,0.0,0.0,3.773,0.69,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.598,0.0,11.998,9.071,0.617,0.0,0.0,0.0,0.0,2040.0,3662.6,3662.6,22.969,17.201,0.0,3.498,3.602,0.507,7.401,0.621,8.59,-9.448,0.0,0.0,0.0,8.025,-0.063,4.793,0.0,0.724,0.0,5.361,-7.814,-2.492,0.0,0.041,-0.387,-0.041,2.884,-0.007,-0.665,8.68,0.0,0.0,0.0,-5.952,-0.059,-1.108,-3.539,-0.156,0.0,2.682,7.763,2.015,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31855.0,8585.0,6680.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,18414.0,5902.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.291,48.291,29.978,29.978,18.314,0.0,0.0,0.0,0.0,0.0,0.0,0.302,0.0,0.0,4.586,0.877,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,17.156,0.0,15.291,9.178,0.607,0.0,0.0,0.0,2.0,1689.8,3494.7,3494.7,20.918,21.83,0.0,3.809,3.819,0.0,0.0,0.766,10.497,-11.429,0.0,0.0,10.197,0.0,-0.472,2.065,0.0,0.784,0.0,4.107,-5.899,-1.423,0.0,-0.056,-0.542,0.0,0.0,0.037,-0.072,12.54,0.0,0.0,-3.678,0.0,-0.465,-0.392,-2.654,-0.155,0.0,3.567,6.115,1.223,1354.7,998.0,11171.5,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,19864.0,5978.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,53.239,53.239,32.283,32.283,20.955,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,4.251,0.8,9.248,0.0,0.0,3.404,0.142,0.277,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.625,0.0,13.948,9.2,0.614,0.0,0.0,0.0,0.0,1835.1,3783.1,3783.1,21.884,19.627,0.0,3.65,4.732,0.514,5.492,0.701,9.833,-12.62,0.0,0.0,0.833,6.114,-0.044,3.262,0.0,0.734,0.0,4.691,-6.728,-1.879,0.0,-0.008,-0.615,-0.052,1.964,-0.035,-1.096,11.668,0.0,0.0,-0.122,-4.544,-0.041,-0.762,-3.61,-0.163,0.0,3.252,6.732,1.525,1354.7,998.0,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31445.0,8573.0,7508.0,0.0,603.0,7269.0,0.0,318.0,1768.0,2171.0,3235.0,19247.0,5937.0,7037.0,0.0,198.0,128.0,0.0,-102.0,0.0,2293.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,50.233,50.233,29.073,29.073,21.159,0.0,0.0,0.0,0.0,0.0,0.0,0.349,0.0,0.0,3.815,0.699,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.093,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.816,0.0,11.938,9.178,0.609,0.0,0.0,0.0,0.0,1679.8,3153.5,3153.5,24.73,18.029,0.0,3.98,5.365,0.0,0.0,0.755,8.71,-11.193,0.0,0.0,10.282,0.0,-0.377,2.071,0.0,0.792,0.0,6.518,-6.015,-1.452,0.0,0.328,-0.567,0.0,0.0,0.048,0.153,9.501,0.0,0.0,-3.37,0.0,-0.371,-0.377,-2.426,-0.14,0.0,2.213,5.996,1.194,1354.7,998.0,11171.5,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,13036.0,757.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.856,49.856,29.081,29.081,20.775,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,3.826,0.702,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.094,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,19.456,0.0,11.987,9.178,0.608,0.0,0.0,0.0,0.0,1679.1,3168.9,3168.9,24.577,17.989,0.0,3.983,5.37,0.0,0.0,0.755,8.718,-11.171,0.0,0.0,9.976,0.0,-0.37,2.07,0.0,0.792,0.0,6.402,-6.005,-1.45,0.0,0.319,-0.579,0.0,0.0,0.045,0.131,9.523,0.0,0.0,-3.3,0.0,-0.364,-0.381,-2.445,-0.141,0.0,2.218,6.007,1.196,1354.7,998.0,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,13036.0,757.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.516,78.516,36.887,36.887,41.629,0.0,0.0,0.0,0.0,0.0,0.0,0.687,0.0,0.0,5.062,0.994,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.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,38.987,0.0,17.363,9.071,0.618,0.0,0.0,0.0,3.0,2080.7,4107.2,4107.2,33.833,22.084,0.0,3.432,3.664,0.521,19.568,0.652,10.158,-12.86,0.0,0.0,0.0,8.681,-0.12,6.1,0.0,0.74,0.0,8.531,-8.008,-2.548,0.0,0.064,-0.344,-0.042,3.886,0.001,-0.923,11.551,0.0,0.0,0.0,-4.502,-0.112,-1.192,-3.976,-0.134,0.0,3.696,7.566,1.959,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42586.0,8818.0,7508.0,0.0,575.0,15887.0,0.0,0.0,3031.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,56.476,56.476,36.103,36.103,20.373,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.7,0.91,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.077,0.0,15.902,9.071,0.613,0.0,0.0,0.0,0.0,2050.7,3738.5,3738.5,22.775,20.954,0.0,3.625,3.702,0.521,8.198,0.644,10.264,-12.674,0.0,0.0,0.0,4.764,-0.069,4.847,0.0,0.733,0.0,4.477,-7.798,-2.489,0.0,-0.076,-0.475,-0.054,2.229,-0.029,-1.44,11.74,0.0,0.0,0.0,-3.664,-0.063,-1.15,-4.075,-0.165,0.0,3.442,7.789,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31964.0,8588.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,58.071,58.071,35.794,35.794,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.844,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.728,9.071,0.614,0.0,0.0,0.0,0.0,2036.3,3750.2,3750.2,23.24,20.04,0.0,3.568,3.658,0.515,7.807,0.633,10.133,-12.689,0.0,0.0,0.0,6.854,-0.061,4.814,0.0,0.729,0.0,4.844,-7.791,-2.487,0.0,-0.054,-0.459,-0.051,2.565,-0.025,-1.391,11.724,0.0,0.0,0.0,-5.24,-0.057,-1.147,-3.886,-0.163,0.0,3.236,7.792,2.02,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31964.0,8588.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,58.009,58.009,35.168,35.168,22.841,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.92,0.721,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.39,0.0,12.528,9.071,0.615,0.0,0.0,0.0,0.0,2041.6,3765.5,3765.5,23.695,19.001,0.0,3.571,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.942,-0.072,4.83,0.0,0.732,0.0,4.971,-7.81,-2.491,0.0,0.027,-0.395,-0.042,1.149,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.105,-3.49,-0.158,0.0,2.892,7.771,2.016,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35926.0,8681.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.443,47.443,28.55,28.55,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,3.429,0.615,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,17.68,0.0,10.552,9.178,0.615,0.0,0.0,0.0,0.0,1665.1,2797.9,2797.9,16.166,11.78,0.0,3.707,3.603,0.507,5.099,0.623,9.803,-12.661,0.0,0.0,0.0,9.971,-0.063,3.499,0.0,0.729,0.0,0.0,-5.999,-1.462,0.0,0.051,-0.445,-0.049,1.827,-0.02,-1.119,11.692,0.0,0.0,0.0,-3.741,-0.059,-0.812,-3.588,-0.16,0.0,0.0,5.997,1.184,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,22133.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3448.0,13587.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.666,42.666,29.123,29.123,13.544,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.2,0.793,9.178,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.812,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.678,0.0,13.644,9.122,0.694,0.0,0.0,0.0,0.0,1645.4,3046.3,3046.3,15.578,15.406,0.0,3.98,3.864,0.0,0.0,0.777,10.556,-11.233,0.0,0.0,5.319,0.0,-0.388,2.582,0.0,0.0,0.0,2.124,-3.831,-1.415,0.0,-0.11,-0.685,0.0,0.0,-0.007,-0.371,12.735,0.0,0.0,-0.653,0.0,-0.384,-0.549,-2.977,0.0,0.0,1.658,3.98,1.23,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23186.0,4897.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14489.0,152.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,40.083,40.083,28.975,28.975,11.107,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,3.861,0.716,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.1,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,10.395,0.0,12.264,9.178,0.607,0.0,0.0,0.0,0.0,1649.8,2869.4,2869.4,12.974,13.084,0.0,3.929,3.8,0.0,0.0,0.69,10.055,-12.09,0.0,0.0,0.0,7.953,-0.156,2.012,0.0,0.773,0.0,0.299,-5.925,-1.441,0.0,-0.052,-0.561,0.0,0.0,-0.019,-0.691,12.166,0.0,0.0,0.0,-1.626,-0.154,-0.449,-3.297,-0.168,0.0,0.084,6.092,1.204,1354.7,998.0,11171.5,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,13398.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.799,43.799,29.196,29.196,14.603,0.0,0.0,0.0,0.0,0.0,0.0,0.241,0.0,0.0,4.283,0.812,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.748,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.672,0.0,14.015,9.122,0.713,0.0,0.0,0.0,0.0,1640.2,2975.6,2975.6,16.865,16.395,0.0,3.988,3.87,0.0,0.0,0.777,10.616,-11.319,0.0,0.0,5.952,0.0,-0.397,2.589,0.0,0.0,0.0,2.556,-3.855,-1.423,0.0,-0.084,-0.66,0.0,0.0,-0.003,-0.36,12.65,0.0,0.0,-0.537,0.0,-0.391,-0.534,-2.962,0.0,0.0,1.934,3.956,1.222,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23161.0,4906.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14490.0,162.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.102,41.102,28.625,28.625,12.477,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,3.844,0.709,9.195,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.755,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.681,0.0,12.124,9.122,0.711,0.0,0.0,0.0,0.0,1641.5,2792.7,2792.7,15.029,14.108,0.0,3.976,3.837,0.0,0.0,0.766,10.567,-11.128,0.0,0.0,4.468,0.0,-0.41,2.585,0.0,0.0,0.0,1.91,-3.816,-1.409,0.0,-0.082,-0.633,0.0,0.0,0.021,-0.332,12.841,0.0,0.0,-2.065,0.0,-0.405,-0.551,-2.808,0.0,0.0,1.14,3.996,1.237,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,20982.0,4845.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,13936.0,170.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,49.114,49.114,28.543,28.543,20.571,0.0,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,3.535,0.634,9.128,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.99,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.253,0.0,10.837,9.122,0.64,0.0,0.0,0.0,0.0,1659.9,2764.2,2764.2,17.054,12.672,0.0,3.734,3.631,0.0,0.0,0.637,9.326,-12.484,0.0,0.0,14.524,0.0,-0.055,2.47,0.0,0.0,0.0,2.675,-3.989,-1.475,0.0,0.079,-0.423,0.0,0.0,-0.009,-0.363,11.485,0.0,0.0,-2.715,0.0,-0.054,-0.503,-2.787,0.0,0.0,1.307,3.822,1.171,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24244.0,2046.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15373.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.717,42.717,29.126,29.126,13.591,0.0,0.0,0.0,0.0,0.0,0.0,0.224,0.0,0.0,4.22,0.798,9.188,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.78,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.723,0.0,13.738,9.122,0.704,0.0,0.0,0.0,0.0,1642.2,3223.2,3223.2,15.831,15.611,0.0,3.972,3.831,0.0,0.0,0.757,10.506,-11.224,0.0,0.0,5.375,0.0,-0.392,2.581,0.0,0.0,0.0,2.231,-3.83,-1.415,0.0,-0.088,-0.641,0.0,0.0,0.011,-0.398,12.744,0.0,0.0,-0.703,0.0,-0.387,-0.549,-2.977,0.0,0.0,1.736,3.981,1.231,1354.7,998.0,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23202.0,4907.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14500.0,162.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.847,40.847,29.545,29.545,11.302,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.0,0.0,4.231,0.804,9.294,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.113,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.581,0.0,13.808,9.178,0.708,0.0,0.0,0.0,0.0,1646.2,2882.6,2882.6,14.661,14.88,0.0,3.96,3.814,0.0,0.0,0.776,10.616,-10.805,0.0,0.0,4.531,0.0,-0.452,2.047,0.0,0.773,0.0,1.723,-5.372,-1.377,0.0,-0.194,-0.755,0.0,0.0,0.006,-0.576,13.164,0.0,0.0,-2.02,0.0,-0.448,-0.468,-3.063,-0.191,0.0,1.288,6.051,1.269,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21970.0,5792.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,15378.0,1601.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace-above-grade.xml,42.894,42.894,29.647,29.647,13.247,0.0,0.0,0.0,0.0,0.0,0.0,0.219,0.0,0.0,4.243,0.804,9.359,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.106,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.403,0.0,13.777,9.178,0.777,0.0,0.0,0.0,0.0,1662.7,3226.3,3226.3,15.822,15.686,0.0,3.962,3.8,0.0,0.0,0.753,10.468,-11.092,0.0,0.0,6.699,0.0,-0.436,1.847,0.0,0.779,0.0,2.134,-5.472,-1.401,0.0,-0.09,-0.641,0.0,0.0,0.024,-0.388,12.877,0.0,0.0,-2.425,0.0,-0.431,-0.377,-2.975,-0.176,0.0,1.449,5.945,1.244,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24605.0,7599.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,16086.0,2090.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.815,42.815,29.492,29.492,13.324,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.0,4.111,0.772,9.368,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.105,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.475,0.0,13.197,9.178,0.786,0.0,0.0,0.0,0.0,1651.4,2855.1,2855.1,15.831,15.378,0.0,3.967,3.822,0.0,0.0,0.764,10.539,-11.143,0.0,0.0,6.722,0.0,-0.431,1.849,0.0,0.782,0.0,2.149,-5.497,-1.409,0.0,-0.078,-0.638,0.0,0.0,0.02,-0.338,12.826,0.0,0.0,-2.943,0.0,-0.426,-0.371,-2.899,-0.172,0.0,1.325,5.917,1.237,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24287.0,7290.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,16004.0,2010.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,65.207,65.207,35.953,35.953,29.254,0.0,0.0,0.0,0.0,0.0,0.0,0.483,0.0,0.0,4.47,0.852,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,27.397,0.0,14.829,9.071,0.616,0.0,0.0,0.0,0.0,2070.5,4087.5,4087.5,27.219,21.057,0.0,3.524,3.694,0.521,7.367,0.649,10.888,-12.93,0.0,0.0,0.0,10.143,-0.076,6.637,0.0,0.728,0.0,6.224,-7.826,-2.494,0.0,-0.08,-0.496,-0.057,1.502,-0.026,-1.456,12.041,0.0,0.0,0.0,-3.617,-0.071,-1.482,-4.137,-0.157,0.0,3.24,7.752,2.013,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34659.0,8659.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2885.0,2171.0,5942.0,20068.0,5959.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.272,34.272,34.272,34.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.266,0.975,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.506,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3385.9,3385.9,0.0,16.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.004,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.655,-0.163,0.0,1.952,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.811,45.811,45.811,45.811,0.0,0.0,0.0,0.0,0.0,0.0,9.893,1.051,0.329,0.019,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.348,12.895,9.071,0.615,0.0,0.0,0.0,0.0,7045.4,3758.5,7045.4,24.559,16.503,0.0,3.514,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.714,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.328,42.328,42.328,42.328,0.0,0.0,0.0,0.0,0.0,0.0,9.925,1.821,0.342,0.034,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.415,0.376,0.0,9.071,0.592,0.0,0.0,0.0,0.0,7320.9,1786.0,7320.9,25.614,0.0,0.0,3.485,3.641,0.512,7.491,0.63,10.097,-12.691,0.0,0.0,0.0,8.143,-0.07,4.809,0.0,0.728,0.0,6.573,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.674,45.674,45.674,45.674,0.0,0.0,0.0,0.0,0.0,0.0,9.336,0.942,0.969,0.053,3.253,0.971,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.773,1.022,12.442,9.071,0.615,0.0,0.0,151.0,0.0,10336.1,3675.2,10336.1,37.691,16.344,0.0,3.596,3.664,0.514,7.733,0.62,9.994,-12.822,0.0,0.0,0.0,9.049,0.07,4.732,0.0,0.76,0.0,4.79,-7.794,-2.499,0.0,0.037,-0.419,-0.047,2.844,-0.028,-1.416,11.591,0.0,0.0,0.0,-6.236,0.061,-1.15,-4.207,-0.159,0.0,1.945,7.787,2.008,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.873,45.873,45.873,45.873,0.0,0.0,0.0,0.0,0.0,0.0,9.968,1.051,0.329,0.019,3.349,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.348,12.895,9.071,0.615,0.0,0.0,0.0,0.0,7045.4,3752.6,7045.4,24.559,16.503,0.0,3.514,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.714,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.811,45.811,45.811,45.811,0.0,0.0,0.0,0.0,0.0,0.0,9.893,1.051,0.329,0.019,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.348,12.895,9.071,0.615,0.0,0.0,0.0,0.0,7045.4,3758.5,7045.4,24.559,16.503,0.0,3.514,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.714,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.64,41.64,41.64,41.64,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.615,0.315,0.013,2.251,0.607,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.761,0.328,13.147,9.071,0.615,0.0,0.0,0.0,0.0,7022.6,3298.8,7022.6,24.552,17.528,0.0,3.473,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.293,-0.067,4.807,0.0,0.728,0.0,6.784,-7.8,-2.489,0.0,0.006,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.259,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.51,40.51,40.51,40.51,0.0,0.0,0.0,0.0,0.0,0.0,8.174,0.089,0.0,0.0,1.998,0.098,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.766,0.0,12.47,9.071,0.615,0.0,0.0,0.0,0.0,4168.6,2941.0,4168.6,22.401,15.666,0.0,3.551,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,4.735,-7.8,-2.489,0.0,0.032,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.778,-0.162,0.0,1.58,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,68137.0,68137.0,0.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.126,54.126,38.751,38.751,15.375,0.0,0.0,0.0,0.0,0.0,5.297,0.379,0.0,0.058,2.391,0.476,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,28.86,11.49,15.753,9.071,0.616,0.0,0.0,1.0,13.0,3140.9,2982.5,3140.9,23.258,17.757,0.0,3.269,3.597,0.506,7.507,0.614,9.916,-12.591,0.0,0.0,0.0,8.221,-0.031,5.815,0.0,0.719,0.0,11.113,-7.688,-2.467,0.0,-0.16,-0.467,-0.052,2.794,-0.032,-1.455,11.822,0.0,0.0,0.0,-6.255,-0.027,-1.459,-3.737,-0.167,0.0,5.142,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,57.106,57.106,37.587,37.587,19.518,0.0,0.0,0.0,0.0,0.0,4.221,0.255,0.0,0.074,2.409,0.479,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,28.467,14.579,15.872,9.071,0.616,0.0,0.0,242.0,13.0,3068.8,3141.4,3141.4,23.54,17.757,0.0,3.288,3.596,0.505,7.4,0.614,9.858,-12.676,0.0,0.0,0.0,8.226,-0.016,5.779,0.0,0.715,0.0,10.674,-7.713,-2.456,0.0,-0.146,-0.461,-0.052,2.715,-0.03,-1.487,11.737,0.0,0.0,0.0,-6.198,-0.013,-1.472,-3.723,-0.17,0.0,5.036,7.866,2.051,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.236,54.236,38.857,38.857,15.379,0.0,0.0,0.0,0.0,0.0,5.376,0.383,0.0,0.058,2.41,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.157,11.493,15.908,9.071,0.615,0.0,0.0,1.0,13.0,3140.9,3319.8,3319.8,23.258,17.758,0.0,3.31,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,5.888,0.0,0.727,0.0,11.257,-7.81,-2.491,0.0,-0.119,-0.432,-0.047,2.776,-0.017,-1.297,11.708,0.0,0.0,0.0,-6.19,-0.063,-1.395,-3.724,-0.16,0.0,5.195,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.261,54.261,39.013,39.013,15.248,0.0,0.0,0.0,0.0,0.0,5.145,0.36,0.0,0.46,2.418,0.478,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,29.44,12.658,16.007,9.071,0.615,0.0,0.0,2.0,11.0,3138.7,3319.7,3319.7,26.783,17.748,0.0,3.252,3.64,0.512,7.511,0.63,10.086,-12.696,0.0,0.0,0.0,8.302,-0.064,4.804,0.0,0.727,0.0,12.639,-7.798,-2.488,0.0,-0.127,-0.439,-0.048,2.748,-0.02,-1.332,11.717,0.0,0.0,0.0,-6.237,-0.059,-1.139,-3.789,-0.162,0.0,5.208,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40224.0,16125.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.0,43.0,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,9.143,0.59,0.281,0.01,2.667,0.157,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.129,0.291,14.63,9.071,0.615,0.0,0.0,0.0,0.0,5551.4,4121.1,5551.4,24.764,18.624,0.0,3.346,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,10.269,-7.801,-2.489,0.0,-0.059,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.805,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,31615.0,31615.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.644,42.644,42.644,42.644,0.0,0.0,0.0,0.0,0.0,0.0,9.096,0.545,0.102,0.004,2.627,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.418,0.106,13.982,9.071,0.615,0.0,0.0,0.0,0.0,5145.2,3578.2,5145.2,24.549,18.265,0.0,3.373,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.535,-7.801,-2.489,0.0,-0.028,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.601,42.601,42.601,42.601,0.0,0.0,0.0,0.0,0.0,0.0,9.152,0.542,0.105,0.004,2.533,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.565,0.109,14.277,9.071,0.615,0.0,0.0,0.0,0.0,5162.0,3939.8,5162.0,24.549,18.285,0.0,3.368,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,4.807,0.0,0.728,0.0,9.688,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.441,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.501,50.501,50.501,50.501,0.0,0.0,0.0,0.0,0.0,0.0,10.064,0.743,6.011,0.337,3.088,0.105,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.942,6.348,14.244,9.071,0.615,0.0,0.0,0.0,0.0,8377.1,3855.2,8377.1,24.545,18.389,0.0,3.351,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,4.807,0.0,0.728,0.0,10.072,-7.801,-2.489,0.0,-0.041,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.408,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.561,42.561,42.561,42.561,0.0,0.0,0.0,0.0,0.0,0.0,9.114,0.544,0.101,0.004,2.531,0.114,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.417,0.105,14.284,9.071,0.615,0.0,0.0,0.0,0.0,5145.3,3936.6,5145.3,24.549,18.281,0.0,3.373,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.534,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.781,-0.162,0.0,3.448,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.112,41.112,41.112,41.112,0.0,0.0,0.0,0.0,0.0,0.0,8.181,0.28,0.32,0.015,2.047,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.068,0.334,13.982,9.071,0.615,0.0,0.0,0.0,0.0,5827.2,3201.4,5827.2,24.603,18.265,0.0,3.426,3.639,0.512,7.509,0.63,10.089,-12.696,0.0,0.0,0.0,8.298,-0.065,4.807,0.0,0.728,0.0,8.14,-7.801,-2.489,0.0,-0.029,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,50.04,50.04,42.273,42.273,7.767,0.0,0.0,0.0,0.0,0.0,0.0,0.053,0.0,0.0,3.132,0.477,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.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,7.192,0.0,9.022,16.197,0.647,0.0,0.0,0.0,0.0,2487.5,3690.9,3690.9,17.743,16.073,0.0,2.847,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.528,-0.057,3.485,0.0,0.573,0.0,1.699,-8.608,-2.465,0.0,-0.085,-0.54,-0.062,2.449,-0.05,-1.666,11.85,0.0,0.0,0.0,-7.413,-0.057,-1.213,-6.541,-0.183,0.0,1.894,8.945,2.042,2180.8,1715.9,21140.4,3685.8,0.0,31891.0,27890.0,0.0,0.0,100.0,31891.0,9071.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.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.834,59.834,35.653,35.653,24.181,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.304,0.816,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.629,0.0,14.233,9.071,0.615,0.0,0.0,0.0,0.0,2050.9,3938.8,3938.8,24.175,19.781,0.0,3.521,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.617,-7.8,-2.489,0.0,-0.042,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.365,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,32706.0,22316.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.537,50.537,30.458,30.458,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1975.9,1785.9,1975.9,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,49.292,49.292,49.292,49.292,0.0,0.0,0.0,0.0,0.0,0.0,18.955,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5998.2,1785.9,5998.2,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,56.13,56.13,35.779,35.779,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,4.333,1.139,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,14.059,9.071,0.615,0.0,0.0,0.0,0.0,2008.6,4059.7,4059.7,16.778,19.321,0.0,3.737,3.636,0.512,7.501,0.629,10.082,-12.691,0.0,0.0,0.0,8.282,-0.066,4.807,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,-0.036,-0.44,-0.048,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.78,-0.162,0.0,3.187,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.486,55.486,30.36,30.36,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1958.4,1785.9,1958.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.53,50.53,30.36,30.36,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1958.4,1785.9,1958.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.537,50.537,30.458,30.458,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1975.9,1785.9,1975.9,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1954.4,1785.9,1954.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1954.4,1785.9,1954.4,16.778,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.358,35.358,35.358,35.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.221,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3679.3,3679.3,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.37,35.37,35.37,35.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3685.9,3685.9,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.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,3.077,0.684,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3224.5,3224.5,0.0,19.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.656,-0.163,0.0,3.524,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.41,34.41,34.41,34.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.996,0.384,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.369,9.071,0.666,0.0,0.0,0.0,1.0,1974.9,4120.8,4120.8,0.0,19.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.131,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.665,-0.163,0.0,4.915,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20489.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.515,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,32.987,32.987,32.987,32.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.828,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.9,3015.9,0.0,19.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.842,47.842,47.842,47.842,0.0,0.0,0.0,0.0,0.0,0.0,10.003,1.837,0.343,0.034,4.334,1.14,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.618,0.377,14.06,9.071,0.615,0.0,0.0,0.0,0.0,7390.6,4059.7,7390.6,25.614,19.322,0.0,3.48,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,4.807,0.0,0.728,0.0,6.625,-7.8,-2.489,0.0,-0.034,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.187,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2034.7,3107.2,3107.2,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.52,52.52,41.55,41.55,10.971,0.0,0.0,0.0,0.0,0.0,5.572,0.529,0.0,0.931,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,11.353,12.895,9.071,0.615,0.0,0.0,0.0,0.0,3544.9,3758.5,3758.5,24.549,16.503,0.0,3.457,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,4.807,0.0,0.728,0.0,7.048,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.346,55.346,40.479,40.479,14.867,0.0,0.0,0.0,0.0,0.0,4.197,0.372,0.0,1.392,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,15.515,12.895,9.071,0.615,0.0,0.0,0.0,0.0,3386.2,3758.5,3758.5,24.548,16.503,0.0,3.421,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,4.807,0.0,0.728,0.0,7.948,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.687,52.687,37.418,37.418,15.269,0.0,0.0,0.0,0.0,0.0,3.161,0.203,0.0,1.044,2.251,0.607,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,25.239,15.549,13.147,9.071,0.615,0.0,0.0,0.0,0.0,2777.9,3298.9,3298.9,24.547,17.528,0.0,3.409,3.639,0.512,7.51,0.63,10.09,-12.691,0.0,0.0,0.0,8.297,-0.067,4.807,0.0,0.728,0.0,8.315,-7.8,-2.489,0.0,0.006,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.259,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.415,52.415,37.02,37.02,15.395,0.0,0.0,0.0,0.0,0.0,3.525,0.042,0.0,1.137,2.047,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,26.174,15.762,13.982,9.071,0.615,0.0,0.0,0.0,0.0,2775.0,3201.4,3201.4,24.598,18.265,0.0,3.377,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.284,-7.801,-2.489,0.0,-0.029,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.776,47.776,35.917,35.917,11.859,0.0,0.0,0.0,0.0,0.0,3.081,0.013,0.0,0.545,2.081,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,20.417,11.812,11.929,9.071,0.615,0.0,0.0,0.0,0.0,2608.7,2873.3,2873.3,19.412,14.142,0.0,3.601,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.066,4.807,0.0,0.728,0.0,3.348,-7.8,-2.489,0.0,0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.777,-0.162,0.0,1.03,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.975,93.975,46.236,46.236,47.74,0.0,0.0,0.0,0.0,0.0,0.0,0.622,0.0,0.0,7.847,1.617,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.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,44.56,0.0,28.693,8.985,0.613,0.0,0.0,6.0,53.0,2472.8,5246.3,5246.3,49.142,36.144,0.0,3.194,7.884,1.072,7.901,0.668,20.507,-25.256,0.0,0.0,0.0,9.019,-0.126,11.17,0.0,0.746,0.0,20.398,-9.657,-3.531,0.0,-0.342,-0.978,-0.092,2.723,-0.015,-1.929,23.309,0.0,0.0,0.0,-6.357,-0.114,-2.398,-7.546,-0.157,0.0,10.568,9.512,2.837,1354.7,998.0,11171.5,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71768.0,33219.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,8913.0,86559.0,64919.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,58.417,58.417,35.469,35.469,22.948,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.159,0.78,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.496,0.0,13.647,9.071,0.615,0.0,0.0,0.0,0.0,2050.2,3826.3,3826.3,22.816,18.634,0.0,3.563,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.289,-0.067,4.807,0.0,0.728,0.0,4.449,-7.8,-2.489,0.0,-0.016,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.763,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31918.0,7820.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19310.0,5569.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.707,56.707,35.232,35.232,21.476,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.984,0.742,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.103,0.0,12.829,9.071,0.615,0.0,0.0,0.0,0.0,2044.9,3542.1,3542.1,20.689,16.029,0.0,3.612,3.637,0.512,7.504,0.629,10.084,-12.69,0.0,0.0,0.0,8.285,-0.066,4.806,0.0,0.728,0.0,3.013,-7.798,-2.488,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.78,-0.162,0.0,1.923,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29075.0,4977.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,16288.0,2546.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-defaults.xml,55.541,55.541,40.502,40.502,15.039,0.0,0.0,0.0,0.0,0.0,4.628,0.391,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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.844,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2999.9,3821.1,3821.1,18.563,12.093,0.0,3.737,3.636,0.512,7.5,0.629,10.082,-12.691,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,1.653,-7.8,-2.489,0.0,0.058,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.77,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,42311.0,24000.0,0.0,6.8,91.76,29832.0,4589.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,59.215,59.215,35.594,35.594,23.621,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.25,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.122,0.0,13.972,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3883.9,3883.9,23.504,19.171,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.095,-7.8,-2.489,0.0,-0.03,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.099,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32701.0,8603.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19671.0,5929.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.626,58.626,35.486,35.486,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.17,0.782,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.686,0.0,13.792,9.071,0.615,0.0,0.0,0.0,0.0,2050.2,3874.5,3874.5,22.905,19.089,0.0,3.551,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.807,0.0,0.728,0.0,4.667,-7.8,-2.489,0.0,-0.02,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.967,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34972.0,10874.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,21644.0,7902.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.482,60.482,35.789,35.789,24.693,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,4.395,0.835,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,23.131,0.0,14.619,9.071,0.615,0.0,0.0,0.0,0.0,2055.7,4055.3,4055.3,24.749,20.751,0.0,3.502,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,6.139,-7.8,-2.489,0.0,-0.059,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.782,-0.162,0.0,3.77,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33200.0,9102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,22097.0,8356.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,47.263,47.263,47.263,47.263,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5891.0,1785.9,5891.0,16.762,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.859,55.859,31.606,31.606,24.253,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.0,0.0,0.0,0.824,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.944,0.0,10.915,9.071,0.615,0.0,0.0,0.0,0.0,2046.7,2172.1,2172.1,24.541,12.103,0.0,3.51,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.935,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only-ducted.xml,30.916,30.916,30.916,30.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.886,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.517,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2074.8,2074.8,0.0,16.172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.651,-0.163,0.0,0.929,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,16228.0,2487.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,30.831,30.831,30.831,30.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2032.3,2032.3,0.0,11.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.84,52.84,30.205,30.205,0.0,0.0,0.0,22.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.3,1806.9,1931.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,25243.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,57.794,57.794,30.205,30.205,0.0,0.0,27.589,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.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.3,1806.9,1931.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,0.0,0.0,0.0,24.042,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,57.33,57.33,57.33,57.33,0.0,0.0,0.0,0.0,0.0,0.0,21.735,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,7905.7,3884.4,7905.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,53.402,53.402,53.402,53.402,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,8296.6,1786.0,8296.6,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.958,57.958,34.333,34.333,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,3.127,0.665,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,14.401,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3593.8,3593.8,23.508,19.799,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.048,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,3.533,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,57.188,57.188,33.563,33.563,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.252,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.44,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.822,38.822,30.321,30.321,8.501,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,8.035,0.0,0.0,9.071,0.636,0.0,0.0,0.0,0.0,1989.1,1804.8,1989.1,18.724,0.0,0.0,2.806,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.446,0.0,0.566,0.0,2.046,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.761,59.761,30.832,30.832,28.93,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.874,54.874,30.832,30.832,24.042,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,60.368,60.368,36.115,36.115,24.253,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.944,0.0,10.915,9.071,0.615,0.0,0.0,0.0,0.0,2046.7,3821.2,3821.2,24.541,12.094,0.0,3.51,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.935,-7.8,-2.489,0.0,0.059,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.771,-0.162,0.0,-0.0,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.874,54.874,30.832,30.832,0.0,24.042,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,24.042,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,0.0,24.042,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.43,59.43,36.496,36.496,22.934,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,17.366,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2039.1,3107.2,3107.2,16.929,12.093,0.0,3.774,3.672,0.517,7.576,0.635,10.182,-12.817,0.0,0.0,0.0,8.363,-0.067,4.854,0.0,0.735,0.0,0.0,-7.876,-2.513,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.793,33.793,33.793,33.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.948,0.814,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.718,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2952.0,2952.0,0.0,16.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.006,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.655,-0.163,0.0,2.17,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.982,40.982,40.982,40.982,0.0,0.0,0.0,0.0,0.0,0.0,6.516,0.653,0.0,0.0,2.703,0.961,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,13.449,9.071,0.616,0.0,0.0,0.0,0.0,3376.0,2934.2,3376.0,23.539,16.423,0.0,3.53,3.596,0.506,7.823,0.621,9.976,-12.711,0.0,0.0,0.0,11.627,-0.067,4.798,0.0,0.726,0.0,4.299,-7.815,-2.492,0.0,0.02,-0.431,-0.047,3.181,-0.017,-1.292,11.702,0.0,0.0,0.0,-6.268,-0.064,-1.124,-3.768,-0.159,0.0,2.103,7.765,2.015,1354.7,998.0,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,33030.0,7546.0,7508.0,0.0,575.0,7249.0,0.0,0.0,3384.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,37.045,37.045,37.045,37.045,0.0,0.0,0.0,0.0,0.0,0.0,5.914,0.925,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.428,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,3523.1,1786.0,3523.1,23.429,0.0,0.0,3.563,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.139,-0.07,4.808,0.0,0.728,0.0,4.528,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,40.425,40.425,40.425,40.425,0.0,0.0,0.0,0.0,0.0,0.0,5.796,0.592,0.0,0.0,2.939,0.946,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.912,0.0,12.97,9.071,0.615,0.0,0.0,0.0,0.0,3419.8,3117.6,3419.8,22.602,16.484,0.0,3.583,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.288,-0.067,4.807,0.0,0.728,0.0,3.849,-7.8,-2.489,0.0,0.013,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.778,-0.162,0.0,2.076,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,49.032,49.032,49.032,49.032,0.0,0.0,0.0,0.0,0.0,0.0,12.667,0.726,0.687,0.021,4.103,0.675,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.228,0.708,13.43,9.071,0.615,0.0,0.0,0.0,0.0,7149.1,4017.0,7149.1,25.085,17.633,0.0,3.456,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,4.807,0.0,0.728,0.0,7.262,-7.8,-2.489,0.0,-0.008,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.781,-0.162,0.0,2.553,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.368,44.368,44.368,44.368,0.0,0.0,0.0,0.0,0.0,0.0,9.624,0.597,0.614,0.019,2.804,0.559,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.449,0.633,13.778,9.071,0.615,0.0,0.0,0.0,0.0,7134.9,3612.6,7134.9,25.081,19.025,0.0,3.409,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,4.807,0.0,0.728,0.0,8.521,-7.8,-2.489,0.0,-0.021,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,2.904,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,46.045,46.045,46.045,46.045,0.0,0.0,0.0,0.0,0.0,0.0,11.468,0.555,0.309,0.009,3.38,0.172,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.758,0.318,14.993,9.071,0.615,0.0,0.0,0.0,0.0,5912.0,4585.4,5912.0,25.08,18.927,0.0,3.321,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.302,-0.065,4.807,0.0,0.728,0.0,10.918,-7.801,-2.489,0.0,-0.077,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.137,-3.785,-0.162,0.0,4.183,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,44.314,44.314,44.314,44.314,0.0,0.0,0.0,0.0,0.0,0.0,10.39,0.374,0.641,0.022,2.58,0.155,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.685,0.663,14.75,9.071,0.615,0.0,0.0,0.0,0.0,6481.5,3577.7,6481.5,25.126,18.874,0.0,3.363,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.066,4.807,0.0,0.728,0.0,9.806,-7.801,-2.489,0.0,-0.065,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.926,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.241,61.241,36.369,36.369,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.0,0.0,5.174,0.744,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.179,0.0,14.873,9.071,0.615,0.0,0.0,0.0,4.0,2035.8,3987.3,3987.3,24.58,18.696,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.187,-7.798,-2.488,0.0,-0.071,-0.44,-0.049,2.748,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.241,-0.061,-1.138,-3.783,-0.162,0.0,4.023,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.771,59.771,34.904,34.904,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.82,0.633,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,15.315,9.071,0.615,0.0,0.0,0.0,3.0,2035.6,3689.9,3689.9,24.573,18.986,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.09,-0.44,-0.048,2.749,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.24,-0.061,-1.138,-3.783,-0.162,0.0,4.471,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,59.036,59.036,34.169,34.169,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.341,0.378,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,16.025,9.071,0.615,0.0,0.0,0.0,0.0,2035.6,3573.0,3573.0,24.573,19.199,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.131,-0.44,-0.048,2.75,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.239,-0.061,-1.138,-3.79,-0.162,0.0,5.236,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,56.307,56.307,30.693,30.693,25.614,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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.0,0.0,24.049,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2020.1,1786.0,2020.1,25.88,0.0,0.0,3.466,3.641,0.512,7.491,0.63,10.094,-12.691,0.0,0.0,0.0,8.141,-0.069,4.807,0.0,0.728,0.0,7.231,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,42.712,42.712,42.712,42.712,0.0,0.0,0.0,0.0,0.0,0.0,7.496,0.606,0.0,0.0,3.553,0.905,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.029,0.0,13.538,9.071,0.615,0.0,0.0,0.0,0.0,3705.0,3369.9,3705.0,23.668,17.789,0.0,3.543,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.807,0.0,0.728,0.0,4.997,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.78,-0.162,0.0,2.658,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.486,33.486,33.486,33.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.195,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.325,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3068.7,3068.7,0.0,14.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.008,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.658,-0.163,0.0,1.794,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.615,41.615,41.615,41.615,0.0,0.0,0.0,0.0,0.0,0.0,8.477,0.224,0.144,0.006,2.52,0.092,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.59,0.15,12.215,9.071,0.615,0.0,0.0,0.0,0.0,4940.9,3243.8,4940.9,19.566,14.283,0.0,3.595,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.526,-7.8,-2.489,0.0,0.042,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.778,-0.162,0.0,1.324,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,32.837,32.837,32.837,32.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.069,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.063,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2690.8,2690.8,0.0,14.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.021,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.655,-0.163,0.0,1.52,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.243,33.243,33.243,33.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.159,0.053,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2757.3,2757.3,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,14582.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.572,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2769.6,2769.6,0.0,11.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.877,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2667.8,2667.8,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.099,32.099,32.099,32.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.025,0.044,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.562,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2505.4,2505.4,0.0,13.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.653,-0.163,0.0,1.003,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,41.175,41.175,41.175,41.175,0.0,0.0,0.0,0.0,0.0,0.0,7.661,0.237,0.0,0.0,3.038,0.087,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.833,0.0,12.493,9.071,0.615,0.0,0.0,0.0,0.0,4140.2,3263.9,4140.2,19.554,14.251,0.0,3.588,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.775,-7.8,-2.489,0.0,0.03,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.78,-0.162,0.0,1.615,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,26641.0,26641.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.595,40.595,40.595,40.595,0.0,0.0,0.0,0.0,0.0,0.0,7.358,0.159,0.0,0.0,2.89,0.036,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.407,0.0,12.256,9.071,0.615,0.0,0.0,0.0,0.0,4041.1,3122.1,4041.1,19.308,14.108,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.337,-7.8,-2.489,0.0,0.04,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.778,-0.162,0.0,1.369,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.29,37.29,37.29,37.29,0.0,0.0,0.0,0.0,0.0,0.0,6.878,0.137,0.065,0.003,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.024,0.067,0.0,9.071,0.592,0.0,0.0,0.0,0.0,4437.4,1785.9,4437.4,19.645,0.0,0.0,3.611,3.64,0.512,7.488,0.63,10.094,-12.691,0.0,0.0,0.0,8.137,-0.07,4.808,0.0,0.728,0.0,3.095,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,39.375,39.375,39.375,39.375,0.0,0.0,0.0,0.0,0.0,0.0,6.943,0.086,0.066,0.002,2.081,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.228,0.068,11.929,9.071,0.615,0.0,0.0,0.0,0.0,4361.3,2873.3,4361.3,19.413,14.142,0.0,3.607,3.637,0.512,7.504,0.63,10.085,-12.691,0.0,0.0,0.0,8.287,-0.066,4.807,0.0,0.728,0.0,3.154,-7.8,-2.489,0.0,0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.777,-0.162,0.0,1.03,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.078,39.078,39.078,39.078,0.0,0.0,0.0,0.0,0.0,0.0,5.983,0.131,0.393,0.0,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.393,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4413.1,3100.7,4413.1,16.762,12.092,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.844,45.844,36.508,36.508,9.336,0.0,0.0,0.0,0.0,0.0,3.616,0.049,0.0,0.281,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.36,7.751,10.83,9.071,0.615,0.0,0.0,2.0,0.0,2953.5,3118.8,3118.8,17.594,12.255,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.887,0.0,0.727,0.0,0.115,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,25048.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.564,45.564,36.313,36.313,9.251,0.0,0.0,0.0,0.0,0.0,3.419,0.044,0.0,0.279,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,17.601,7.68,10.914,9.071,0.615,0.0,0.0,1.0,0.0,2871.7,3100.7,3100.7,17.931,12.092,0.0,3.716,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.426,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,27030.0,2932.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.951,48.951,36.24,36.24,0.0,12.711,0.0,0.0,0.0,0.0,3.612,0.066,0.0,0.0,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,18.246,7.627,10.83,9.071,0.615,0.0,0.0,2.0,0.0,2953.5,3118.8,3118.8,17.317,12.255,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.887,0.0,0.727,0.0,0.0,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.902,38.902,38.902,38.902,0.0,0.0,0.0,0.0,0.0,0.0,6.783,0.074,0.0,0.0,1.889,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3885.5,2976.9,3885.5,16.761,12.09,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,24098.0,24098.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.04,0.0,0.0,1.887,0.003,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3944.1,3072.0,3944.1,16.761,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,67.555,67.555,52.544,52.544,7.432,3.747,3.831,0.0,0.0,0.0,14.282,0.917,0.239,0.01,6.404,0.541,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.249,19.016,9.071,0.615,0.0,0.0,0.0,15.0,6577.6,4447.1,6577.6,38.542,22.491,0.0,3.4,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.303,-0.067,5.888,0.0,0.727,0.0,16.161,-7.808,-2.49,0.0,-0.112,-0.433,-0.047,2.773,-0.017,-1.3,11.709,0.0,0.0,0.0,-6.195,-0.063,-1.396,-3.746,-0.16,0.0,8.299,7.771,2.017,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37011.0,12913.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24591.0,10850.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,20.452,20.452,20.452,20.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,4.542,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.496,0.335,0.0,0.0,0.0,0.0,1265.8,1194.4,1265.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,1354.7,998.0,8369.9,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,13258.0,0.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,301.0,3320.0,1252.0,0.0,452.0,800.0 -base-hvac-ptac-with-heating-electricity.xml,51.595,51.595,51.595,51.595,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3388.5,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.897,55.897,34.387,34.387,21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,1931.3,3388.5,3388.5,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.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,4.119,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3030.3,3030.3,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,31.83,31.83,31.83,31.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.489,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2330.4,2330.4,0.0,3.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.015,-0.147,-0.016,0.901,-0.008,-0.452,3.911,0.0,0.0,0.0,-2.262,-0.022,-0.383,-1.203,-0.054,0.0,0.0,2.608,0.674,1354.7,998.0,11171.5,2563.5,0.0,0.0,8000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.226,35.226,35.226,35.226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.195,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3461.5,3461.5,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.023,34.023,34.023,34.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.974,0.0,9.054,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.929,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.85,9.071,0.658,0.0,0.0,0.0,0.0,1924.2,3578.9,3578.9,0.0,10.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.115,-0.617,-0.073,2.251,-0.068,-1.894,11.85,0.0,0.0,0.0,-7.585,-0.069,-1.298,-4.026,-0.195,0.0,0.0,7.922,2.042,1354.7,998.0,11171.6,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.216,35.216,35.216,35.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.186,0.0,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,3457.6,3457.6,0.0,11.876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.692,52.692,52.692,52.692,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,5.332,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3821.1,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.936,41.936,41.936,41.936,0.0,0.0,0.0,0.0,0.0,0.0,7.633,0.0,0.053,0.0,4.099,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.053,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4855.9,3369.3,4855.9,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.991,58.991,35.552,35.552,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.22,0.794,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.951,0.0,13.834,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3546.2,3546.2,23.508,19.169,0.0,3.499,3.599,0.507,7.507,0.615,9.923,-12.591,0.0,0.0,0.0,8.214,-0.033,4.75,0.0,0.72,0.0,5.064,-7.689,-2.467,0.0,-0.07,-0.475,-0.053,2.763,-0.034,-1.479,11.822,0.0,0.0,0.0,-6.3,-0.029,-1.188,-3.799,-0.168,0.0,3.074,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.895,57.895,34.971,34.971,22.924,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.746,0.7,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.076,0.0,11.957,9.071,0.617,0.0,0.0,106.0,41.0,2072.1,3770.0,3770.0,34.955,20.845,0.0,3.497,3.568,0.501,7.484,0.605,9.791,-12.687,0.0,0.0,0.0,8.63,0.008,4.642,0.0,0.725,0.0,4.731,-7.752,-2.486,0.0,-0.04,-0.468,-0.053,2.704,-0.034,-1.49,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.18,-4.194,-0.17,0.0,2.39,7.825,2.022,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,57.375,57.375,35.127,35.127,22.248,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.886,0.728,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.744,0.0,12.562,9.071,0.617,0.0,0.0,0.0,8.0,2048.7,3769.7,3769.7,25.752,21.422,0.0,3.491,3.553,0.499,7.324,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.634,0.0,0.722,0.0,4.643,-7.768,-2.488,0.0,-0.027,-0.468,-0.053,2.647,-0.033,-1.493,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.168,-4.138,-0.172,0.0,2.557,7.808,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.926,41.926,33.625,33.625,8.301,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,2.929,0.488,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,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.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,7.768,0.0,8.584,9.071,0.649,0.0,0.0,0.0,0.0,2012.3,3486.2,3486.2,17.944,16.314,0.0,2.815,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.368,-0.059,3.444,0.0,0.566,0.0,1.759,-7.591,-2.465,0.0,-0.067,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.192,-6.335,-0.18,0.0,1.986,7.912,2.042,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-space-heater-gas-only.xml,47.262,47.262,30.207,30.207,17.056,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.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1931.2,1785.9,1931.2,16.762,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.823,52.823,30.273,30.273,0.0,22.55,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1943.3,1806.9,1943.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.823,52.823,30.273,30.273,0.0,0.0,0.0,0.0,22.55,0.0,0.0,0.068,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.146,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,18.094,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,1943.3,1806.9,1943.3,17.317,0.0,0.0,3.737,3.636,0.512,7.478,0.63,10.09,-12.691,0.0,0.0,0.0,8.134,-0.073,5.889,0.0,0.727,0.0,0.0,-7.806,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.289,48.289,32.761,32.761,15.529,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2.062,0.342,9.031,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.009,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.541,0.0,6.249,9.071,0.634,0.0,0.0,3737.0,2466.0,1995.5,1993.3,2019.1,3.83,2.738,0.0,2.628,2.856,0.399,5.162,0.432,7.697,-12.831,0.0,0.0,0.0,4.459,-0.123,3.528,0.0,0.588,0.0,9.602,-7.792,-2.505,0.0,-0.339,-0.769,-0.096,1.692,-0.106,-2.36,11.582,0.0,0.0,0.0,-7.925,-0.061,-1.373,-6.01,-0.228,0.0,2.739,7.746,2.002,1354.7,998.0,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,29360.0,5262.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,18129.0,4388.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.61,47.61,47.61,47.61,0.0,0.0,0.0,0.0,0.0,0.0,17.404,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,5986.5,1785.9,5986.5,16.762,0.0,0.0,3.739,3.638,0.512,7.485,0.63,10.09,-12.69,0.0,0.0,0.0,8.129,-0.069,4.808,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,59.503,59.503,33.004,33.004,21.633,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-dehumidifier-ief-portable.xml,34.558,34.558,33.276,33.276,1.282,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.891,1.863,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.678,0.319,0.365,1.513,1.528,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.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,1.136,0.0,31.166,6.562,0.572,0.0,0.0,0.0,0.0,2082.6,2832.7,2832.7,9.452,15.098,0.0,1.735,1.623,0.0,0.0,0.396,4.94,-4.836,0.0,0.0,0.0,1.255,-0.412,1.053,0.285,0.394,0.0,0.032,-4.853,-0.768,0.0,0.504,-0.045,0.0,0.0,0.21,2.81,17.335,0.0,0.0,0.0,1.768,-0.407,-0.333,-2.267,-0.095,0.0,0.356,9.587,1.879,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.592,34.592,33.329,33.329,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.89,1.863,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.733,0.319,0.365,1.513,1.528,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.146,6.562,0.572,0.0,0.0,0.0,0.0,2101.2,2832.7,2832.7,9.474,15.098,0.0,1.751,1.637,0.0,0.0,0.401,4.981,-4.876,0.0,0.0,0.0,1.264,-0.414,1.063,0.301,0.398,0.0,0.031,-4.925,-0.775,0.0,0.52,-0.031,0.0,0.0,0.214,2.849,17.295,0.0,0.0,0.0,1.774,-0.409,-0.324,-2.254,-0.091,0.0,0.356,9.534,1.872,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.543,34.543,33.19,33.19,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.876,1.86,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.61,0.319,0.365,1.513,1.528,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.213,0.0,31.111,6.562,0.572,0.0,0.0,0.0,0.0,1980.3,2844.4,2844.4,9.538,15.098,0.0,1.743,1.628,0.0,0.0,0.396,4.927,-4.905,0.0,0.0,0.0,1.264,-0.406,1.052,0.282,0.395,0.0,0.034,-4.716,-0.773,0.0,0.519,-0.034,0.0,0.0,0.211,2.816,17.266,0.0,0.0,0.0,1.796,-0.401,-0.329,-2.254,-0.092,0.0,0.356,9.535,1.874,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-appliances-dehumidifier.xml,34.514,34.514,33.243,33.243,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.88,1.86,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.659,0.319,0.365,1.513,1.528,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.101,6.562,0.572,0.0,0.0,0.0,0.0,1974.6,2844.4,2844.4,9.517,15.098,0.0,1.765,1.647,0.0,0.0,0.401,4.987,-4.952,0.0,0.0,0.0,1.286,-0.408,1.066,0.305,0.4,0.0,0.032,-4.895,-0.782,0.0,0.538,-0.017,0.0,0.0,0.215,2.867,17.219,0.0,0.0,0.0,1.808,-0.403,-0.318,-2.243,-0.088,0.0,0.355,9.474,1.865,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-appliances-gas.xml,59.503,59.503,33.004,33.004,26.499,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.633,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-modified.xml,58.121,58.121,36.688,36.688,21.434,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,4.363,0.828,9.542,0.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.434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.072,0.0,14.371,9.641,0.614,0.0,0.0,0.0,0.0,2140.5,3491.9,3491.9,22.968,19.12,0.0,3.567,3.65,0.514,7.553,0.632,10.118,-12.663,0.0,0.0,0.0,8.349,-0.066,5.408,0.0,0.0,0.0,4.675,-9.525,-2.496,0.0,-0.055,-0.462,-0.052,2.69,-0.026,-1.398,11.75,0.0,0.0,0.0,-6.332,-0.062,-1.296,-3.913,0.0,0.0,3.17,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.37,52.37,28.164,28.164,24.206,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,3.924,0.724,7.785,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.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.669,0.0,12.543,7.75,0.616,0.0,0.0,0.0,0.0,1855.8,2937.4,2937.4,23.37,17.9,0.0,3.527,3.626,0.51,7.475,0.627,10.055,-12.698,0.0,0.0,0.0,8.262,-0.061,5.397,0.0,0.0,0.0,5.206,-7.087,-2.503,0.0,0.014,-0.408,-0.044,2.838,-0.012,-1.231,11.715,0.0,0.0,0.0,-6.088,-0.057,-1.245,-3.591,0.0,0.0,2.836,5.975,2.006,0.0,0.0,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-oil.xml,59.503,59.503,33.004,33.004,21.633,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-propane.xml,59.503,59.503,33.004,33.004,21.633,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-appliances-wood.xml,59.503,59.503,33.004,33.004,21.633,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.335,0.821,9.016,0.0,0.0,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.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,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.258,0.0,14.239,9.075,0.614,0.0,0.0,0.0,0.0,1992.2,3226.0,3226.0,22.969,19.203,0.0,3.564,3.649,0.514,7.548,0.632,10.116,-12.669,0.0,0.0,0.0,8.347,-0.066,4.985,0.0,0.487,0.0,4.712,-9.415,-2.497,0.0,-0.049,-0.458,-0.051,2.7,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.314,-0.062,-1.196,-3.891,-0.11,0.0,3.147,8.342,2.013,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-atticroof-cathedral.xml,61.238,61.238,35.599,35.599,25.639,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.111,0.771,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.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,0.0,0.0,23.991,0.0,13.195,9.075,0.616,0.0,0.0,0.0,0.0,2123.4,3227.4,3227.4,22.717,16.531,6.779,0.0,4.237,0.513,7.504,0.634,12.709,-15.639,0.0,0.0,0.0,8.361,-0.09,9.326,0.0,0.73,0.0,0.0,-8.941,-2.505,0.162,0.0,-0.491,-0.046,2.78,-0.014,-1.137,15.661,0.0,0.0,0.0,-6.3,-0.065,-2.048,-4.743,-0.156,0.0,0.0,7.839,2.004,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,62.949,62.949,40.328,40.328,22.621,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.739,0.92,8.923,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.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,21.169,0.0,15.797,9.023,0.614,0.0,0.0,0.0,0.0,2397.3,3596.6,3596.6,22.528,19.772,4.574,1.169,5.574,0.521,7.699,0.639,14.508,-17.155,0.0,0.0,0.0,8.591,-0.088,7.116,0.0,0.733,0.0,0.274,-10.231,-3.183,0.013,0.023,-0.555,-0.052,2.707,-0.027,-1.833,17.683,0.0,0.0,0.0,-6.319,-0.082,-1.664,-5.237,-0.165,0.0,0.092,8.933,2.568,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.356,54.356,34.89,34.89,19.466,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.616,0.659,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,19.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,0.0,0.0,18.216,0.0,11.263,9.075,0.615,0.0,0.0,0.0,0.0,2121.3,2762.8,2762.8,17.648,12.809,6.045,0.0,3.619,0.509,7.465,0.625,10.03,-12.687,0.0,0.0,0.0,8.23,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.317,0.0,-0.439,-0.048,2.755,-0.02,-1.334,11.721,0.0,0.0,0.0,-6.221,-0.05,-1.135,-3.78,-0.161,0.0,0.0,7.871,2.01,1354.8,997.6,11171.5,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-ceiling.xml,38.278,38.278,33.512,33.512,4.766,0.0,0.0,0.0,0.0,0.0,0.0,0.021,0.0,0.0,9.634,2.01,6.716,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.402,0.0,33.547,6.562,0.581,0.0,0.0,0.0,0.0,2084.5,3439.1,3439.1,14.269,20.469,0.0,7.073,1.549,0.0,0.0,0.337,4.353,-5.956,0.0,0.0,0.0,0.658,-0.419,0.994,0.0,0.4,0.0,0.117,-4.054,-0.857,0.0,3.731,0.15,0.0,0.0,0.215,2.993,16.24,0.0,0.0,0.0,2.005,-0.41,-0.254,-2.059,-0.042,0.0,0.39,9.111,1.79,1354.8,997.6,9789.2,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,25263.0,63.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,12699.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-radiant-barrier.xml,37.12,37.12,33.067,33.067,4.054,0.0,0.0,0.0,0.0,0.0,0.0,0.017,0.0,0.0,9.27,1.934,6.715,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.743,0.0,32.244,6.562,0.58,0.0,0.0,0.0,0.0,1884.8,3234.7,3234.7,13.389,18.803,0.0,5.961,1.573,0.0,0.0,0.336,4.356,-5.864,0.0,0.0,0.0,0.844,-0.36,0.991,0.0,0.396,0.0,0.1,-3.98,-0.839,0.0,2.328,0.141,0.0,0.0,0.206,2.913,16.307,0.0,0.0,0.0,2.092,-0.353,-0.276,-2.136,-0.052,0.0,0.375,9.183,1.808,1354.8,997.6,9789.2,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.882,56.882,35.057,35.057,21.825,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.724,0.679,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,21.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,20.425,0.0,11.582,9.075,0.616,0.0,0.0,0.0,0.0,2115.1,2855.4,2855.4,19.246,14.086,0.0,5.473,3.627,0.51,7.486,0.627,10.052,-12.69,0.0,0.0,0.0,8.297,-0.061,4.803,0.0,0.729,0.0,2.655,-8.912,-2.5,0.0,-1.406,-0.407,-0.044,2.853,-0.012,-1.237,11.723,0.0,0.0,0.0,-6.053,-0.053,-1.113,-3.567,-0.159,0.0,1.398,7.868,2.009,1354.8,997.6,11171.6,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.482,57.482,35.385,35.385,22.097,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,3.843,0.708,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.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.691,0.0,12.183,9.075,0.803,0.0,0.0,0.0,0.0,2132.9,2979.5,2979.5,21.537,15.322,0.0,3.899,3.639,0.512,7.516,0.63,10.087,-12.691,0.0,0.0,0.0,8.312,-0.061,4.804,0.0,0.729,0.0,4.07,-8.579,-2.5,0.0,-0.51,-0.431,-0.047,2.775,-0.018,-1.303,11.723,0.0,0.0,0.0,-6.195,-0.057,-1.134,-3.721,-0.161,0.0,1.888,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.728,59.728,37.442,37.442,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,1.735,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.309,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.281,36.281,24.654,24.654,11.628,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.608,0.203,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.779,0.0,3.104,9.374,0.73,0.0,0.0,0.0,0.0,1566.1,2029.3,2029.3,7.666,6.064,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.663,-4.243,-1.184,0.0,-0.926,-0.232,0.0,0.0,-0.054,-0.108,1.309,0.0,0.0,-0.939,0.0,-0.032,-0.284,-0.431,0.0,0.0,0.571,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.49,31.49,25.137,25.137,6.353,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.132,0.317,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.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,5.893,0.0,5.185,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2173.7,2173.7,9.392,10.995,0.0,-0.004,3.306,0.0,0.0,1.395,3.739,-4.206,0.0,0.0,4.619,0.0,-0.073,1.254,0.0,0.793,0.0,2.37,-6.27,-1.137,0.0,-0.0,-0.456,0.0,0.0,-0.421,-0.19,3.999,0.0,0.0,-3.038,0.0,-0.068,-0.245,-1.295,-0.13,0.0,0.5,5.73,0.889,1354.8,997.6,11171.5,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.408,49.408,24.666,24.666,24.742,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.472,0.171,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.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,22.943,0.0,2.566,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2202.7,2202.7,11.077,8.634,0.0,5.361,4.204,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.061,1.7,0.0,0.0,0.0,11.647,-4.474,-1.246,0.0,-1.198,-0.061,0.0,0.0,-0.055,-0.006,1.194,0.0,0.0,-1.205,0.0,-0.057,-0.192,-0.319,0.0,0.0,0.541,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.836,25.836,24.518,24.518,1.318,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.209,9.586,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,1.221,0.0,3.207,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1858.0,1858.0,3.415,6.065,0.0,0.378,3.173,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.707,0.0,0.0,0.0,0.375,-4.016,-1.12,0.0,-0.827,-0.461,0.0,0.0,-0.075,-0.216,1.396,0.0,0.0,-0.843,0.0,-0.002,-0.391,-0.487,0.0,0.0,0.589,3.657,0.906,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.12,26.12,25.048,25.048,1.072,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.097,0.323,9.538,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.993,0.0,5.15,9.374,0.587,0.0,0.0,0.0,0.0,1571.2,1735.1,1735.1,3.705,4.57,0.0,-0.004,3.203,0.0,0.0,0.373,1.435,-1.384,0.0,0.0,-0.003,0.0,-0.072,1.766,0.0,0.0,0.0,0.309,-3.661,-1.01,0.0,-0.001,-0.567,0.0,0.0,-0.042,-0.366,1.518,0.0,0.0,-0.001,0.0,-0.068,-0.534,-0.686,0.0,0.0,0.916,4.011,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.693,26.693,26.167,26.167,0.526,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.008,0.547,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.485,0.0,9.161,9.374,0.575,0.0,0.0,0.0,0.0,1666.2,2124.8,2124.8,3.251,7.677,0.0,-0.015,2.454,0.0,0.0,0.424,3.908,-2.465,0.0,0.0,-0.01,0.0,-0.394,0.992,0.0,0.666,0.0,0.0,-4.454,-0.746,0.0,-0.01,-1.135,0.0,0.0,-0.045,-1.18,5.738,0.0,0.0,-0.005,0.0,-0.383,-0.406,-1.699,-0.406,0.0,0.0,7.512,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.816,19.816,18.588,18.588,1.228,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.417,0.4,4.528,0.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.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,1.135,0.0,7.034,4.144,0.585,0.0,0.0,0.0,0.0,1141.0,1670.8,1670.8,3.916,7.194,0.0,-0.018,2.58,0.0,0.0,0.426,4.09,-3.005,0.0,0.0,-0.016,0.0,-0.363,1.303,0.0,0.742,0.0,0.0,-3.754,-0.915,0.0,-0.013,-0.822,0.0,0.0,-0.009,-0.71,5.197,0.0,0.0,-0.012,0.0,-0.355,-0.398,-1.471,-0.283,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.348,27.348,26.69,26.69,0.658,0.0,0.0,0.0,0.0,0.0,0.0,0.032,0.0,0.0,3.237,0.81,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,4.0,1681.2,2163.6,2163.6,3.451,7.021,0.0,-0.016,2.479,0.0,0.0,0.425,3.942,-2.554,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.573,-0.772,0.0,-0.011,-1.086,0.0,0.0,-0.04,-1.109,5.648,0.0,0.0,-0.007,0.0,-0.383,-0.507,-1.681,-0.386,0.0,0.0,7.394,1.254,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.132,28.132,27.429,27.429,0.703,0.0,0.0,0.0,0.0,0.0,0.0,0.056,0.0,0.0,3.846,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.624,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,1710.3,2342.2,2342.2,3.597,8.161,0.0,-0.015,2.477,0.0,0.0,0.424,3.925,-2.557,0.0,0.0,-0.01,0.0,-0.39,1.277,0.0,0.676,0.0,0.036,-4.554,-0.768,0.0,-0.01,-1.088,0.0,0.0,-0.041,-1.126,5.645,0.0,0.0,-0.005,0.0,-0.38,-0.51,-1.69,-0.389,0.0,1.23,7.413,1.258,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.972,26.972,0.624,0.0,0.0,0.0,0.0,0.0,0.0,0.075,0.0,0.0,3.477,0.81,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,4.0,1690.5,2229.8,2229.8,3.449,7.021,0.0,-0.016,2.479,0.0,0.0,0.425,3.942,-2.554,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.573,-0.772,0.0,-0.011,-1.086,0.0,0.0,-0.04,-1.109,5.648,0.0,0.0,-0.007,0.0,-0.383,-0.507,-1.681,-0.386,0.0,0.0,7.394,1.254,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.742,31.742,31.229,31.229,0.512,0.0,0.0,0.0,0.0,0.0,0.033,0.032,0.0,0.0,7.637,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.602,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,2071.4,3379.2,3379.2,3.53,8.161,0.0,-0.015,2.475,0.0,0.0,0.424,3.924,-2.553,0.0,0.0,-0.011,0.0,-0.391,1.276,0.0,0.675,0.0,0.014,-4.552,-0.768,0.0,-0.01,-1.091,0.0,0.0,-0.041,-1.127,5.65,0.0,0.0,-0.005,0.0,-0.381,-0.511,-1.69,-0.389,0.0,1.23,7.415,1.258,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.784,27.784,27.271,27.271,0.512,0.0,0.0,0.0,0.0,0.0,0.033,0.032,0.0,0.0,3.679,0.917,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.602,0.0,10.203,9.374,0.577,0.0,0.0,0.0,11.0,1703.8,2296.5,2296.5,3.53,8.161,0.0,-0.015,2.475,0.0,0.0,0.424,3.924,-2.553,0.0,0.0,-0.011,0.0,-0.391,1.276,0.0,0.675,0.0,0.014,-4.552,-0.768,0.0,-0.01,-1.091,0.0,0.0,-0.041,-1.127,5.65,0.0,0.0,-0.005,0.0,-0.381,-0.511,-1.69,-0.389,0.0,1.23,7.415,1.258,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.1,23.1,22.555,22.555,0.545,0.0,0.0,0.0,0.0,0.0,0.0,0.026,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1520.9,1332.5,1520.9,3.443,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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.156,23.156,22.575,22.575,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.516,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1528.7,1332.5,1528.7,3.595,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.03,-6.086,-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.107,23.107,22.588,22.588,0.519,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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.085,23.085,22.709,22.709,0.377,0.0,0.0,0.0,0.0,0.0,0.121,0.059,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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.107,23.107,22.59,22.59,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.061,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.487,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.0,-6.086,-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,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,23.006,23.006,22.582,22.582,0.424,0.0,0.0,0.0,0.0,0.0,0.027,0.026,0.0,0.0,0.0,0.0,9.447,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.497,0.0,0.0,9.374,0.492,0.0,0.0,0.0,0.0,1533.0,1332.5,1533.0,3.527,0.0,0.0,-0.003,3.527,0.0,0.0,0.502,5.018,-4.244,0.0,0.0,-0.003,0.0,-0.002,1.705,0.0,0.982,0.0,0.012,-6.086,-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.639,26.639,26.639,26.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.218,0.803,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.897,9.374,0.585,0.0,0.0,0.0,4.0,1683.2,2004.9,2004.9,0.0,7.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.009,-1.044,0.0,0.0,-0.044,-1.101,5.524,0.0,0.0,-0.005,0.0,-0.342,-0.5,-1.677,-0.374,0.0,0.0,7.329,1.236,1354.8,997.6,11171.5,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.35,27.35,27.35,27.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.824,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1735.4,2263.5,2263.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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.877,26.877,26.877,26.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.456,0.803,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.897,9.374,0.585,0.0,0.0,0.0,4.0,1699.2,2068.0,2068.0,0.0,7.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.009,-1.044,0.0,0.0,-0.044,-1.101,5.524,0.0,0.0,-0.005,0.0,-0.342,-0.5,-1.677,-0.374,0.0,0.0,7.329,1.236,1354.8,997.6,11171.5,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.113,31.113,31.113,31.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.587,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1991.4,3251.6,3251.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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.184,27.184,27.184,27.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.658,0.909,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.11,9.374,0.585,0.0,0.0,0.0,11.0,1724.1,2220.0,2220.0,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.049,0.0,0.0,-0.045,-1.12,5.527,0.0,0.0,-0.004,0.0,-0.341,-0.504,-1.686,-0.377,0.0,1.224,7.35,1.24,1354.8,997.6,11171.5,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.91,34.086,26.107,19.282,0.637,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,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.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,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.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.392,28.392,28.392,28.392,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.328,0.0,0.0,2.415,2.868,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.588,0.0,8.984,9.374,0.577,0.0,0.0,0.0,0.0,1731.7,2025.8,2025.8,3.449,7.707,0.0,-0.016,2.488,0.0,0.0,0.427,3.957,-2.568,0.0,0.0,-0.012,0.0,-0.388,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.01,-1.077,0.0,0.0,-0.038,-1.093,5.634,0.0,0.0,-0.006,0.0,-0.378,-0.502,-1.681,-0.383,0.0,0.0,7.368,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.637,31.637,16.644,16.644,14.993,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.01,0.548,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.58,0.0,14.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.535,0.0,9.264,9.374,2.266,0.0,0.0,0.0,0.0,1020.3,1539.9,1539.9,3.498,7.734,0.0,-0.017,2.441,0.0,0.0,0.425,3.917,-2.473,0.0,0.0,-0.012,0.0,-0.414,2.026,0.0,0.0,0.0,0.0,-4.709,-0.753,0.0,-0.012,-1.134,0.0,0.0,-0.041,-1.149,5.73,0.0,0.0,-0.007,0.0,-0.404,-0.925,-1.711,0.0,0.0,0.0,7.747,1.273,1354.8,997.6,11172.0,3093.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-laundry-room.xml,29.523,29.523,16.46,16.46,13.063,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.863,0.51,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.749,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.692,0.0,8.568,9.374,0.569,0.0,0.0,0.0,0.0,1011.4,1528.6,1528.6,3.655,7.615,0.0,-0.017,2.502,0.0,0.0,0.426,3.98,-2.665,0.0,0.0,-0.013,0.0,-0.393,2.064,0.0,0.0,0.0,0.0,-4.482,-0.801,0.0,-0.012,-1.03,0.0,0.0,-0.033,-1.02,5.538,0.0,0.0,-0.008,0.0,-0.383,-0.847,-1.646,0.0,0.0,0.0,6.88,1.226,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-mechvent-multiple.xml,50.809,50.809,30.633,30.633,20.176,0.0,0.0,0.0,0.0,0.0,0.0,0.058,0.0,0.0,2.787,0.3,9.566,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,8.014,0.0,0.0,0.0,0.0,12.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.425,0.0,5.07,9.374,0.616,0.0,0.0,0.0,0.0,1866.4,2259.8,2259.8,7.611,8.992,0.0,-0.017,2.792,0.0,0.0,0.407,4.192,-4.241,0.0,0.0,-0.02,0.0,-0.261,0.209,0.0,12.332,0.0,0.0,-6.697,-1.195,0.0,-0.012,-0.136,0.0,0.0,0.06,0.131,3.961,0.0,0.0,-0.016,0.0,-0.255,-0.016,-0.753,-4.193,0.0,0.0,5.309,0.832,1354.8,997.6,11171.6,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.425,32.425,27.296,27.296,5.129,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.673,0.455,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.163,0.0,0.0,0.0,0.0,3.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.075,0.0,7.54,9.374,0.586,0.0,0.0,0.0,0.0,1729.0,2025.3,2025.3,3.846,7.873,0.0,-0.018,2.631,0.0,0.0,0.435,4.153,-3.003,0.0,0.0,-0.016,0.0,-0.365,1.422,0.0,1.938,0.0,0.0,-5.244,-0.913,0.0,-0.013,-0.791,0.0,0.0,-0.003,-0.672,5.199,0.0,0.0,-0.011,0.0,-0.356,-0.419,-1.404,-1.792,0.0,0.0,6.732,1.113,1354.8,997.6,11171.6,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.516,30.516,27.12,27.12,3.397,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.548,0.423,9.547,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.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,3.145,0.0,7.202,9.374,0.596,0.0,0.0,0.0,0.0,1648.3,2018.5,2018.5,5.706,8.494,0.0,-0.016,2.686,0.0,0.0,0.4,4.052,-3.58,0.0,0.0,-0.018,0.0,-0.254,1.401,0.0,5.314,0.0,0.0,-5.778,-1.034,0.0,-0.012,-0.569,0.0,0.0,-0.006,-0.508,4.622,0.0,0.0,-0.014,0.0,-0.248,-0.325,-1.403,-1.51,0.0,0.0,6.209,0.992,1354.8,997.6,11171.6,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-battery.xml,27.606,3.158,26.969,2.521,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.862,0.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1705.3,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,1354.8,997.6,11171.5,3093.4,50.135,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-pv.xml,26.743,2.296,26.107,1.659,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.683,30.683,17.571,17.571,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1056.9,1589.2,1589.2,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,29.587,29.587,16.475,16.475,13.112,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.875,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.8,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.739,0.0,8.655,9.374,0.57,0.0,0.0,0.0,0.0,1004.2,1536.5,1536.5,3.648,7.729,0.0,-0.017,2.519,0.0,0.0,0.426,3.993,-2.701,0.0,0.0,-0.014,0.0,-0.385,1.612,0.0,0.698,0.0,0.0,-4.673,-0.811,0.0,-0.012,-1.011,0.0,0.0,-0.032,-1.001,5.501,0.0,0.0,-0.009,0.0,-0.376,-0.611,-1.647,-0.356,0.0,0.0,7.088,1.215,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.xml,26.743,26.743,26.107,26.107,0.637,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.958,0.534,9.528,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.588,0.0,8.985,9.374,0.577,0.0,0.0,0.0,0.0,1655.4,2196.6,2196.6,3.449,7.707,0.0,-0.016,2.477,0.0,0.0,0.425,3.939,-2.553,0.0,0.0,-0.012,0.0,-0.393,1.28,0.0,0.678,0.0,0.0,-4.571,-0.771,0.0,-0.011,-1.088,0.0,0.0,-0.04,-1.111,5.65,0.0,0.0,-0.007,0.0,-0.382,-0.507,-1.681,-0.387,0.0,0.0,7.396,1.255,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.831,50.831,34.428,34.428,16.404,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.283,0.575,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.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.298,0.0,9.848,9.11,0.614,0.0,0.0,0.0,0.0,2111.0,3027.6,3027.6,17.841,15.535,0.0,2.437,5.073,0.298,4.383,0.64,7.129,-8.585,0.0,0.0,0.0,5.037,-0.068,7.099,0.0,0.73,0.0,2.273,-8.897,-2.5,0.0,0.011,-0.639,-0.025,1.625,-0.016,-1.021,7.911,0.0,0.0,0.0,-3.958,-0.064,-1.668,-3.256,-0.161,0.0,1.326,7.882,2.01,1354.8,997.6,11171.6,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.443,97.443,37.092,37.092,60.351,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.002,0.939,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.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.276,0.0,15.912,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4261.1,4261.1,36.45,28.471,49.534,0.0,2.942,0.289,3.703,0.668,4.716,-5.325,0.0,0.0,0.0,3.449,-0.843,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.503,0.0,-0.157,0.004,1.54,0.119,0.033,5.085,0.0,0.0,0.0,-4.268,-0.805,-0.851,-1.334,-0.093,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.183,42.183,29.757,29.757,12.427,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.738,0.459,9.29,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.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.523,0.0,7.818,9.225,0.614,0.0,0.0,0.0,0.0,1828.5,2548.4,2548.4,13.175,10.697,0.0,2.351,2.371,0.292,4.25,0.625,3.569,-4.311,0.0,0.0,0.0,4.698,-0.043,3.042,0.0,0.728,0.0,3.166,-7.556,-1.812,0.0,0.025,-0.283,-0.027,1.563,-0.022,-0.602,3.963,0.0,0.0,0.0,-4.073,-0.041,-0.764,-1.603,-0.165,0.0,1.612,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.183,42.183,29.757,29.757,12.427,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.738,0.459,9.29,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.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.523,0.0,7.818,9.225,0.614,0.0,0.0,0.0,0.0,1828.5,2548.4,2548.4,13.175,10.697,0.0,2.351,2.371,0.292,4.25,0.625,3.569,-4.311,0.0,0.0,0.0,4.698,-0.043,3.042,0.0,0.728,0.0,3.166,-7.556,-1.812,0.0,0.025,-0.283,-0.027,1.563,-0.022,-0.602,3.963,0.0,0.0,0.0,-4.073,-0.041,-0.764,-1.603,-0.165,0.0,1.612,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.121,51.121,21.423,21.423,29.697,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.404,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.357,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.6,1017.3,1375.6,16.511,0.0,0.0,3.746,3.645,0.513,7.509,0.631,10.102,-12.69,0.0,0.0,0.0,8.175,-0.066,4.807,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.316,52.316,21.433,21.433,30.883,0.0,0.0,0.0,0.0,0.0,0.0,0.157,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.589,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.403,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.503,0.631,10.097,-12.691,0.0,0.0,0.0,8.176,-0.066,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,31.989,31.989,31.989,31.989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.177,0.714,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.682,9.074,0.662,2.814,0.0,0.0,0.0,2069.0,2818.5,2818.5,0.0,19.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.074,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.745,-0.164,0.0,3.615,8.606,2.036,1354.8,997.6,11184.5,2566.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-gshp.xml,38.021,38.021,38.021,38.021,0.0,0.0,0.0,0.0,0.0,0.0,5.552,0.566,0.0,0.0,3.04,0.988,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,13.555,9.073,0.614,2.863,0.0,0.0,0.0,3419.5,2343.1,3419.5,22.235,16.609,0.0,3.593,3.642,0.513,7.526,0.63,10.095,-12.683,0.0,0.0,0.0,8.321,-0.063,4.805,0.0,0.729,0.0,3.701,-8.59,-2.499,0.0,0.005,-0.446,-0.049,2.735,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.26,-0.059,-1.145,-3.86,-0.163,0.0,2.129,8.481,2.01,1354.8,997.6,11186.3,2566.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,18787.0,5329.0,7037.0,0.0,207.0,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.254,56.254,29.571,29.571,26.682,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.353,0.827,2.675,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,24.987,0.0,14.378,9.086,1.809,2.921,0.0,0.0,0.0,1884.0,3127.9,3127.9,25.892,19.484,0.0,3.523,3.635,0.511,7.505,0.628,10.069,-12.724,0.0,0.0,0.0,8.338,-0.052,4.795,0.0,0.727,0.0,5.643,-5.455,-2.509,0.0,-0.001,-0.405,-0.044,2.871,-0.011,-1.224,11.689,0.0,0.0,0.0,-6.044,-0.049,-1.099,-3.608,-0.154,0.0,3.142,7.597,2.0,1354.7,997.5,11146.8,2557.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.582,33.582,33.582,33.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.349,1.145,6.811,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.077,9.08,0.0,2.843,0.0,0.0,0.0,1932.8,3239.8,3239.8,0.0,19.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,-0.447,-0.049,2.73,-0.026,-1.379,11.85,0.0,0.0,0.0,-6.828,-0.064,-1.163,-3.706,-0.163,0.0,3.168,8.336,2.036,1354.8,997.6,11133.3,2554.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-var-speed.xml,31.138,31.138,31.138,31.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,0.287,6.808,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.459,9.074,0.662,2.836,0.0,0.0,0.0,2069.0,2627.3,2627.3,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.115,-0.453,-0.05,2.716,-0.027,-1.396,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.17,-3.751,-0.164,0.0,4.438,8.613,2.036,1354.8,997.6,11182.6,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.xml,33.61,33.61,33.61,33.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.401,1.162,6.771,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.296,9.074,0.662,2.892,0.0,0.0,0.0,2069.0,3252.8,3252.8,0.0,19.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.057,-0.453,-0.05,2.715,-0.028,-1.397,11.85,0.0,0.0,0.0,-6.838,-0.063,-1.17,-3.747,-0.164,0.0,3.204,8.628,2.036,1354.8,997.6,11182.2,2566.0,0.0,0.0,24000.0,0.0,6.8,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.722,55.722,33.436,33.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,6.745,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,6.634,0.614,0.0,0.0,0.0,0.0,2094.2,3386.2,3386.2,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.9,53.9,21.421,21.421,32.479,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.157,0.0,13.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.16,0.0,0.0,9.099,2.376,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.745,3.645,0.513,7.514,0.631,10.106,-12.669,0.0,0.0,0.0,8.166,-0.067,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.0,852.3,9358.0,2147.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-dse.xml,58.872,58.872,21.458,21.458,37.414,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,24.005,0.0,13.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,16.203,0.0,0.0,9.103,2.279,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.745,3.646,0.513,7.514,0.631,10.108,-12.669,0.0,0.0,0.0,8.168,-0.068,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,1069.3,770.5,8867.6,2034.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-outside.xml,55.441,55.441,21.423,21.423,34.018,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.404,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.357,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.6,1017.3,1375.6,16.511,0.0,0.0,3.746,3.645,0.513,7.509,0.631,10.102,-12.69,0.0,0.0,0.0,8.175,-0.066,4.807,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.277,54.277,21.42,21.42,32.857,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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.948,0.0,13.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,15.982,0.0,0.0,9.105,2.704,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.745,3.646,0.513,7.516,0.631,10.112,-12.663,0.0,0.0,0.0,8.166,-0.07,5.894,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,8810.3,2021.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.218,46.218,21.429,21.429,24.789,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.109,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.987,0.0,0.0,9.08,0.787,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.644,0.513,7.507,0.631,10.101,-12.69,0.0,0.0,0.0,8.177,-0.066,5.889,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.4,721.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.035,54.035,21.422,21.422,32.613,0.0,0.0,0.0,0.0,0.0,0.0,0.146,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.204,0.0,13.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,16.203,0.0,0.0,9.103,2.279,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.745,3.646,0.513,7.514,0.631,10.108,-12.669,0.0,0.0,0.0,8.168,-0.068,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,1069.3,770.5,8867.6,2034.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-jacket-electric.xml,57.883,57.883,35.383,35.383,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.221,0.794,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.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.071,0.0,13.787,9.075,0.295,0.0,0.0,0.0,0.0,2129.6,3363.0,3363.0,23.085,18.844,0.0,3.553,3.643,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.326,-0.064,4.806,0.0,0.729,0.0,4.878,-8.733,-2.499,0.0,-0.032,-0.445,-0.049,2.738,-0.021,-1.345,11.73,0.0,0.0,0.0,-6.252,-0.06,-1.144,-3.806,-0.163,0.0,3.064,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,63.897,63.897,26.792,26.792,37.104,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.321,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,22.902,0.0,14.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.447,0.0,14.2,9.075,2.727,0.0,0.0,0.0,0.0,1464.4,3100.9,3100.9,23.58,19.312,0.0,3.551,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.328,-0.062,5.889,0.0,0.729,0.0,4.965,-9.538,-2.499,0.0,-0.039,-0.447,-0.05,2.732,-0.022,-1.357,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.422,-3.837,-0.163,0.0,3.145,8.405,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.157,56.157,29.456,29.456,26.701,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.806,0.696,3.237,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,25.005,0.0,12.119,9.128,1.31,0.0,0.0,0.0,0.0,1880.5,3031.4,3031.4,25.325,18.732,0.0,3.522,3.636,0.512,7.509,0.627,10.062,-12.738,0.0,0.0,0.0,8.35,-0.049,4.794,0.0,0.727,0.0,5.643,-5.436,-2.509,0.0,0.024,-0.396,-0.042,2.892,-0.011,-1.211,11.675,0.0,0.0,0.0,-6.001,-0.046,-1.093,-3.45,-0.153,0.0,2.758,5.465,2.001,1354.8,997.6,10779.2,2473.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.83,53.83,21.424,21.424,32.407,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.421,0.0,12.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,16.391,0.0,0.0,9.102,1.921,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.825,0.0,0.0,3.745,3.645,0.513,7.513,0.631,10.105,-12.676,0.0,0.0,0.0,8.17,-0.066,5.891,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,1074.9,775.0,8916.1,2046.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,57.773,57.773,35.488,35.488,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.797,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.87,0.0,13.895,8.838,0.615,0.0,0.0,0.0,0.0,2129.1,3368.6,3368.6,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,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,18787.0,5329.0,7037.0,0.0,207.0,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.904,46.904,23.35,23.35,23.555,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,1.925,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.629,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.573,0.0,0.0,9.066,2.829,0.0,5.893,0.0,0.0,2115.1,1482.3,2115.1,16.778,0.0,0.0,3.745,3.645,0.513,7.511,0.631,10.103,-12.678,0.0,0.0,0.0,8.172,-0.066,5.89,0.0,0.729,0.0,0.0,-9.474,-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.5,3919.2,899.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-none.xml,46.71,46.71,24.456,24.456,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.215,0.794,0.0,0.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.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,13.852,0.0,0.0,0.0,0.0,0.0,0.0,1360.8,2958.6,2958.6,23.072,18.86,0.0,3.557,3.646,0.513,7.537,0.631,10.105,-12.683,0.0,0.0,0.0,8.335,-0.063,5.405,0.0,0.0,0.0,4.832,-8.819,-2.499,0.0,-0.037,-0.449,-0.05,2.726,-0.022,-1.358,11.73,0.0,0.0,0.0,-6.271,-0.06,-1.281,-3.829,0.0,0.0,3.063,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,57.945,57.945,35.66,35.66,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.943,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.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,20.87,0.0,13.895,9.017,0.615,0.0,0.0,0.0,0.0,2130.9,3369.5,3369.5,23.033,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.525,57.525,35.24,35.24,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,8.532,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.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,20.87,0.0,13.895,9.017,0.615,0.0,0.0,0.0,0.0,2116.0,3354.9,3354.9,23.033,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.678,72.678,50.392,50.392,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,3891.3,3891.3,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.826,67.826,45.541,45.541,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,18.601,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,3708.1,3708.1,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.678,72.678,50.392,50.392,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,3891.3,3891.3,23.034,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.5,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.192,52.192,29.906,29.906,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.25,0.801,2.888,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.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,20.87,0.0,13.909,9.098,0.628,0.0,6.624,0.0,0.0,2096.5,3089.8,3089.8,23.033,18.91,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.73,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.829,-0.163,0.0,3.084,7.888,2.011,1354.7,997.5,10979.3,2519.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-solar-direct-flat-plate.xml,50.752,50.752,28.476,28.476,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.262,0.804,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.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.861,0.0,13.96,9.207,0.695,0.0,8.339,0.0,0.0,2067.2,3093.3,3093.3,23.033,18.939,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.835,-8.913,-2.499,0.0,-0.036,-0.447,-0.05,2.728,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.836,-0.163,0.0,3.092,7.946,2.011,1354.4,997.2,10199.1,2340.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-solar-direct-ics.xml,52.269,52.269,29.983,29.983,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.255,0.803,2.954,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.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,20.87,0.0,13.932,9.133,0.65,0.0,6.611,0.0,0.0,2119.2,3092.1,3092.1,23.034,18.929,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.83,-0.163,0.0,3.088,7.91,2.011,1354.8,997.6,10721.6,2460.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-fraction.xml,52.366,52.366,29.812,29.812,22.554,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.215,0.793,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.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,21.122,0.0,13.76,9.075,0.215,0.0,5.899,0.0,0.0,1765.6,3369.2,3369.2,23.1,18.831,0.0,3.554,3.644,0.513,7.531,0.631,10.097,-12.69,0.0,0.0,0.0,8.329,-0.062,4.806,0.0,0.729,0.0,4.889,-8.691,-2.5,0.0,-0.031,-0.443,-0.049,2.741,-0.021,-1.344,11.724,0.0,0.0,0.0,-6.247,-0.058,-1.143,-3.801,-0.163,0.0,3.059,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.482,50.482,28.56,28.56,21.923,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.362,0.828,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.923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.53,0.0,14.392,9.186,0.683,0.0,8.337,0.0,0.0,2107.1,3126.8,3126.8,23.067,19.217,0.0,3.559,3.645,0.513,7.538,0.63,10.097,-12.669,0.0,0.0,0.0,8.323,-0.061,4.806,0.0,0.729,0.0,4.767,-9.207,-2.496,0.0,-0.047,-0.455,-0.051,2.709,-0.025,-1.385,11.744,0.0,0.0,0.0,-6.301,-0.057,-1.159,-3.9,-0.165,0.0,3.167,8.472,2.013,1354.2,997.1,10324.1,2369.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-solar-thermosyphon-flat-plate.xml,50.468,50.468,28.191,28.191,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.261,0.804,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.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,13.957,9.2,0.691,0.0,8.3,0.0,0.0,2067.6,3061.2,3061.2,23.033,18.939,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.835,-8.912,-2.499,0.0,-0.036,-0.447,-0.05,2.728,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.836,-0.163,0.0,3.092,7.942,2.011,1354.4,997.2,10241.0,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.631,64.631,26.844,26.844,22.506,0.0,0.0,0.0,0.0,15.282,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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,57.977,57.977,35.698,35.698,22.279,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.801,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.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.864,0.0,13.898,9.049,0.624,0.0,0.0,0.0,0.0,2529.3,3391.5,3391.5,23.009,18.891,0.0,3.555,3.644,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.807,0.0,0.729,0.0,4.835,-8.908,-2.499,0.0,-0.036,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.06,-1.147,-3.829,-0.163,0.0,3.082,7.879,2.011,1354.8,997.6,11206.3,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.02,58.02,35.786,35.786,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.253,0.802,9.089,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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,13.921,9.075,0.692,0.0,0.0,0.0,0.0,2172.7,3547.3,3547.3,23.02,18.908,0.0,3.557,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.827,-8.947,-2.499,0.0,-0.035,-0.447,-0.049,2.729,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.266,-0.059,-1.148,-3.833,-0.163,0.0,3.086,7.909,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.356,66.356,26.638,26.638,39.718,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.303,64.303,26.808,26.808,37.495,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.335,0.821,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.781,0.0,14.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.334,0.0,14.26,9.075,2.98,0.0,0.0,0.0,0.0,1464.3,3104.0,3104.0,23.55,19.341,0.0,3.553,3.645,0.513,7.533,0.631,10.1,-12.683,0.0,0.0,0.0,8.329,-0.062,5.89,0.0,0.729,0.0,4.941,-9.636,-2.499,0.0,-0.04,-0.449,-0.05,2.728,-0.022,-1.36,11.73,0.0,0.0,0.0,-6.268,-0.058,-1.424,-3.849,-0.164,0.0,3.155,8.486,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.303,64.303,26.808,26.808,37.495,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.335,0.821,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.781,0.0,14.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.334,0.0,14.26,9.075,2.98,0.0,0.0,0.0,0.0,1464.3,3104.0,3104.0,23.55,19.341,0.0,3.553,3.645,0.513,7.533,0.631,10.1,-12.683,0.0,0.0,0.0,8.329,-0.062,5.89,0.0,0.729,0.0,4.941,-9.636,-2.499,0.0,-0.04,-0.449,-0.05,2.728,-0.022,-1.36,11.73,0.0,0.0,0.0,-6.268,-0.058,-1.424,-3.849,-0.164,0.0,3.155,8.486,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.631,64.631,26.844,26.844,37.788,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.506,0.0,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.116,56.116,28.616,28.616,27.499,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.741,0.682,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.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,11.846,9.216,1.417,0.0,0.0,0.0,0.0,1856.0,3030.5,3030.5,26.694,18.667,0.0,3.507,3.634,0.511,7.505,0.629,10.083,-12.706,0.0,0.0,0.0,8.342,-0.062,4.799,0.0,0.727,0.0,5.801,-4.87,-2.509,0.0,0.036,-0.382,-0.04,2.928,-0.005,-1.136,11.708,0.0,0.0,0.0,-5.941,-0.058,-1.066,-3.317,-0.152,0.0,2.679,5.085,2.0,1354.8,997.6,9995.2,2293.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-operating-mode-heat-pump-only.xml,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.72,0.676,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.771,0.0,11.759,9.132,1.309,0.0,0.0,0.0,0.0,1854.5,3384.8,3384.8,25.444,18.84,0.0,3.517,3.635,0.511,7.509,0.628,10.067,-12.724,0.0,0.0,0.0,8.355,-0.047,4.795,0.0,0.727,0.0,5.793,-4.847,-2.51,0.0,0.04,-0.384,-0.041,2.935,-0.006,-1.165,11.689,0.0,0.0,0.0,-5.944,-0.043,-1.077,-3.398,-0.15,0.0,2.681,5.084,1.999,1354.8,997.6,10745.7,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.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.075,56.075,33.374,33.374,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3278.6,3278.6,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,55.965,55.965,28.432,28.432,27.532,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.72,0.676,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.771,0.0,11.759,9.132,1.309,0.0,0.0,0.0,0.0,1854.5,3384.8,3384.8,25.444,18.84,0.0,3.517,3.635,0.511,7.509,0.628,10.067,-12.724,0.0,0.0,0.0,8.355,-0.047,4.795,0.0,0.727,0.0,5.793,-4.847,-2.51,0.0,0.04,-0.384,-0.041,2.935,-0.006,-1.165,11.689,0.0,0.0,0.0,-5.944,-0.043,-1.077,-3.398,-0.15,0.0,2.681,5.084,1.999,1354.8,997.6,10745.7,2465.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.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.774,51.774,27.728,27.728,24.047,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.062,0.757,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.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.519,0.0,13.145,9.108,0.603,0.0,5.92,0.0,0.0,1856.4,3135.7,3135.7,25.408,18.877,0.0,3.543,3.64,0.512,7.52,0.629,10.078,-12.705,0.0,0.0,0.0,8.33,-0.054,4.8,0.0,0.728,0.0,5.165,-7.514,-2.501,0.0,-0.009,-0.426,-0.047,2.793,-0.017,-1.3,11.708,0.0,0.0,0.0,-6.161,-0.051,-1.126,-3.666,-0.159,0.0,2.942,6.881,2.009,474.2,349.2,3821.8,877.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-with-solar.xml,51.285,51.285,28.322,28.322,22.963,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.394,0.836,1.109,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.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,14.538,9.022,1.967,0.0,8.046,0.0,0.0,1896.1,3141.1,3141.1,25.085,19.317,0.0,3.556,3.646,0.513,7.539,0.63,10.092,-12.686,0.0,0.0,0.0,8.338,-0.056,4.806,0.0,0.729,0.0,4.959,-8.421,-2.498,0.0,-0.042,-0.449,-0.05,2.725,-0.024,-1.374,11.727,0.0,0.0,0.0,-6.263,-0.052,-1.153,-3.893,-0.164,0.0,3.186,8.558,2.011,1354.4,997.3,11681.5,2680.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.xml,56.198,56.198,29.584,29.584,26.613,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.798,0.695,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.919,0.0,12.099,9.12,1.72,0.0,0.0,0.0,0.0,1874.8,3266.4,3266.4,23.533,19.025,0.0,3.526,3.638,0.512,7.512,0.627,10.061,-12.745,0.0,0.0,0.0,8.354,-0.048,4.795,0.0,0.727,0.0,5.628,-5.522,-2.509,0.0,0.026,-0.397,-0.042,2.889,-0.011,-1.216,11.668,0.0,0.0,0.0,-6.004,-0.044,-1.095,-3.485,-0.152,0.0,2.731,5.541,2.001,1354.8,997.6,10838.9,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.547,58.547,35.259,35.259,23.288,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.279,0.808,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.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,21.807,0.0,13.994,9.117,0.021,0.0,0.0,0.0,0.0,4528.3,5544.6,5544.6,30.746,19.706,0.0,3.55,3.644,0.513,7.53,0.631,10.103,-12.683,0.0,0.0,0.0,8.324,-0.062,5.265,0.0,0.776,0.0,5.024,-8.643,-2.504,0.0,-0.033,-0.442,-0.049,2.744,-0.02,-1.335,11.73,0.0,0.0,0.0,-6.246,-0.058,-1.242,-3.793,-0.184,0.0,3.105,8.005,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,57.834,57.834,35.147,35.147,22.687,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.2,0.789,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.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,21.246,0.0,13.695,9.125,0.021,0.0,0.0,0.0,0.0,1991.8,3400.6,3400.6,23.132,18.799,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.328,-0.061,4.805,0.0,0.729,0.0,4.915,-8.585,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.241,-0.058,-1.142,-3.789,-0.162,0.0,3.048,7.6,2.01,1354.8,997.6,10766.3,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.631,64.631,26.844,26.844,22.506,15.282,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.631,64.631,26.844,26.844,22.506,0.0,0.0,15.282,0.0,0.0,0.0,0.371,0.0,0.0,4.367,0.829,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.076,0.0,14.401,9.075,3.625,0.0,0.0,0.0,0.0,1463.9,3111.6,3111.6,23.484,19.407,0.0,3.556,3.646,0.513,7.536,0.631,10.102,-12.683,0.0,0.0,0.0,8.33,-0.062,5.891,0.0,0.729,0.0,4.888,-9.857,-2.498,0.0,-0.044,-0.451,-0.05,2.719,-0.023,-1.37,11.73,0.0,0.0,0.0,-6.281,-0.058,-1.428,-3.875,-0.164,0.0,3.178,8.675,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.51,60.51,26.638,26.638,33.872,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.611,58.611,35.911,35.911,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3435.7,3435.7,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.506,58.506,35.806,35.806,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3431.3,3431.3,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.611,58.611,35.911,35.911,22.701,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,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.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,21.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3435.7,3435.7,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,58.999,58.999,26.638,26.638,32.362,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.257,53.257,26.638,26.638,26.619,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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,50.967,50.967,27.065,27.065,23.902,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.302,0.814,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.337,0.0,1.565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.918,0.0,14.132,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3110.2,3110.2,23.167,19.076,0.0,3.556,3.645,0.513,7.534,0.631,10.098,-12.683,0.0,0.0,0.0,8.329,-0.061,4.807,0.0,0.729,0.0,4.847,-8.879,-2.498,0.0,-0.039,-0.449,-0.05,2.725,-0.023,-1.365,11.73,0.0,0.0,0.0,-6.273,-0.057,-1.151,-3.856,-0.164,0.0,3.124,8.132,2.011,1344.8,989.3,9808.7,2250.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.534,60.534,26.638,26.638,33.896,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.534,60.534,26.638,26.638,22.701,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.198,0.789,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,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.259,0.0,13.687,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3044.8,3044.8,23.134,18.796,0.0,3.552,3.644,0.513,7.529,0.63,10.095,-12.69,0.0,0.0,0.0,8.329,-0.061,4.805,0.0,0.729,0.0,4.917,-8.574,-2.5,0.0,-0.029,-0.442,-0.049,2.746,-0.021,-1.34,11.724,0.0,0.0,0.0,-6.24,-0.057,-1.141,-3.787,-0.162,0.0,3.047,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.425,65.425,40.674,40.674,24.751,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,6.215,1.242,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.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,23.081,0.0,21.529,9.053,0.61,0.0,0.0,0.0,0.0,2295.2,4526.0,4526.0,30.686,27.988,0.0,3.866,7.603,1.094,5.878,0.689,20.501,-24.885,0.0,0.0,0.867,6.708,-0.182,8.998,0.0,0.763,0.0,3.301,-9.755,-2.933,0.0,-0.078,-1.01,-0.101,1.883,-0.02,-1.465,23.449,0.0,0.0,-0.135,-4.742,-0.173,-1.895,-7.243,-0.158,0.0,2.801,8.478,2.336,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.394,73.394,43.956,43.956,29.438,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,6.08,1.21,8.861,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.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.454,0.0,20.959,8.989,0.613,0.0,0.0,0.0,0.0,2519.0,4649.4,4649.4,33.941,28.117,0.0,3.777,7.887,1.072,7.923,0.668,20.532,-25.194,0.0,0.0,0.0,9.057,-0.137,11.175,0.0,0.748,0.0,3.876,-10.96,-3.543,0.0,-0.046,-0.992,-0.094,2.72,-0.016,-1.955,23.371,0.0,0.0,0.0,-6.359,-0.127,-2.414,-7.538,-0.159,0.0,2.718,9.397,2.83,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.678,54.678,30.405,30.405,24.273,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,3.951,0.73,5.474,0.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.273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.732,0.0,12.806,5.267,0.616,0.0,0.0,0.0,0.0,1702.0,3224.0,3224.0,23.625,18.244,0.0,3.533,3.635,0.511,7.499,0.63,10.082,-12.698,0.0,0.0,0.0,8.305,-0.064,4.804,0.0,0.727,0.0,5.232,-7.29,-2.504,0.0,0.001,-0.416,-0.045,2.822,-0.013,-1.251,11.715,0.0,0.0,0.0,-6.117,-0.06,-1.115,-3.598,-0.159,0.0,2.905,6.288,2.006,939.7,637.0,6162.0,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.369,56.369,33.093,33.093,23.276,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.097,0.765,7.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.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.276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.798,0.0,13.346,7.212,0.615,0.0,0.0,0.0,0.0,2063.0,3318.0,3318.0,23.329,18.569,0.0,3.544,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.315,-0.062,4.804,0.0,0.728,0.0,5.035,-8.097,-2.5,0.0,-0.017,-0.432,-0.047,2.777,-0.018,-1.305,11.723,0.0,0.0,0.0,-6.193,-0.058,-1.132,-3.712,-0.161,0.0,2.994,7.081,2.009,1147.2,817.3,8666.8,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.598,59.598,38.291,38.291,21.308,0.0,0.0,0.0,0.0,0.0,0.0,0.352,0.0,0.0,4.4,0.837,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.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.954,0.0,14.455,10.898,0.614,0.0,0.0,0.0,0.0,2184.1,3671.9,3671.9,22.735,19.222,0.0,3.568,3.65,0.514,7.55,0.631,10.108,-12.676,0.0,0.0,0.0,8.341,-0.061,4.808,0.0,0.731,0.0,4.641,-9.709,-2.497,0.0,-0.053,-0.461,-0.051,2.687,-0.026,-1.404,11.737,0.0,0.0,0.0,-6.332,-0.057,-1.163,-3.942,-0.166,0.0,3.17,8.67,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.195,61.195,40.856,40.856,20.34,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.558,0.875,12.384,0.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.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,19.047,0.0,15.027,12.694,0.613,0.0,0.0,0.0,0.0,2527.7,3848.9,3848.9,22.438,19.545,0.0,3.581,3.656,0.515,7.57,0.633,10.127,-12.669,0.0,0.0,0.0,8.363,-0.063,4.813,0.0,0.733,0.0,4.445,-10.517,-2.496,0.0,-0.071,-0.475,-0.053,2.644,-0.03,-1.447,11.744,0.0,0.0,0.0,-6.394,-0.059,-1.177,-4.059,-0.168,0.0,3.259,9.462,2.013,1770.0,1358.2,16181.1,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.121,74.121,36.244,36.244,37.877,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.467,0.855,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.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,14.804,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3550.3,3550.3,29.35,19.593,0.0,17.295,3.593,0.505,7.261,0.621,9.962,-12.802,0.0,0.0,0.0,7.769,-0.077,4.847,0.0,0.734,0.0,6.981,-9.069,-2.542,0.0,0.171,-0.316,-0.031,2.926,0.011,-0.954,11.611,0.0,0.0,0.0,-6.041,-0.067,-0.997,-3.569,-0.139,0.0,2.714,7.714,1.967,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.006,67.006,29.235,29.235,37.771,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.621,0.644,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.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,35.377,0.0,11.026,9.182,0.621,0.0,0.0,0.0,0.0,1765.2,3434.2,3434.2,29.151,21.511,0.0,3.488,3.657,0.0,0.0,0.673,9.524,-13.013,0.0,0.0,29.112,0.0,-0.21,2.054,0.0,0.788,0.0,7.866,-7.475,-1.576,0.0,0.417,-0.07,0.0,0.0,0.095,0.915,10.955,0.0,0.0,-7.98,0.0,-0.205,-0.258,-2.064,-0.085,0.0,2.681,5.729,1.071,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.38,58.38,34.438,34.438,23.942,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.992,0.514,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.942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.415,0.0,8.765,9.075,0.724,0.0,0.0,0.0,0.0,2120.9,2717.7,2717.7,18.031,11.714,0.0,3.529,3.789,0.503,5.851,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.113,-0.271,-0.034,2.45,0.002,-1.099,8.269,0.0,0.0,0.0,-5.619,-0.041,-1.205,-2.608,0.0,0.0,1.274,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.404,59.404,35.71,35.71,23.694,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.23,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,23.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,22.189,0.0,13.807,9.075,0.615,0.0,0.0,0.0,0.0,2134.2,3394.0,3394.0,23.768,19.124,0.0,3.544,3.642,0.513,7.527,0.63,10.093,-12.69,0.0,0.0,0.0,8.332,-0.061,5.886,0.0,0.728,0.0,5.117,-8.911,-2.5,0.0,-0.028,-0.439,-0.048,2.759,-0.02,-1.329,11.724,0.0,0.0,0.0,-6.22,-0.057,-1.409,-3.762,-0.162,0.0,3.08,7.868,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,18787.0,5329.0,7037.0,0.0,207.0,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.644,65.644,35.736,35.736,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.168,0.779,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,29.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.009,0.0,13.497,9.075,0.617,0.0,0.0,0.0,0.0,2132.0,3484.9,3484.9,28.066,19.917,0.0,3.504,3.644,0.513,7.513,0.632,10.112,-12.705,0.0,0.0,0.0,8.338,-0.066,10.575,0.0,0.727,0.0,6.352,-8.943,-2.507,0.0,0.008,-0.403,-0.043,2.857,-0.009,-1.201,11.708,0.0,0.0,0.0,-6.066,-0.062,-2.376,-3.537,-0.155,0.0,3.066,7.838,2.002,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.216,58.216,35.684,35.684,22.533,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.224,0.795,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.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,21.101,0.0,13.801,9.075,0.615,0.0,0.0,0.0,0.0,2110.9,3365.3,3365.3,23.045,18.86,0.0,3.551,3.64,0.512,7.523,0.864,10.09,-12.683,0.0,0.0,0.0,8.316,-0.063,4.805,0.0,0.729,0.0,4.883,-8.907,-2.499,0.0,-0.032,-0.444,-0.049,2.738,-0.151,-1.343,11.73,0.0,0.0,0.0,-6.25,-0.06,-1.144,-3.81,-0.163,0.0,3.06,7.872,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.124,58.124,35.544,35.544,22.58,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.109,0.768,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.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,21.146,0.0,13.33,9.075,0.615,0.0,0.0,0.0,0.0,2116.9,3320.7,3320.7,22.984,18.347,0.0,3.548,3.639,0.512,7.512,0.629,10.003,-12.276,0.0,0.0,0.0,8.29,-0.062,4.804,0.0,0.729,0.0,4.886,-8.91,-2.5,0.0,-0.016,-0.433,-0.047,2.763,-0.018,-1.365,11.099,0.0,0.0,0.0,-6.203,-0.058,-1.139,-3.765,-0.162,0.0,2.961,7.869,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,57.922,57.922,35.55,35.55,22.372,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.116,0.771,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.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,20.95,0.0,13.359,9.075,0.615,0.0,0.0,0.0,0.0,2115.6,3252.1,3252.1,22.859,17.865,0.0,3.669,3.643,0.513,7.526,0.63,10.093,-12.69,0.0,0.0,0.0,8.321,-0.061,4.806,0.0,0.729,0.0,4.84,-8.908,-2.5,0.0,-0.284,-0.441,-0.049,2.744,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.241,-0.057,-1.144,-3.805,-0.163,0.0,2.741,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.485,60.485,36.788,36.788,23.697,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.106,1.0,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.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,22.191,0.0,17.42,9.075,0.613,0.0,0.0,0.0,0.0,2132.5,3704.2,3704.2,24.757,21.883,0.0,3.552,3.66,0.515,7.585,0.634,10.134,-12.625,2.717,-2.174,0.0,8.483,-0.067,4.816,0.0,0.732,0.0,5.148,-8.887,-2.495,0.0,-0.125,-0.499,-0.057,2.626,-0.035,-1.481,11.705,-0.056,3.749,0.0,-6.54,-0.063,-1.164,-4.01,-0.168,0.0,3.873,7.89,2.014,1354.8,997.6,11171.6,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.133,59.133,35.756,35.756,23.377,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.271,0.805,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.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.892,0.0,13.975,9.075,0.615,0.0,0.0,0.0,0.0,2133.6,3403.2,3403.2,23.651,19.16,0.0,3.537,3.64,0.512,7.526,0.63,10.088,-12.677,1.147,-0.32,0.0,8.331,-0.063,4.806,0.0,0.729,0.0,5.052,-8.906,-2.499,0.0,-0.034,-0.441,-0.049,2.749,-0.02,-1.334,11.724,-0.494,0.432,0.0,-6.241,-0.059,-1.14,-3.78,-0.162,0.0,3.113,7.872,2.01,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,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.492,58.492,36.447,36.447,22.046,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,4.85,0.941,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.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,0.0,0.0,20.644,0.0,16.387,9.075,0.613,0.0,0.0,0.0,0.0,2127.3,3634.7,3634.7,23.618,21.267,0.0,3.568,3.662,0.515,7.585,0.634,10.137,-12.642,0.857,-1.409,0.0,8.449,-0.062,4.814,0.0,0.732,0.0,4.805,-8.885,-2.496,0.0,-0.106,-0.493,-0.056,2.63,-0.034,-1.48,11.715,0.259,2.537,0.0,-6.498,-0.058,-1.172,-4.028,-0.168,0.0,3.618,7.892,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.242,58.242,36.543,36.543,21.699,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,4.933,0.961,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.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.32,0.0,16.739,9.075,0.613,0.0,0.0,0.0,0.0,2126.9,3634.8,3634.8,23.534,21.34,0.0,3.574,3.667,0.516,7.597,0.636,10.153,-12.632,0.765,-1.651,0.0,8.477,-0.066,4.817,0.0,0.732,0.0,4.738,-8.884,-2.495,0.0,-0.118,-0.502,-0.057,2.608,-0.036,-1.499,11.716,0.262,2.975,0.0,-6.544,-0.062,-1.176,-4.071,-0.169,0.0,3.686,7.893,2.015,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,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.271,40.271,29.28,29.28,10.991,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.847,0.712,9.41,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.286,0.0,12.105,9.295,0.607,0.0,0.0,0.0,0.0,1718.3,2518.2,2518.2,13.175,13.013,0.0,3.948,3.841,0.0,0.0,0.692,10.086,-12.096,0.0,0.0,0.0,7.997,-0.151,2.659,0.0,0.776,0.0,0.295,-6.812,-1.453,0.0,-0.079,-0.592,0.0,0.0,-0.018,-0.665,12.16,0.0,0.0,0.0,-1.595,-0.149,-0.58,-3.572,-0.166,0.0,0.081,6.378,1.194,1354.8,997.6,11171.5,2952.7,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.782,57.782,35.653,35.653,22.129,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.203,0.792,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.129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.723,0.0,13.743,9.075,0.615,0.0,0.0,0.0,0.0,2110.8,3331.8,3331.8,22.901,18.548,0.0,3.556,3.642,0.513,7.509,0.63,10.115,-12.697,0.0,0.0,0.0,8.294,-0.097,4.801,0.0,0.728,0.0,4.79,-8.907,-2.499,0.0,-0.028,-0.442,-0.049,2.746,-0.021,-1.371,11.731,0.0,0.0,0.0,-6.248,-0.093,-1.15,-3.899,-0.163,0.0,3.014,7.872,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-walltypes.xml,74.812,74.812,34.503,34.503,40.308,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.014,0.525,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.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.736,0.0,8.915,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2683.2,2683.2,25.831,12.575,0.0,3.348,16.961,0.473,7.156,0.836,1.284,-1.612,0.0,0.0,0.0,7.375,-0.047,4.828,0.0,0.732,0.0,7.807,-9.158,-2.566,0.0,0.296,-0.602,-0.008,3.41,-0.083,-0.163,1.409,0.0,0.0,0.0,-4.917,-0.042,-0.96,-0.491,-0.123,0.0,1.743,7.628,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,56.99,56.99,34.63,34.63,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,3.38,0.585,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,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.94,0.0,10.035,9.075,0.617,0.0,0.0,0.0,0.0,2130.9,3650.2,3650.2,23.032,18.373,0.0,3.555,3.644,0.513,7.539,0.631,10.097,-12.683,0.0,0.0,0.0,8.375,-0.06,4.806,0.0,0.729,0.0,4.853,-8.905,-2.499,0.0,0.048,-0.382,-0.04,2.94,-0.006,-1.156,11.73,0.0,0.0,0.0,-5.964,-0.056,-1.073,-8.204,-0.153,0.0,2.584,7.877,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-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.81,65.81,35.847,35.847,29.963,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.259,0.798,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,29.963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,13.818,9.075,0.617,0.0,0.0,0.0,0.0,2149.7,3634.7,3634.7,27.766,21.326,0.0,3.494,3.635,0.511,7.503,0.631,19.611,-16.819,0.0,0.0,0.0,8.424,-0.077,4.828,0.0,0.732,0.0,6.38,-8.97,-2.513,0.0,0.033,-0.375,-0.039,2.86,-0.002,-4.867,14.292,0.0,0.0,0.0,-6.116,-0.071,-1.06,-3.446,-0.152,0.0,3.182,7.811,1.997,1354.8,997.6,11171.6,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,57.919,57.919,35.734,35.734,22.184,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.269,0.806,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.775,0.0,14.006,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.558,3.645,0.513,7.518,0.631,10.104,-12.683,0.0,0.0,0.0,8.268,-0.07,4.808,0.0,0.729,0.0,4.815,-8.905,-2.499,0.0,-0.053,-0.464,-0.052,2.669,-0.026,-1.259,12.141,0.0,0.0,0.0,-6.406,-0.066,-1.163,-3.964,-0.166,0.0,3.101,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-windows-shading.xml,57.704,57.704,33.319,33.319,24.385,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.27,0.345,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.837,0.0,5.871,9.075,0.623,0.0,0.0,0.0,0.0,2131.5,2548.6,2548.6,23.076,11.261,0.0,3.584,3.691,0.519,7.567,0.639,10.659,-11.792,0.0,0.0,0.0,8.543,-0.047,4.876,0.0,0.741,0.0,5.223,-9.159,-2.563,0.0,0.38,-0.087,0.001,3.589,0.062,-3.516,2.907,0.0,0.0,0.0,-4.558,-0.043,-0.887,-2.623,-0.115,0.0,1.351,7.628,1.946,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,58.966,58.966,35.142,35.142,23.825,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.765,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.312,0.0,11.915,9.075,0.616,0.0,0.0,0.0,0.0,2111.0,3297.5,3297.5,22.493,16.922,0.0,3.514,3.609,0.508,7.425,0.622,8.598,-9.444,0.0,0.0,0.0,8.054,-0.058,4.791,0.0,0.726,0.0,5.097,-8.925,-2.504,0.0,0.036,-0.393,-0.042,2.866,-0.009,-0.691,8.684,0.0,0.0,0.0,-5.977,-0.054,-1.118,-3.587,-0.157,0.0,2.66,7.855,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.5,47.5,30.162,30.162,17.338,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.651,0.892,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,17.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.243,0.0,15.442,9.182,0.607,0.0,0.0,0.0,2.0,1739.2,3434.2,3434.2,20.513,21.806,0.0,3.812,3.818,0.0,0.0,0.769,10.528,-11.315,0.0,0.0,10.184,0.0,-0.479,2.065,0.0,0.786,0.0,3.901,-6.748,-1.425,0.0,-0.088,-0.571,0.0,0.0,0.034,-0.124,12.654,0.0,0.0,-3.75,0.0,-0.472,-0.403,-2.739,-0.159,0.0,3.593,6.442,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.209,52.209,32.438,32.438,19.771,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.278,0.807,9.251,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.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,18.515,0.0,13.997,9.204,0.614,0.0,0.0,0.0,0.0,1905.4,3536.0,3536.0,21.426,19.426,0.0,3.662,4.741,0.514,5.516,0.701,9.842,-12.609,0.0,0.0,0.835,6.148,-0.04,3.261,0.0,0.735,0.0,4.446,-7.703,-1.886,0.0,-0.017,-0.627,-0.054,1.951,-0.039,-1.133,11.679,0.0,0.0,-0.124,-4.56,-0.037,-0.772,-3.673,-0.165,0.0,3.254,6.953,1.519,1354.8,997.6,11171.5,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.269,49.269,29.252,29.252,20.017,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.875,0.713,9.204,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.747,0.0,12.07,9.182,0.608,0.0,0.0,0.0,0.0,1746.6,3036.4,3036.4,24.177,17.847,0.0,3.99,5.377,0.0,0.0,0.756,8.722,-11.142,0.0,0.0,10.28,0.0,-0.361,2.07,0.0,0.794,0.0,6.174,-6.867,-1.454,0.0,0.311,-0.594,0.0,0.0,0.042,0.089,9.552,0.0,0.0,-3.432,0.0,-0.355,-0.39,-2.509,-0.144,0.0,2.224,6.325,1.193,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.897,48.897,29.259,29.259,19.638,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.885,0.715,9.204,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,18.392,0.0,12.122,9.182,0.607,0.0,0.0,0.0,0.0,1745.5,3032.0,3032.0,24.024,17.806,0.0,3.994,5.384,0.0,0.0,0.757,8.737,-11.129,0.0,0.0,9.983,0.0,-0.359,2.071,0.0,0.794,0.0,6.061,-6.861,-1.453,0.0,0.302,-0.604,0.0,0.0,0.041,0.073,9.566,0.0,0.0,-3.353,0.0,-0.353,-0.393,-2.529,-0.145,0.0,2.23,6.331,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.282,77.282,37.014,37.014,40.269,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.06,0.993,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,40.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,37.713,0.0,17.285,9.075,0.618,0.0,0.0,0.0,3.0,2139.6,3634.7,3634.7,33.388,22.025,0.0,3.435,3.66,0.521,19.574,0.65,10.142,-12.837,0.0,0.0,0.0,8.759,-0.109,6.087,0.0,0.74,0.0,8.283,-9.116,-2.556,0.0,0.05,-0.357,-0.044,3.821,-0.003,-0.965,11.574,0.0,0.0,0.0,-4.469,-0.101,-1.212,-4.011,-0.137,0.0,3.677,7.666,1.954,1354.8,997.6,11171.6,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.285,55.285,36.22,36.22,19.066,0.0,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,4.704,0.91,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,19.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.852,0.0,15.851,9.075,0.612,0.0,0.0,0.0,0.0,2120.4,3560.1,3560.1,22.288,20.664,0.0,3.64,3.708,0.522,8.235,0.645,10.28,-12.652,0.0,0.0,0.0,4.792,-0.067,4.848,0.0,0.735,0.0,4.214,-8.892,-2.497,0.0,-0.086,-0.485,-0.055,2.215,-0.032,-1.47,11.761,0.0,0.0,0.0,-3.672,-0.062,-1.162,-4.121,-0.167,0.0,3.426,7.884,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.858,56.858,35.907,35.907,20.951,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,4.426,0.843,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.619,0.0,14.654,9.075,0.614,0.0,0.0,0.0,0.0,2123.3,3461.8,3461.8,22.76,19.752,0.0,3.583,3.664,0.516,7.834,0.635,10.15,-12.669,0.0,0.0,0.0,6.885,-0.061,4.814,0.0,0.731,0.0,4.582,-8.892,-2.496,0.0,-0.06,-0.466,-0.052,2.545,-0.027,-1.414,11.744,0.0,0.0,0.0,-5.268,-0.056,-1.158,-3.931,-0.165,0.0,3.217,7.885,2.013,1354.8,997.6,11171.5,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.81,56.81,35.28,35.28,21.529,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.913,0.719,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.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.161,0.0,12.44,9.075,0.615,0.0,0.0,0.0,0.0,2128.4,3541.7,3541.7,23.225,18.708,0.0,3.587,3.672,0.517,6.119,0.637,10.174,-12.694,0.0,0.0,0.0,8.986,-0.065,4.83,0.0,0.734,0.0,4.712,-8.91,-2.501,0.0,0.021,-0.403,-0.043,1.124,-0.012,-1.234,11.72,0.0,0.0,0.0,-6.447,-0.06,-1.117,-3.536,-0.159,0.0,2.872,7.868,2.009,1354.8,997.6,11171.5,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.743,46.743,28.73,28.73,18.013,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.467,0.625,9.211,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.856,0.0,10.662,9.182,0.615,0.0,0.0,0.0,0.0,1720.5,2369.3,2369.3,15.899,11.707,0.0,3.711,3.607,0.507,5.114,0.622,9.795,-12.66,0.0,0.0,0.0,10.013,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.042,-0.455,-0.051,1.813,-0.024,-1.171,11.693,0.0,0.0,0.0,-3.767,-0.048,-0.825,-3.657,-0.162,0.0,0.0,6.309,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.293,42.293,29.585,29.585,12.708,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.257,0.806,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.708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.897,0.0,13.759,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3028.7,3028.7,15.204,15.253,0.0,3.987,3.873,0.0,0.0,0.781,10.597,-11.184,0.0,0.0,5.313,0.0,-0.387,2.587,0.0,0.0,0.0,1.989,-4.616,-1.421,0.0,-0.127,-0.701,0.0,0.0,-0.009,-0.408,12.785,0.0,0.0,-0.674,0.0,-0.383,-0.558,-3.053,0.0,0.0,1.668,4.25,1.226,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.487,39.487,29.143,29.143,10.344,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,3.912,0.728,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,10.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,0.0,0.0,9.681,0.0,12.387,9.182,0.606,0.0,0.0,0.0,0.0,1716.3,2511.0,2511.0,12.694,12.981,0.0,3.938,3.808,0.0,0.0,0.692,10.085,-12.048,0.0,0.0,0.0,7.997,-0.154,2.014,0.0,0.777,0.0,0.278,-6.781,-1.447,0.0,-0.068,-0.579,0.0,0.0,-0.023,-0.739,12.208,0.0,0.0,0.0,-1.665,-0.152,-0.458,-3.381,-0.171,0.0,0.083,6.409,1.2,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.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.468,43.468,29.72,29.72,13.747,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.338,0.825,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.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.871,0.0,14.125,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.992,3.873,0.0,0.0,0.78,10.643,-11.238,0.0,0.0,5.935,0.0,-0.399,2.591,0.0,0.0,0.0,2.406,-4.632,-1.425,0.0,-0.103,-0.682,0.0,0.0,-0.006,-0.407,12.731,0.0,0.0,-0.574,0.0,-0.394,-0.546,-3.037,0.0,0.0,1.944,4.233,1.222,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.792,40.792,29.146,29.146,11.646,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.904,0.723,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.646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.903,0.0,12.248,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2618.9,2618.9,14.652,13.98,0.0,3.98,3.841,0.0,0.0,0.77,10.6,-11.048,0.0,0.0,4.439,0.0,-0.412,2.588,0.0,0.0,0.0,1.777,-4.589,-1.411,0.0,-0.105,-0.658,0.0,0.0,0.018,-0.387,12.921,0.0,0.0,-2.075,0.0,-0.408,-0.564,-2.892,0.0,0.0,1.149,4.277,1.237,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.429,48.429,28.801,28.801,19.628,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.572,0.643,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.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.371,0.0,10.91,9.126,0.639,0.0,0.0,0.0,0.0,1722.9,2460.7,2460.7,16.593,12.553,0.0,3.739,3.636,0.0,0.0,0.637,9.325,-12.477,0.0,0.0,14.533,0.0,-0.047,2.468,0.0,0.0,0.0,2.551,-4.777,-1.481,0.0,0.067,-0.435,0.0,0.0,-0.014,-0.416,11.491,0.0,0.0,-2.75,0.0,-0.046,-0.513,-2.855,0.0,0.0,1.316,4.089,1.166,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.369,42.369,29.619,29.619,12.75,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.277,0.811,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.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,11.937,0.0,13.852,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.978,3.837,0.0,0.0,0.761,10.536,-11.163,0.0,0.0,5.365,0.0,-0.389,2.585,0.0,0.0,0.0,2.09,-4.609,-1.419,0.0,-0.107,-0.66,0.0,0.0,0.008,-0.445,12.805,0.0,0.0,-0.728,0.0,-0.385,-0.56,-3.054,0.0,0.0,1.746,4.257,1.229,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.23,40.23,29.718,29.718,10.513,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.296,0.819,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.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,9.843,0.0,13.953,9.182,0.709,0.0,0.0,0.0,0.0,1705.8,2829.2,2829.2,14.329,14.748,0.0,3.962,3.818,0.0,0.0,0.782,10.661,-10.715,0.0,0.0,4.564,0.0,-0.459,2.051,0.0,0.775,0.0,1.605,-6.206,-1.378,0.0,-0.22,-0.781,0.0,0.0,0.005,-0.619,13.254,0.0,0.0,-2.063,0.0,-0.455,-0.477,-3.148,-0.195,0.0,1.293,6.378,1.269,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.226,42.226,29.827,29.827,12.399,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,0.0,4.309,0.819,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.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.609,0.0,13.918,9.182,0.778,0.0,0.0,0.0,0.0,1721.9,2790.7,2790.7,15.473,15.545,0.0,3.955,3.796,0.0,0.0,0.759,10.502,-10.969,0.0,0.0,6.708,0.0,-0.447,1.849,0.0,0.781,0.0,2.0,-6.309,-1.403,0.0,-0.123,-0.672,0.0,0.0,0.022,-0.439,12.999,0.0,0.0,-2.485,0.0,-0.442,-0.388,-3.058,-0.18,0.0,1.457,6.275,1.244,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.141,42.141,29.67,29.67,12.47,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.175,0.787,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.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,11.676,0.0,13.332,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3082.9,3082.9,15.482,15.239,0.0,3.965,3.819,0.0,0.0,0.767,10.553,-11.032,0.0,0.0,6.732,0.0,-0.433,1.849,0.0,0.782,0.0,2.014,-6.325,-1.407,0.0,-0.107,-0.669,0.0,0.0,0.016,-0.41,12.937,0.0,0.0,-3.003,0.0,-0.428,-0.384,-2.984,-0.177,0.0,1.331,6.258,1.24,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,63.97,63.97,36.07,36.07,27.9,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.465,0.85,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.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.128,0.0,14.748,9.075,0.616,0.0,0.0,0.0,0.0,2147.3,3575.9,3575.9,26.753,20.77,0.0,3.539,3.7,0.522,7.386,0.649,10.889,-12.928,0.0,0.0,0.0,10.19,-0.066,6.632,0.0,0.729,0.0,5.965,-8.932,-2.505,0.0,-0.084,-0.502,-0.058,1.488,-0.029,-1.491,12.043,0.0,0.0,0.0,-3.631,-0.06,-1.498,-4.183,-0.159,0.0,3.222,7.848,2.005,1354.8,997.6,11171.5,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.581,34.581,34.581,34.581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.268,0.976,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.459,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3211.3,3211.3,0.0,15.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.005,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.707,-0.165,0.0,1.941,8.008,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.403,45.403,45.403,45.403,0.0,0.0,0.0,0.0,0.0,0.0,9.436,1.0,0.296,0.017,3.357,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3243.5,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.81,41.81,41.81,41.81,0.0,0.0,0.0,0.0,0.0,0.0,9.467,1.733,0.308,0.031,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.14,0.339,0.0,9.075,0.591,0.0,0.0,0.0,0.0,7126.4,1637.3,7126.4,25.253,0.0,0.0,3.502,3.648,0.513,7.518,0.632,10.112,-12.683,0.0,0.0,0.0,8.185,-0.068,4.809,0.0,0.73,0.0,6.283,-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.336,45.336,45.336,45.336,0.0,0.0,0.0,0.0,0.0,0.0,8.978,0.904,0.895,0.051,3.247,0.969,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.738,0.945,12.366,9.075,0.614,0.0,0.0,144.0,0.0,10357.9,3404.3,10357.9,37.455,16.097,0.0,3.613,3.675,0.516,7.778,0.624,10.038,-12.798,0.0,0.0,0.0,9.107,0.061,4.747,0.0,0.762,0.0,4.611,-8.886,-2.51,0.0,0.033,-0.427,-0.048,2.817,-0.029,-1.429,11.615,0.0,0.0,0.0,-6.269,0.051,-1.158,-4.259,-0.16,0.0,1.931,7.892,2.0,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-seer2-hspf2.xml,45.462,45.462,45.462,45.462,0.0,0.0,0.0,0.0,0.0,0.0,9.507,1.0,0.296,0.017,3.345,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3237.7,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.403,45.403,45.403,45.403,0.0,0.0,0.0,0.0,0.0,0.0,9.436,1.0,0.296,0.017,3.357,1.004,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,21.478,0.313,12.823,9.075,0.615,0.0,0.0,0.0,0.0,6864.0,3243.5,6864.0,24.203,16.253,0.0,3.53,3.645,0.513,7.532,0.631,10.103,-12.683,0.0,0.0,0.0,8.329,-0.064,4.807,0.0,0.729,0.0,5.461,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.384,41.384,41.384,41.384,0.0,0.0,0.0,0.0,0.0,0.0,7.367,0.584,0.283,0.012,2.242,0.604,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,22.488,0.295,13.067,9.075,0.615,0.0,0.0,0.0,0.0,6840.9,2791.5,6840.9,24.196,17.265,0.0,3.49,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.503,-8.906,-2.499,0.0,0.002,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.237,7.872,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.555,53.555,38.631,38.631,14.924,0.0,0.0,0.0,0.0,0.0,5.083,0.353,0.0,0.056,2.378,0.467,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,14.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.72,11.132,15.665,9.075,0.615,0.0,0.0,1.0,8.0,3202.1,2882.4,3202.1,22.934,17.73,0.0,3.282,3.605,0.507,7.529,0.616,9.933,-12.591,0.0,0.0,0.0,8.263,-0.029,5.816,0.0,0.72,0.0,10.96,-8.787,-2.475,0.0,-0.164,-0.473,-0.053,2.771,-0.034,-1.479,11.822,0.0,0.0,0.0,-6.279,-0.025,-1.472,-3.787,-0.169,0.0,5.12,7.992,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.542,56.542,37.49,37.49,19.052,0.0,0.0,0.0,0.0,0.0,4.022,0.234,0.0,0.072,2.398,0.469,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.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,27.325,14.192,15.794,9.075,0.616,0.0,0.0,225.0,8.0,3034.2,2899.7,3034.2,23.177,17.73,0.0,3.297,3.6,0.506,7.422,0.614,9.851,-12.664,0.0,0.0,0.0,8.262,-0.007,5.77,0.0,0.715,0.0,10.515,-8.794,-2.468,0.0,-0.154,-0.47,-0.054,2.694,-0.033,-1.533,11.749,0.0,0.0,0.0,-6.225,-0.004,-1.494,-3.77,-0.173,0.0,5.005,7.985,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.659,53.659,38.73,38.73,14.929,0.0,0.0,0.0,0.0,0.0,5.154,0.357,0.0,0.056,2.399,0.469,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,14.929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.99,11.136,15.83,9.075,0.615,0.0,0.0,1.0,8.0,3202.1,2882.4,3202.1,22.934,17.731,0.0,3.324,3.646,0.513,7.53,0.631,10.095,-12.703,0.0,0.0,0.0,8.344,-0.058,5.884,0.0,0.728,0.0,11.097,-8.914,-2.501,0.0,-0.121,-0.436,-0.048,2.76,-0.019,-1.329,11.71,0.0,0.0,0.0,-6.212,-0.055,-1.41,-3.77,-0.162,0.0,5.178,7.865,2.009,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-furnace.xml,53.637,53.637,38.868,38.868,14.769,0.0,0.0,0.0,0.0,0.0,4.92,0.334,0.0,0.445,2.407,0.469,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,14.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,12.26,15.931,9.075,0.615,0.0,0.0,2.0,8.0,3212.2,2882.3,3212.2,26.385,17.721,0.0,3.269,3.648,0.513,7.537,0.631,10.098,-12.695,0.0,0.0,0.0,8.341,-0.058,4.804,0.0,0.729,0.0,12.416,-8.905,-2.499,0.0,-0.13,-0.444,-0.049,2.732,-0.022,-1.358,11.718,0.0,0.0,0.0,-6.257,-0.054,-1.149,-3.836,-0.163,0.0,5.192,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,49.951,49.951,49.951,49.951,0.0,0.0,0.0,0.0,0.0,0.0,9.7,0.718,5.728,0.328,3.082,0.103,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,25.687,6.055,14.167,9.075,0.615,0.0,0.0,0.0,0.0,8393.7,3430.5,8393.7,24.188,18.17,0.0,3.366,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.336,-0.065,4.807,0.0,0.729,0.0,9.811,-8.906,-2.499,0.0,-0.046,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.829,-0.163,0.0,3.39,7.872,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.306,42.306,42.306,42.306,0.0,0.0,0.0,0.0,0.0,0.0,8.733,0.512,0.13,0.006,2.521,0.111,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,25.151,0.136,14.207,9.075,0.615,0.0,0.0,0.0,0.0,6823.3,3555.3,6823.3,24.193,18.064,0.0,3.388,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.335,-0.065,4.807,0.0,0.729,0.0,9.261,-8.906,-2.499,0.0,-0.048,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.261,-0.061,-1.146,-3.829,-0.163,0.0,3.43,7.872,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.85,40.85,40.85,40.85,0.0,0.0,0.0,0.0,0.0,0.0,7.808,0.252,0.322,0.015,2.044,0.116,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.748,0.337,13.903,9.075,0.615,0.0,0.0,0.0,0.0,6869.8,2766.0,6869.8,24.247,18.049,0.0,3.444,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.333,-0.064,4.807,0.0,0.729,0.0,7.811,-8.906,-2.499,0.0,-0.034,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.112,7.872,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.093,49.093,42.55,42.55,6.544,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.165,0.484,15.678,0.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.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,6.057,0.0,9.098,16.204,0.645,0.0,0.0,0.0,0.0,2608.0,3497.9,3497.9,17.003,15.868,0.0,2.896,2.829,0.396,5.505,0.422,7.582,-12.563,0.0,0.0,0.0,5.76,-0.053,3.532,0.0,0.581,0.0,1.456,-10.183,-2.473,0.0,-0.101,-0.557,-0.065,2.402,-0.054,-1.718,11.85,0.0,0.0,0.0,-7.441,-0.054,-1.232,-6.695,-0.186,0.0,1.895,9.378,2.036,2181.0,1715.2,21140.4,3685.8,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.84,58.84,35.839,35.839,23.001,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.336,0.824,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,23.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,21.548,0.0,14.328,9.075,0.615,0.0,0.0,0.0,0.0,2124.0,3361.2,3361.2,23.95,19.11,0.0,3.532,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.534,-8.905,-2.499,0.0,-0.053,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.828,-0.163,0.0,3.522,7.874,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.466,49.466,30.508,30.508,0.0,0.0,0.0,0.0,0.0,18.957,0.0,0.237,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2045.6,1637.3,2045.6,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.291,48.291,48.291,48.291,0.0,0.0,0.0,0.0,0.0,0.0,17.897,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,6027.4,1637.3,6027.4,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.121,55.121,35.905,35.905,19.217,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,4.328,1.138,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.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,16.192,0.0,13.98,9.075,0.615,0.0,0.0,0.0,0.0,2083.0,3544.7,3544.7,16.438,19.041,0.0,3.744,3.643,0.513,7.527,0.631,10.098,-12.683,0.0,0.0,0.0,8.318,-0.064,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.04,-0.446,-0.049,2.731,-0.022,-1.35,11.73,0.0,0.0,0.0,-6.263,-0.06,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.431,54.431,30.416,30.416,24.016,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2033.0,1637.3,2033.0,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.46,49.46,30.416,30.416,19.044,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2033.0,1637.3,2033.0,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.466,49.466,30.508,30.508,0.0,18.957,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2045.6,1637.3,2045.6,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.459,49.459,30.394,30.394,0.0,0.0,19.065,0.0,0.0,0.0,0.0,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2030.2,1637.3,2030.2,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.459,49.459,30.394,30.394,0.0,0.0,0.0,19.065,0.0,0.0,0.0,0.123,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2030.2,1637.3,2030.2,16.438,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.667,35.667,35.667,35.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.222,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3502.6,3502.6,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.68,35.68,35.68,35.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.235,1.107,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.591,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3509.2,3509.2,0.0,18.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.054,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.71,-0.165,0.0,3.094,8.008,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.09,34.09,34.09,34.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.071,0.682,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.991,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3085.8,3085.8,0.0,19.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.071,-0.454,-0.05,2.711,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.709,-0.165,0.0,3.501,8.008,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.64,33.64,33.64,33.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.189,0.114,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.956,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,3511.1,3511.1,0.0,17.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.072,-0.454,-0.05,2.71,-0.028,-1.401,11.85,0.0,0.0,0.0,-6.835,-0.063,-1.171,-3.712,-0.165,0.0,3.503,8.008,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.284,33.284,33.284,33.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.683,0.264,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.781,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2899.5,2899.5,0.0,18.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.111,-0.454,-0.05,2.711,-0.028,-1.4,11.85,0.0,0.0,0.0,-6.834,-0.063,-1.172,-3.715,-0.165,0.0,4.342,8.008,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.39,47.39,47.39,47.39,0.0,0.0,0.0,0.0,0.0,0.0,9.543,1.748,0.309,0.031,4.329,1.138,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,22.335,0.34,13.981,9.075,0.615,0.0,0.0,0.0,0.0,7195.9,3544.8,7195.9,25.253,19.042,0.0,3.497,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.331,-0.064,4.807,0.0,0.729,0.0,6.335,-8.906,-2.499,0.0,-0.039,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.167,7.872,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.209,58.209,36.58,36.58,21.629,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.022,0.908,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.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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2102.1,2714.4,2714.4,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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,51.983,51.983,41.322,41.322,10.661,0.0,0.0,0.0,0.0,0.0,5.246,0.493,0.0,0.93,3.357,1.004,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,10.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,22.828,11.057,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3243.5,3608.2,24.193,16.253,0.0,3.47,3.645,0.513,7.534,0.631,10.105,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.86,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.74,54.74,40.323,40.323,14.417,0.0,0.0,0.0,0.0,0.0,3.936,0.345,0.0,1.389,3.357,1.004,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,14.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,23.723,15.086,12.823,9.075,0.614,0.0,0.0,0.0,0.0,3456.2,3243.5,3456.2,24.191,16.253,0.0,3.434,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.334,-0.065,4.808,0.0,0.729,0.0,7.785,-8.906,-2.499,0.0,0.011,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,1.989,7.872,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.168,52.168,37.35,37.35,14.818,0.0,0.0,0.0,0.0,0.0,2.982,0.188,0.0,1.042,2.242,0.604,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,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,24.057,15.119,13.067,9.075,0.614,0.0,0.0,0.0,0.0,2838.2,2791.5,2838.2,24.19,17.265,0.0,3.422,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.334,-0.064,4.808,0.0,0.729,0.0,8.129,-8.906,-2.499,0.0,0.002,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.237,7.872,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.899,51.899,36.952,36.952,14.947,0.0,0.0,0.0,0.0,0.0,3.327,0.037,0.0,1.135,2.044,0.116,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,14.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.935,15.335,13.903,9.075,0.614,0.0,0.0,0.0,0.0,2844.2,2766.0,2844.2,24.242,18.05,0.0,3.391,3.646,0.513,7.536,0.631,10.106,-12.683,0.0,0.0,0.0,8.335,-0.064,4.807,0.0,0.729,0.0,9.038,-8.906,-2.499,0.0,-0.034,-0.447,-0.049,2.731,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.828,-0.163,0.0,3.112,7.872,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.312,47.312,35.883,35.883,11.429,0.0,0.0,0.0,0.0,0.0,2.91,0.012,0.0,0.544,2.079,0.045,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,11.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.319,11.402,11.863,9.075,0.615,0.0,0.0,0.0,0.0,2645.0,2402.9,2645.0,19.077,13.952,0.0,3.611,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.248,-8.906,-2.499,0.0,0.046,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.823,-0.163,0.0,1.021,7.872,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.112,92.112,46.285,46.285,45.827,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,7.8,1.604,8.861,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.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,42.773,0.0,28.44,8.989,0.613,0.0,0.0,5.0,42.0,2576.6,5057.2,5057.2,48.976,36.131,0.0,3.227,7.904,1.074,7.935,0.669,20.549,-25.256,0.0,0.0,0.0,9.074,-0.116,11.181,0.0,0.748,0.0,19.717,-10.97,-3.546,0.0,-0.34,-0.979,-0.092,2.724,-0.016,-1.95,23.309,0.0,0.0,0.0,-6.354,-0.104,-2.409,-7.57,-0.158,0.0,10.524,9.387,2.826,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.227,57.227,35.583,35.583,21.645,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.154,0.779,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.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.275,0.0,13.571,9.075,0.615,0.0,0.0,0.0,0.0,2116.7,3311.4,3311.4,22.356,18.36,0.0,3.578,3.644,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.326,-0.063,4.807,0.0,0.729,0.0,4.222,-8.905,-2.499,0.0,-0.02,-0.447,-0.049,2.73,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.826,-0.163,0.0,2.745,7.874,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.588,55.588,35.348,35.348,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.981,0.741,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,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.946,0.0,12.757,9.075,0.615,0.0,0.0,0.0,0.0,2110.2,3030.7,3030.7,20.269,15.786,0.0,3.624,3.644,0.513,7.53,0.63,10.096,-12.683,0.0,0.0,0.0,8.323,-0.062,4.806,0.0,0.729,0.0,2.853,-8.903,-2.499,0.0,0.011,-0.447,-0.05,2.73,-0.022,-1.356,11.73,0.0,0.0,0.0,-6.266,-0.058,-1.147,-3.827,-0.163,0.0,1.91,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.524,54.524,40.36,40.36,14.164,0.0,0.0,0.0,0.0,0.0,4.358,0.368,0.0,0.0,5.342,0.0,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,14.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.746,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3055.2,3318.4,3318.4,18.192,11.9,0.0,3.744,3.643,0.513,7.526,0.631,10.097,-12.683,0.0,0.0,0.0,8.317,-0.064,4.807,0.0,0.73,0.0,1.559,-8.906,-2.499,0.0,0.052,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.264,-0.06,-1.146,-3.817,-0.163,0.0,-0.0,7.872,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,57.989,57.989,35.707,35.707,22.282,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.246,0.8,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.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,20.867,0.0,13.893,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3368.6,3368.6,23.027,18.891,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.08,7.874,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.422,57.422,35.597,35.597,21.826,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.163,0.78,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.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.453,0.0,13.711,9.075,0.615,0.0,0.0,0.0,0.0,2116.8,3359.0,3359.0,22.444,18.808,0.0,3.567,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.73,0.0,4.427,-8.906,-2.499,0.0,-0.025,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.826,-0.163,0.0,2.943,7.872,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.202,59.202,35.901,35.901,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.39,0.833,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,23.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.828,0.0,14.537,9.075,0.615,0.0,0.0,0.0,0.0,2123.4,3540.1,3540.1,24.251,20.454,0.0,3.52,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.826,-8.905,-2.499,0.0,-0.063,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.829,-0.163,0.0,3.747,7.874,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.331,46.331,46.331,46.331,0.0,0.0,0.0,0.0,0.0,0.0,16.06,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,5913.9,1637.3,5913.9,16.439,0.0,0.0,3.746,3.646,0.513,7.512,0.631,10.107,-12.683,0.0,0.0,0.0,8.173,-0.067,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.591,54.591,31.705,31.705,22.886,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,0.0,0.817,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.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.65,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2123.2,1891.2,2123.2,24.046,11.909,0.0,3.528,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.632,-8.905,-2.499,0.0,0.054,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.817,-0.163,0.0,-0.0,7.874,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.218,31.218,31.218,31.218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,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.474,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,1933.3,2020.7,0.0,15.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.704,-0.165,0.0,0.922,8.008,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.133,31.133,31.133,31.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.796,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.538,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,1891.6,2020.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.652,51.652,30.272,30.272,0.0,0.0,0.0,21.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2019.7,1593.9,2019.7,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.623,56.623,30.272,30.272,0.0,0.0,26.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2019.7,1593.9,2019.7,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.543,53.543,30.861,30.861,0.0,0.0,0.0,0.0,0.0,22.682,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.21,56.21,56.21,56.21,0.0,0.0,0.0,0.0,0.0,0.0,20.503,0.368,0.0,0.0,4.247,0.8,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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,7897.8,3369.1,7897.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.154,52.154,52.154,52.154,0.0,0.0,0.0,0.0,0.0,0.0,21.293,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,8283.1,1637.3,8283.1,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.722,56.722,34.436,34.436,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.116,0.66,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.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,20.87,0.0,14.312,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3115.3,3115.3,23.032,19.58,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.052,-0.446,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.263,-0.059,-1.147,-3.827,-0.163,0.0,3.503,7.874,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.953,55.953,33.668,33.668,22.285,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,2.732,0.275,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.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,20.87,0.0,15.177,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,2924.7,2924.7,23.032,19.21,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.097,-0.446,-0.049,2.732,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.262,-0.059,-1.147,-3.833,-0.163,0.0,4.425,7.874,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.99,37.99,30.507,30.507,7.483,0.0,0.0,0.0,0.0,0.0,0.0,0.195,0.0,0.0,0.0,0.0,9.036,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.072,0.0,0.0,9.075,0.635,0.0,0.0,0.0,0.0,2085.2,1636.2,2085.2,18.154,0.0,0.0,2.843,2.786,0.39,5.36,0.411,7.452,-12.563,0.0,0.0,0.0,5.495,-0.053,3.476,0.0,0.572,0.0,1.818,-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,11171.5,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.451,58.451,30.861,30.861,27.59,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.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.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.116,59.116,36.23,36.23,22.886,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,5.342,0.0,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.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.65,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2123.2,3318.5,3318.5,24.046,11.9,0.0,3.528,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.806,0.0,0.729,0.0,5.633,-8.905,-2.499,0.0,0.054,-0.447,-0.049,2.73,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.817,-0.163,0.0,-0.0,7.874,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.543,53.543,30.861,30.861,0.0,22.682,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,0.0,0.0,22.682,0.0,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.543,53.543,30.861,30.861,0.0,0.0,0.0,22.682,0.0,0.0,0.0,0.59,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.457,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2123.2,1637.3,2123.2,24.046,0.0,0.0,3.533,3.647,0.513,7.517,0.632,10.109,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,5.584,-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.206,58.206,36.609,36.609,21.597,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.022,0.908,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.353,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2105.4,2714.4,2714.4,16.604,11.9,0.0,3.778,3.677,0.518,7.601,0.636,10.196,-12.796,0.0,0.0,0.0,8.394,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.072,34.072,34.072,34.072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.94,0.795,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.69,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2841.8,2841.8,0.0,16.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.016,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.708,-0.165,0.0,2.179,8.008,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.762,40.762,40.762,40.762,0.0,0.0,0.0,0.0,0.0,0.0,6.2,0.621,0.0,0.0,2.691,0.956,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.552,0.0,13.366,9.075,0.615,0.0,0.0,0.0,0.0,3397.9,2669.4,3397.9,23.097,16.164,0.0,3.543,3.603,0.507,7.844,0.622,9.99,-12.705,0.0,0.0,0.0,11.665,-0.065,4.798,0.0,0.727,0.0,4.11,-8.928,-2.504,0.0,0.016,-0.436,-0.048,3.164,-0.018,-1.312,11.708,0.0,0.0,0.0,-6.297,-0.062,-1.133,-3.812,-0.16,0.0,2.084,7.851,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,36.704,36.704,36.704,36.704,0.0,0.0,0.0,0.0,0.0,0.0,5.565,0.868,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.199,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,3552.4,1637.3,3552.4,22.926,0.0,0.0,3.578,3.647,0.513,7.516,0.632,10.111,-12.683,0.0,0.0,0.0,8.181,-0.067,4.809,0.0,0.73,0.0,4.287,-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,40.166,40.166,40.166,40.166,0.0,0.0,0.0,0.0,0.0,0.0,5.452,0.555,0.0,0.0,2.925,0.941,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,19.711,0.0,12.892,9.075,0.615,0.0,0.0,0.0,0.0,3447.2,2853.9,3447.2,22.118,16.221,0.0,3.597,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.326,-0.064,4.807,0.0,0.729,0.0,3.643,-8.906,-2.499,0.0,0.008,-0.447,-0.049,2.73,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.264,-0.061,-1.146,-3.825,-0.163,0.0,2.057,7.872,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.484,48.484,48.484,48.484,0.0,0.0,0.0,0.0,0.0,0.0,12.09,0.692,0.618,0.019,4.097,0.674,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,22.924,0.638,13.354,9.075,0.615,0.0,0.0,0.0,0.0,6952.5,3498.6,6952.5,24.716,17.368,0.0,3.475,3.645,0.513,7.533,0.631,10.104,-12.683,0.0,0.0,0.0,8.332,-0.064,4.807,0.0,0.729,0.0,6.949,-8.906,-2.499,0.0,-0.013,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.828,-0.163,0.0,2.536,7.872,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.007,44.007,44.007,44.007,0.0,0.0,0.0,0.0,0.0,0.0,9.224,0.568,0.555,0.017,2.794,0.556,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,24.13,0.573,13.692,9.075,0.614,0.0,0.0,0.0,0.0,6933.6,3114.9,6933.6,24.712,18.743,0.0,3.428,3.646,0.513,7.535,0.631,10.105,-12.683,0.0,0.0,0.0,8.334,-0.064,4.807,0.0,0.729,0.0,8.193,-8.906,-2.499,0.0,-0.026,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.262,-0.061,-1.146,-3.827,-0.163,0.0,2.878,7.872,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.655,45.655,45.655,45.655,0.0,0.0,0.0,0.0,0.0,0.0,10.985,0.525,0.312,0.01,3.363,0.168,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,26.46,0.321,14.919,9.075,0.615,0.0,0.0,0.0,0.0,6928.7,4232.5,6928.7,24.71,18.702,0.0,3.34,3.648,0.513,7.538,0.631,10.102,-12.695,0.0,0.0,0.0,8.341,-0.06,4.807,0.0,0.729,0.0,10.614,-8.908,-2.5,0.0,-0.081,-0.444,-0.049,2.734,-0.022,-1.353,11.718,0.0,0.0,0.0,-6.255,-0.056,-1.147,-3.832,-0.163,0.0,4.168,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.903,43.903,43.903,43.903,0.0,0.0,0.0,0.0,0.0,0.0,9.912,0.341,0.609,0.021,2.576,0.152,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,25.341,0.63,14.673,9.075,0.615,0.0,0.0,0.0,0.0,6947.0,3154.2,6947.0,24.758,18.651,0.0,3.383,3.647,0.513,7.537,0.631,10.105,-12.69,0.0,0.0,0.0,8.338,-0.063,4.807,0.0,0.73,0.0,9.453,-8.908,-2.5,0.0,-0.07,-0.445,-0.049,2.733,-0.022,-1.351,11.724,0.0,0.0,0.0,-6.258,-0.059,-1.146,-3.83,-0.163,0.0,3.908,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,59.944,59.944,36.484,36.484,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.166,0.743,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,23.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.863,0.0,14.787,9.075,0.615,0.0,0.0,0.0,3.0,2098.9,3513.5,3513.5,24.074,18.616,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.076,-0.447,-0.049,2.732,-0.022,-1.355,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.148,-3.83,-0.163,0.0,3.996,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.468,58.468,35.008,35.008,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.805,0.629,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,23.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.863,0.0,15.229,9.075,0.615,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.889,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.095,-0.446,-0.049,2.732,-0.022,-1.354,11.73,0.0,0.0,0.0,-6.263,-0.058,-1.148,-3.83,-0.163,0.0,4.444,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.737,57.737,34.277,34.277,23.46,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.332,0.37,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,23.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.862,0.0,15.952,9.075,0.615,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.153,0.0,3.52,3.644,0.513,7.532,0.631,10.098,-12.683,0.0,0.0,0.0,8.327,-0.062,4.806,0.0,0.729,0.0,5.862,-8.903,-2.499,0.0,-0.136,-0.446,-0.049,2.733,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.262,-0.058,-1.148,-3.837,-0.163,0.0,5.223,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.9,54.9,30.73,30.73,24.17,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.692,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2091.6,1637.3,2091.6,25.358,0.0,0.0,3.487,3.648,0.513,7.518,0.632,10.11,-12.683,0.0,0.0,0.0,8.182,-0.066,4.808,0.0,0.73,0.0,6.859,-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,42.348,42.348,42.348,42.348,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.569,0.0,0.0,3.533,0.899,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,20.77,0.0,13.454,9.075,0.615,0.0,0.0,0.0,0.0,3720.9,2983.5,3720.9,23.178,17.47,0.0,3.56,3.644,0.513,7.531,0.631,10.102,-12.683,0.0,0.0,0.0,8.327,-0.064,4.807,0.0,0.729,0.0,4.732,-8.906,-2.499,0.0,-0.017,-0.447,-0.049,2.73,-0.022,-1.351,11.73,0.0,0.0,0.0,-6.263,-0.061,-1.146,-3.827,-0.163,0.0,2.633,7.872,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.79,33.79,33.79,33.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.191,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.288,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2951.8,2951.8,0.0,14.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.001,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.711,-0.165,0.0,1.793,8.008,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.313,41.313,41.313,41.313,0.0,0.0,0.0,0.0,0.0,0.0,8.082,0.201,0.121,0.005,2.519,0.091,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,19.457,0.126,12.148,9.075,0.615,0.0,0.0,0.0,0.0,4873.7,2788.6,4873.7,19.228,14.089,0.0,3.606,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.39,-8.906,-2.499,0.0,0.037,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.315,7.872,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.143,33.143,33.143,33.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.068,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.023,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2568.2,2568.2,0.0,13.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.011,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.708,-0.165,0.0,1.515,8.008,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.885,32.885,32.885,32.885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.544,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2664.7,2664.7,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.023,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2070.7,2503.8,2503.8,0.0,11.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.036,-0.455,-0.05,2.71,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.409,32.409,32.409,32.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.027,0.044,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.521,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2369.0,2369.0,0.0,13.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029,-0.455,-0.05,2.709,-0.028,-1.403,11.85,0.0,0.0,0.0,-6.837,-0.063,-1.171,-3.705,-0.165,0.0,0.996,8.008,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.353,40.353,40.353,40.353,0.0,0.0,0.0,0.0,0.0,0.0,6.995,0.144,0.0,0.0,2.886,0.034,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,19.296,0.0,12.191,9.075,0.615,0.0,0.0,0.0,0.0,4056.3,2641.7,4056.3,18.97,13.917,0.0,3.612,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.225,-8.906,-2.499,0.0,0.035,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.825,-0.163,0.0,1.362,7.872,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.02,37.02,37.02,37.02,0.0,0.0,0.0,0.0,0.0,0.0,6.571,0.122,0.053,0.002,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.897,0.056,0.0,9.075,0.591,0.0,0.0,0.0,0.0,4362.5,1637.3,4362.5,19.31,0.0,0.0,3.622,3.647,0.513,7.515,0.632,10.11,-12.683,0.0,0.0,0.0,8.18,-0.067,4.809,0.0,0.73,0.0,2.959,-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.185,39.185,39.185,39.185,0.0,0.0,0.0,0.0,0.0,0.0,6.636,0.076,0.055,0.001,2.079,0.045,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,19.104,0.056,11.863,9.075,0.615,0.0,0.0,0.0,0.0,4286.8,2402.9,4286.8,19.079,13.952,0.0,3.617,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.325,-0.064,4.807,0.0,0.73,0.0,3.028,-8.906,-2.499,0.0,0.046,-0.447,-0.049,2.729,-0.022,-1.352,11.73,0.0,0.0,0.0,-6.265,-0.061,-1.146,-3.823,-0.163,0.0,1.021,7.872,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.842,38.842,38.842,38.842,0.0,0.0,0.0,0.0,0.0,0.0,5.675,0.121,0.344,0.0,2.382,0.028,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,16.192,0.344,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4436.0,2598.8,4436.0,16.439,11.899,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.415,45.415,36.407,36.407,9.008,0.0,0.0,0.0,0.0,0.0,3.398,0.043,0.0,0.272,2.373,0.028,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,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.349,7.478,10.77,9.075,0.615,0.0,0.0,2.0,0.0,2921.7,2617.1,2921.7,17.264,12.061,0.0,3.742,3.641,0.512,7.521,0.63,10.091,-12.69,0.0,0.0,0.0,8.323,-0.062,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.059,-0.439,-0.048,2.758,-0.02,-1.327,11.724,0.0,0.0,0.0,-6.222,-0.058,-1.408,-3.751,-0.162,0.0,0.0,7.867,2.009,1354.8,997.6,11171.5,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.122,45.122,36.214,36.214,8.908,0.0,0.0,0.0,0.0,0.0,3.204,0.039,0.0,0.268,2.382,0.028,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,8.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.584,7.395,10.856,9.075,0.615,0.0,0.0,1.0,0.0,2848.6,2598.8,2848.6,17.577,11.899,0.0,3.722,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.316,-0.066,4.806,0.0,0.729,0.0,0.41,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.413,48.413,36.149,36.149,0.0,12.264,0.0,0.0,0.0,0.0,3.394,0.06,0.0,0.0,2.373,0.028,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.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,17.238,7.358,10.77,9.075,0.615,0.0,0.0,2.0,0.0,2921.7,2617.1,2921.7,16.995,12.061,0.0,3.742,3.641,0.512,7.521,0.63,10.091,-12.69,0.0,0.0,0.0,8.323,-0.062,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.059,-0.439,-0.048,2.758,-0.02,-1.327,11.724,0.0,0.0,0.0,-6.222,-0.058,-1.408,-3.751,-0.162,0.0,0.0,7.867,2.009,1354.8,997.6,11171.5,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.929,38.929,38.929,38.929,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.036,0.0,0.0,1.887,0.003,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,16.192,0.0,10.855,9.075,0.615,0.0,0.0,0.0,0.0,3979.6,2668.0,3979.6,16.439,11.895,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.148,38.148,38.148,38.148,0.0,0.0,0.0,0.0,0.0,0.0,5.668,0.051,0.0,0.0,2.131,0.006,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,16.192,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,3660.8,2370.6,3660.8,16.439,11.896,0.0,3.742,3.642,0.513,7.526,0.63,10.098,-12.677,0.0,0.0,0.0,8.315,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.051,-0.448,-0.05,2.729,-0.022,-1.352,11.737,0.0,0.0,0.0,-6.267,-0.062,-1.147,-3.817,-0.163,0.0,0.0,7.874,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.216,66.216,51.967,51.967,7.062,3.554,3.633,0.0,0.0,0.0,13.639,0.872,0.22,0.009,6.396,0.538,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,7.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.423,0.229,18.918,9.075,0.615,0.0,0.0,0.0,15.0,6587.4,4004.5,6587.4,37.978,22.41,0.0,3.422,3.644,0.513,7.529,0.631,10.098,-12.696,0.0,0.0,0.0,8.34,-0.061,5.887,0.0,0.728,0.0,15.439,-8.916,-2.502,0.0,-0.115,-0.438,-0.048,2.757,-0.02,-1.327,11.716,0.0,0.0,0.0,-6.218,-0.058,-1.409,-3.794,-0.162,0.0,8.262,7.862,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.673,19.673,19.673,19.673,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.543,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.334,0.0,0.0,0.0,0.0,1272.9,1085.0,1272.9,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.9,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.741,50.741,50.741,50.741,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,4.243,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,2924.2,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.792,54.792,34.536,34.536,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.243,0.0,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,20.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,2019.6,2924.2,2924.2,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.472,34.472,34.472,34.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.134,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2919.5,2919.5,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.144,32.144,32.144,32.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.806,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.477,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,2169.9,2169.9,0.0,3.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.012,-0.15,-0.016,0.894,-0.009,-0.463,3.911,0.0,0.0,0.0,-2.256,-0.021,-0.386,-1.221,-0.054,0.0,0.0,2.643,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.552,35.552,35.552,35.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.214,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3298.2,3298.2,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.3,34.3,34.3,34.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.969,0.0,9.055,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.786,9.075,0.654,0.0,0.0,0.0,0.0,2019.6,3130.8,3130.8,0.0,10.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.125,-0.627,-0.075,2.229,-0.071,-1.927,11.85,0.0,0.0,0.0,-7.569,-0.066,-1.31,-4.072,-0.197,0.0,0.0,8.001,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.xml,35.542,35.542,35.542,35.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.204,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.537,9.075,0.662,0.0,0.0,0.0,0.0,2020.7,3294.3,3294.3,0.0,11.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.036,-0.455,-0.05,2.709,-0.028,-1.402,11.85,0.0,0.0,0.0,-6.836,-0.063,-1.171,-3.699,-0.165,0.0,0.0,8.008,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.839,51.839,51.839,51.839,0.0,0.0,0.0,0.0,0.0,0.0,16.204,0.0,0.0,0.0,5.342,0.0,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,16.191,0.0,10.856,9.075,0.615,0.0,0.0,0.0,0.0,5913.9,3318.4,5913.9,16.439,11.9,0.0,3.741,3.641,0.512,7.525,0.63,10.095,-12.669,0.0,0.0,0.0,8.311,-0.066,4.805,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.049,-0.449,-0.05,2.729,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.271,-0.062,-1.148,-3.817,-0.164,0.0,0.0,7.877,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.679,41.679,41.679,41.679,0.0,0.0,0.0,0.0,0.0,0.0,7.235,0.0,0.047,0.0,4.105,0.0,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,16.192,0.047,10.856,9.075,0.615,0.0,0.0,0.0,0.0,4784.3,2906.8,4784.3,16.439,11.9,0.0,3.742,3.642,0.513,7.526,0.63,10.096,-12.676,0.0,0.0,0.0,8.315,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.05,-0.448,-0.05,2.73,-0.022,-1.353,11.737,0.0,0.0,0.0,-6.268,-0.061,-1.147,-3.817,-0.163,0.0,0.0,7.875,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.788,57.788,35.664,35.664,22.124,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.214,0.792,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.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,13.749,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3368.6,3368.6,23.032,18.891,0.0,3.516,3.607,0.508,7.533,0.617,9.946,-12.591,0.0,0.0,0.0,8.259,-0.033,4.753,0.0,0.723,0.0,4.806,-8.79,-2.477,0.0,-0.074,-0.481,-0.054,2.741,-0.035,-1.499,11.822,0.0,0.0,0.0,-6.321,-0.029,-1.196,-3.849,-0.17,0.0,3.052,7.989,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.81,56.81,35.088,35.088,21.722,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.738,0.698,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,21.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,19.968,0.0,11.864,9.075,0.616,0.0,0.0,101.0,39.0,2155.4,3622.1,3622.1,34.947,20.795,0.0,3.517,3.579,0.503,7.526,0.608,9.826,-12.674,0.0,0.0,0.0,8.696,0.007,4.652,0.0,0.727,0.0,4.504,-8.859,-2.496,0.0,-0.046,-0.477,-0.054,2.68,-0.036,-1.514,11.74,0.0,0.0,0.0,-6.553,-0.003,-1.191,-4.267,-0.171,0.0,2.371,7.921,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.182,56.182,35.242,35.242,20.941,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.876,0.725,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.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.521,0.0,12.472,9.075,0.617,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.321,0.0,3.507,3.561,0.5,7.358,0.604,9.775,-12.716,0.0,0.0,0.0,8.214,-0.022,4.638,0.0,0.724,0.0,4.392,-8.884,-2.501,0.0,-0.033,-0.475,-0.054,2.629,-0.035,-1.51,11.697,0.0,0.0,0.0,-6.537,-0.023,-1.176,-4.187,-0.174,0.0,2.531,7.897,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.141,41.141,33.839,33.839,7.301,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.911,0.484,9.048,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,6.832,0.0,8.482,9.075,0.648,0.0,0.0,0.0,0.0,2101.0,3099.9,3099.9,17.396,16.056,0.0,2.849,2.784,0.389,5.358,0.41,7.446,-12.563,0.0,0.0,0.0,5.534,-0.056,3.474,0.0,0.571,0.0,1.562,-8.807,-2.473,0.0,-0.074,-0.525,-0.06,2.493,-0.046,-1.622,11.85,0.0,0.0,0.0,-7.34,-0.056,-1.202,-6.392,-0.181,0.0,1.962,8.005,2.036,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-hvac-space-heater-gas-only.xml,46.33,46.33,30.271,30.271,16.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,2019.6,1637.3,2019.6,16.439,0.0,0.0,3.744,3.644,0.513,7.512,0.631,10.105,-12.676,0.0,0.0,0.0,8.169,-0.068,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.636,51.636,30.337,30.337,0.0,21.299,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2022.6,1593.9,2022.6,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.636,51.636,30.337,30.337,0.0,0.0,0.0,0.0,21.299,0.0,0.0,0.065,0.0,0.0,0.0,0.0,8.996,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.09,0.0,0.0,9.075,0.592,0.0,0.0,0.0,0.0,2022.6,1593.9,2022.6,16.995,0.0,0.0,3.743,3.642,0.513,7.504,0.631,10.1,-12.683,0.0,0.0,0.0,8.173,-0.067,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.5,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.234,48.234,32.965,32.965,15.269,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.067,0.343,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,15.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,14.297,0.0,6.253,9.075,0.631,0.0,0.0,3657.0,2471.0,2088.0,1828.5,2088.0,3.827,2.735,0.0,2.697,2.923,0.409,5.374,0.449,7.9,-12.797,0.0,0.0,0.0,4.777,-0.12,3.615,0.0,0.6,0.0,9.553,-9.006,-2.517,0.0,-0.34,-0.774,-0.097,1.683,-0.107,-2.372,11.616,0.0,0.0,0.0,-7.925,-0.064,-1.381,-6.016,-0.23,0.0,2.748,7.789,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.658,46.658,46.658,46.658,0.0,0.0,0.0,0.0,0.0,0.0,16.387,0.0,0.0,0.0,0.0,0.0,8.995,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.046,0.0,0.0,9.075,0.591,0.0,0.0,0.0,0.0,6008.3,1637.3,6008.3,16.439,0.0,0.0,3.744,3.644,0.513,7.512,0.631,10.105,-12.676,0.0,0.0,0.0,8.169,-0.068,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 cc18b2507..2b9df1d06 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -1,296 +1,284 @@ 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,1812.07,144.0,1207.51,0.0,1351.51,144.0,243.55,387.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,73.01,73.01 -base-appliances-dehumidifier-ief-portable.xml,1507.23,144.0,1201.13,0.0,1345.13,144.0,18.1,162.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,1508.15,144.0,1202.19,0.0,1346.19,144.0,17.96,161.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-appliances-dehumidifier-multiple.xml,1505.44,144.0,1198.92,0.0,1342.92,144.0,18.52,162.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-appliances-dehumidifier.xml,1506.03,144.0,1200.05,0.0,1344.05,144.0,17.98,161.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-appliances-freezer-temperature-dependent-schedule.xml,1889.06,144.0,1358.0,0.0,1502.0,144.0,243.06,387.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-appliances-gas.xml,1790.62,144.0,1207.51,0.0,1351.51,144.0,295.11,439.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,1871.4,144.0,1342.21,0.0,1486.21,144.0,241.19,385.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-appliances-none.xml,1592.6,144.0,1035.12,0.0,1179.12,144.0,269.48,413.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-appliances-oil.xml,1909.29,144.0,1207.51,0.0,1351.51,144.0,243.55,387.55,0.0,170.23,170.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,1871.18,144.0,1207.51,0.0,1351.51,144.0,243.55,387.55,0.0,0.0,0.0,0.0,132.12,132.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-appliances-wood.xml,1812.07,144.0,1207.51,0.0,1351.51,144.0,243.55,387.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.01,73.01,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,1872.94,144.0,1301.87,0.0,1445.87,144.0,283.07,427.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,2017.14,144.0,1476.82,0.0,1620.82,144.0,252.32,396.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-atticroof-flat.xml,1781.53,144.0,1275.89,0.0,1419.89,144.0,217.64,361.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 -base-atticroof-radiant-barrier-ceiling.xml,1559.63,144.0,1217.87,0.0,1361.87,144.0,53.76,197.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-atticroof-radiant-barrier.xml,1535.89,144.0,1201.73,0.0,1345.73,144.0,46.16,190.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-atticroof-unvented-insulated-roof.xml,1812.97,144.0,1282.02,0.0,1426.02,144.0,242.95,386.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-atticroof-vented.xml,1830.36,144.0,1294.36,0.0,1438.36,144.0,248.0,392.0,0.0,0.0,0.0,0.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,1907.47,144.0,1369.2,0.0,1513.2,144.0,250.27,394.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-battery.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-multifamily-buffer-space.xml,1307.87,144.0,882.29,0.0,1026.29,144.0,137.58,281.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,1282.02,144.0,915.4,0.0,1059.4,144.0,78.62,222.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-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1441.38,144.0,873.07,0.0,1017.07,144.0,280.31,424.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-adjacent-to-other-heated-space.xml,1196.71,144.0,888.54,0.0,1032.54,144.0,20.17,164.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1216.48,144.0,911.1,0.0,1055.1,144.0,17.38,161.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1248.57,144.0,952.48,0.0,1096.48,144.0,8.09,152.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-bldgtype-mf-unit-residents-1.xml,982.17,144.0,679.25,0.0,823.25,144.0,14.92,158.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-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1268.56,144.0,970.8,0.0,1114.8,144.0,9.76,153.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-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1295.32,144.0,996.9,0.0,1140.9,144.0,10.42,154.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1278.49,144.0,981.24,0.0,1125.24,144.0,9.25,153.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-chiller-water-loop-heat-pump.xml,1423.25,144.0,1127.65,0.0,1271.65,144.0,7.6,151.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1287.23,144.0,991.63,0.0,1135.63,144.0,7.6,151.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1133.54,144.0,837.09,0.0,981.09,144.0,8.45,152.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1135.18,144.0,838.17,0.0,982.17,144.0,9.01,153.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1139.05,144.0,845.0,0.0,989.0,144.0,6.05,150.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1135.02,144.0,839.02,0.0,983.02,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 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1133.14,144.0,838.57,0.0,982.57,144.0,6.57,150.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 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1110.91,144.0,966.91,0.0,1110.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-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1135.59,144.0,991.59,0.0,1135.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-chiller-only-fan-coil.xml,1119.03,144.0,975.03,0.0,1119.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-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1264.61,144.0,1120.61,0.0,1264.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1129.91,144.0,985.91,0.0,1129.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-bldgtype-mf-unit-shared-generator.xml,1632.51,144.0,950.43,0.0,1094.43,144.0,9.53,153.53,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,1181.57,144.0,1037.57,0.0,1181.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 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1052.69,144.0,603.14,0.0,747.14,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-bldgtype-mf-unit-shared-laundry-room.xml,1025.86,144.0,596.45,0.0,740.45,144.0,141.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 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1626.05,144.0,1117.08,0.0,1261.08,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 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1340.84,144.0,992.92,0.0,1136.92,144.0,59.92,203.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-bldgtype-mf-unit-shared-mechvent.xml,1321.14,144.0,988.12,0.0,1132.12,144.0,45.02,189.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-bldgtype-mf-unit-shared-pv-battery.xml,382.88,144.0,982.48,-897.13,229.35,144.0,9.53,153.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-pv.xml,350.72,144.0,950.43,-897.25,197.19,144.0,9.53,153.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-water-heater-recirc-scheduled.xml,1067.48,144.0,637.45,0.0,781.45,144.0,142.03,286.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1067.48,144.0,637.45,0.0,781.45,144.0,142.03,286.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-bldgtype-mf-unit-shared-water-heater.xml,1027.25,144.0,597.22,0.0,741.22,144.0,142.03,286.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-bldgtype-mf-unit.xml,1247.96,144.0,950.43,0.0,1094.43,144.0,9.53,153.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-whole-building.xml,8869.62,864.0,8005.62,0.0,8869.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 -base-bldgtype-sfa-unit-2stories.xml,1734.05,144.0,1259.13,0.0,1403.13,144.0,186.92,330.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-bldgtype-sfa-unit-atticroof-cathedral.xml,2294.65,144.0,1355.0,0.0,1499.0,144.0,651.65,795.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-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1518.68,144.0,1085.58,0.0,1229.58,144.0,145.1,289.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit.xml,1518.68,144.0,1085.58,0.0,1229.58,144.0,145.1,289.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless-outside.xml,1398.73,144.0,784.24,0.0,928.24,144.0,326.49,470.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,1411.6,144.0,784.5,0.0,928.5,144.0,339.1,483.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,1307.1,144.0,1163.1,0.0,1307.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,1548.5,144.0,1404.5,0.0,1548.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,144.0,1081.92,0.0,1225.92,144.0,297.37,441.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-dhw-desuperheater-tankless.xml,1364.87,144.0,1220.87,0.0,1364.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-dhw-desuperheater-var-speed.xml,1275.78,144.0,1131.78,0.0,1275.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,1366.09,144.0,1222.09,0.0,1366.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,1761.21,144.0,1222.94,0.0,1366.94,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,1428.27,144.0,784.35,0.0,928.35,144.0,355.92,499.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,1801.43,144.0,1211.28,0.0,1355.28,144.0,229.16,373.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,72.99,72.99 +base-appliances-dehumidifier-ief-portable.xml,1519.15,144.0,1217.87,0.0,1361.87,144.0,13.28,157.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-appliances-dehumidifier-ief-whole-home.xml,1520.91,144.0,1219.82,0.0,1363.82,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.75,144.0,1214.72,0.0,1358.72,144.0,14.03,158.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-appliances-dehumidifier.xml,1517.83,144.0,1216.67,0.0,1360.67,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,1779.99,144.0,1211.28,0.0,1355.28,144.0,280.71,424.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,1861.5,144.0,1346.45,0.0,1490.45,144.0,227.05,371.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-appliances-none.xml,1578.04,144.0,1033.62,0.0,1177.62,144.0,256.42,400.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,1898.63,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1860.52,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1801.43,144.0,1211.28,0.0,1355.28,144.0,229.16,373.16,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,1866.09,144.0,1306.49,0.0,1450.49,144.0,271.6,415.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,2007.7,144.0,1480.07,0.0,1624.07,144.0,239.63,383.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-atticroof-flat.xml,1774.68,144.0,1280.47,0.0,1424.47,144.0,206.21,350.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-atticroof-radiant-barrier-ceiling.xml,1563.89,144.0,1226.49,0.0,1370.49,144.0,49.4,193.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-radiant-barrier.xml,1540.21,144.0,1210.2,0.0,1354.2,144.0,42.01,186.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,1805.81,144.0,1286.61,0.0,1430.61,144.0,231.2,375.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,1820.73,144.0,1298.65,0.0,1442.65,144.0,234.08,378.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,1897.43,144.0,1373.35,0.0,1517.35,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1315.97,144.0,904.8,0.0,1048.8,144.0,123.17,267.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1277.84,144.0,922.54,0.0,1066.54,144.0,67.3,211.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.34,144.0,905.24,0.0,1049.24,144.0,262.1,406.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1201.78,144.0,899.81,0.0,1043.81,144.0,13.97,157.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-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1218.63,144.0,919.28,0.0,1063.28,144.0,11.35,155.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-infil-compartmentalization-test.xml,1253.92,144.0,960.35,0.0,1104.35,144.0,5.57,149.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 +base-bldgtype-mf-unit-residents-1.xml,983.2,144.0,682.2,0.0,826.2,144.0,13.0,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 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1274.51,144.0,979.53,0.0,1123.53,144.0,6.98,150.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-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1302.11,144.0,1006.67,0.0,1150.67,144.0,7.44,151.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-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1284.49,144.0,989.88,0.0,1133.88,144.0,6.61,150.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1439.56,144.0,1146.13,0.0,1290.13,144.0,5.43,149.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1294.3,144.0,1000.87,0.0,1144.87,144.0,5.43,149.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1121.54,144.0,827.77,0.0,971.77,144.0,5.77,149.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.66,144.0,828.5,0.0,972.5,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 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1122.49,144.0,828.99,0.0,972.99,144.0,5.5,149.5,0.0,0.0,0.0,0.0,0.0,0.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,1125.41,144.0,833.42,0.0,977.42,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 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1122.54,144.0,829.06,0.0,973.06,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-shared-boiler-only-water-loop-heat-pump.xml,1121.26,144.0,828.77,0.0,972.77,144.0,4.49,148.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1121.67,144.0,977.67,0.0,1121.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1147.77,144.0,1003.77,0.0,1147.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-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.39,144.0,986.39,0.0,1130.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1285.87,144.0,1141.87,0.0,1285.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-cooling-tower-only-water-loop-heat-pump.xml,1141.68,144.0,997.68,0.0,1141.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-generator.xml,1637.42,144.0,958.12,0.0,1102.12,144.0,6.75,150.75,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,1186.01,144.0,1042.01,0.0,1186.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 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1057.68,144.0,610.85,0.0,754.85,144.0,158.83,302.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-laundry-room.xml,1030.47,144.0,604.09,0.0,748.09,144.0,138.38,282.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.98,144.0,1124.25,0.0,1268.25,144.0,213.73,357.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 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1344.11,144.0,1001.78,0.0,1145.78,144.0,54.33,198.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1319.28,144.0,995.3,0.0,1139.3,144.0,35.98,179.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-bldgtype-mf-unit-shared-pv-battery.xml,387.27,144.0,989.66,-897.13,236.52,144.0,6.75,150.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-bldgtype-mf-unit-shared-pv.xml,355.63,144.0,958.12,-897.25,204.88,144.0,6.75,150.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-bldgtype-mf-unit-shared-water-heater-recirc.xml,1071.77,144.0,644.87,0.0,788.87,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,0.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,1031.55,144.0,604.65,0.0,748.65,144.0,138.9,282.9,0.0,0.0,0.0,0.0,0.0,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,1252.87,144.0,958.12,0.0,1102.12,144.0,6.75,150.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-bldgtype-sfa-unit-2stories.xml,1725.28,144.0,1263.51,0.0,1407.51,144.0,173.77,317.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2288.6,144.0,1361.28,0.0,1505.28,144.0,639.32,783.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-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1511.73,144.0,1092.09,0.0,1236.09,144.0,131.64,275.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 +base-bldgtype-sfa-unit.xml,1511.73,144.0,1092.09,0.0,1236.09,144.0,131.64,275.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 +base-dhw-combi-tankless-outside.xml,1388.83,144.0,786.24,0.0,930.24,144.0,314.59,458.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,1401.74,144.0,786.59,0.0,930.59,144.0,327.15,471.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-desuperheater-2-speed.xml,1318.01,144.0,1174.01,0.0,1318.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 +base-dhw-desuperheater-gshp.xml,1539.38,144.0,1395.38,0.0,1539.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-dhw-desuperheater-hpwh.xml,1655.93,144.0,1085.28,0.0,1229.28,144.0,282.65,426.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-dhw-desuperheater-tankless.xml,1376.47,144.0,1232.47,0.0,1376.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-dhw-desuperheater-var-speed.xml,1286.77,144.0,1142.77,0.0,1286.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-dhw-desuperheater.xml,1377.5,144.0,1233.5,0.0,1377.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1751.2,144.0,1227.12,0.0,1371.12,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,1418.24,144.0,786.18,0.0,930.18,144.0,344.06,488.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-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-outside.xml,1444.5,144.0,784.24,0.0,928.24,144.0,372.26,516.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,1432.21,144.0,784.32,0.0,928.32,144.0,359.89,503.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,1346.98,144.0,784.44,0.0,928.44,144.0,274.54,418.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,1429.67,144.0,784.35,0.0,928.35,144.0,357.32,501.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,1834.96,144.0,1294.38,0.0,1438.38,144.0,252.58,396.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,1674.49,144.0,979.25,0.0,1123.25,144.0,407.24,551.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-dhw-jacket-hpwh.xml,1663.3,144.0,1077.61,0.0,1221.61,144.0,297.69,441.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-dhw-jacket-indirect.xml,1427.52,144.0,784.37,0.0,928.37,144.0,355.15,499.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,1836.49,144.0,1298.22,0.0,1442.22,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,1404.47,144.0,855.15,0.0,999.15,144.0,261.32,405.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,1434.67,144.0,891.29,0.0,1035.29,144.0,255.38,399.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand-scheduled.xml,1842.79,144.0,1304.52,0.0,1448.52,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,1842.79,144.0,1304.52,0.0,1448.52,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,1827.38,144.0,1289.11,0.0,1433.11,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,2383.35,144.0,1845.08,0.0,1989.08,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,2205.33,144.0,1667.06,0.0,1811.06,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,2383.35,144.0,1845.08,0.0,1989.08,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,1631.3,144.0,1093.03,0.0,1237.03,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,1578.73,144.0,1040.56,0.0,1184.56,144.0,250.17,394.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,1634.01,144.0,1095.74,0.0,1239.74,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,1631.17,144.0,1090.01,0.0,1234.01,144.0,253.16,397.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-solar-indirect-flat-plate.xml,1577.98,144.0,1043.64,0.0,1187.64,144.0,246.34,390.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,1568.16,144.0,1029.98,0.0,1173.98,144.0,250.18,394.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-dhw-tank-coal.xml,1750.89,144.0,981.13,0.0,1125.13,144.0,252.57,396.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,229.19,229.19 -base-dhw-tank-detailed-setpoints.xml,1844.16,144.0,1305.96,0.0,1449.96,144.0,250.2,394.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,1846.91,144.0,1309.19,0.0,1453.19,144.0,249.72,393.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-tank-gas-outside.xml,1696.52,144.0,973.59,0.0,1117.59,144.0,434.93,578.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-tank-gas-uef-fhr.xml,1679.18,144.0,979.81,0.0,1123.81,144.0,411.37,555.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-dhw-tank-gas-uef.xml,1679.18,144.0,979.81,0.0,1123.81,144.0,411.37,555.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-dhw-tank-gas.xml,1683.57,144.0,981.13,0.0,1125.13,144.0,414.44,558.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1640.55,144.0,1046.45,0.0,1190.45,144.0,306.1,450.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1634.31,144.0,1039.73,0.0,1183.73,144.0,306.58,450.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,1762.9,144.0,1220.2,0.0,1364.2,144.0,254.7,398.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 -base-dhw-tank-heat-pump-uef.xml,1634.31,144.0,1039.73,0.0,1183.73,144.0,306.58,450.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1571.02,144.0,1013.75,0.0,1157.75,144.0,269.27,413.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,1581.1,144.0,1035.86,0.0,1179.86,144.0,257.24,401.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-dhw-tank-heat-pump.xml,1667.09,144.0,1082.4,0.0,1226.4,144.0,296.69,440.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-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1823.84,144.0,1288.21,0.0,1432.21,144.0,247.63,391.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-dhw-tank-model-type-stratified.xml,1828.32,144.0,1285.76,0.0,1429.76,144.0,254.56,398.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,2056.1,144.0,981.13,0.0,1125.13,144.0,252.57,396.57,0.0,534.4,534.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,1750.89,144.0,981.13,0.0,1125.13,144.0,252.57,396.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.19,229.19,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,1634.58,144.0,973.59,0.0,1117.59,144.0,372.99,516.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-electric-outside.xml,1856.45,144.0,1313.75,0.0,1457.75,144.0,254.7,398.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 -base-dhw-tankless-electric-uef.xml,1852.61,144.0,1309.91,0.0,1453.91,144.0,254.7,398.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 -base-dhw-tankless-electric.xml,1856.45,144.0,1313.75,0.0,1457.75,144.0,254.7,398.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 -base-dhw-tankless-gas-uef.xml,1618.59,144.0,973.59,0.0,1117.59,144.0,357.0,501.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,1557.78,144.0,973.59,0.0,1117.59,144.0,296.19,440.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,1544.39,144.0,989.2,0.0,1133.2,144.0,267.19,411.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,1634.84,144.0,973.59,0.0,1117.59,144.0,373.25,517.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-dhw-tankless-propane.xml,1820.04,144.0,973.59,0.0,1117.59,144.0,254.7,398.7,0.0,0.0,0.0,0.0,303.75,303.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,2052.45,144.0,1489.52,0.0,1633.52,144.0,274.93,418.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-enclosure-2stories.xml,2225.43,144.0,1610.98,0.0,1754.98,144.0,326.45,470.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-enclosure-beds-1.xml,1668.25,144.0,1113.89,0.0,1257.89,144.0,266.36,410.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-enclosure-beds-2.xml,1757.76,144.0,1211.47,0.0,1355.47,144.0,258.29,402.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-enclosure-beds-4.xml,1930.24,144.0,1399.9,0.0,1543.9,144.0,242.34,386.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-enclosure-beds-5.xml,2015.2,144.0,1492.74,0.0,1636.74,144.0,234.46,378.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-enclosure-ceilingtypes.xml,2028.45,144.0,1325.41,0.0,1469.41,144.0,415.04,559.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,1765.93,144.0,1065.7,0.0,1209.7,144.0,412.23,556.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-garage.xml,1801.17,144.0,1246.4,0.0,1390.4,144.0,266.77,410.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-enclosure-infil-ach-house-pressure.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-enclosure-infil-cfm-house-pressure.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-enclosure-infil-cfm50.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-enclosure-infil-ela.xml,1926.5,144.0,1307.25,0.0,1451.25,144.0,331.25,475.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,1859.62,144.0,1306.37,0.0,1450.37,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 -base-enclosure-infil-natural-ach.xml,1926.5,144.0,1307.25,0.0,1451.25,144.0,331.25,475.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,1926.5,144.0,1307.25,0.0,1451.25,144.0,331.25,475.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,1846.36,144.0,1305.45,0.0,1449.45,144.0,252.91,396.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-enclosure-overhangs.xml,1841.76,144.0,1300.32,0.0,1444.32,144.0,253.44,397.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-rooftypes.xml,1839.72,144.0,1300.54,0.0,1444.54,144.0,251.18,395.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-enclosure-skylights-physical-properties.xml,1898.76,144.0,1345.78,0.0,1489.78,144.0,264.98,408.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-enclosure-skylights-shading.xml,1857.85,144.0,1308.04,0.0,1452.04,144.0,261.81,405.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 -base-enclosure-skylights-storms.xml,1868.79,144.0,1333.32,0.0,1477.32,144.0,247.47,391.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-skylights.xml,1868.63,144.0,1336.88,0.0,1480.88,144.0,243.75,387.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-split-level.xml,1481.18,144.0,1068.52,0.0,1212.52,144.0,124.66,268.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-enclosure-thermal-mass.xml,1841.0,144.0,1304.3,0.0,1448.3,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 -base-enclosure-walltypes.xml,1990.8,144.0,1260.66,0.0,1404.66,144.0,442.14,586.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,1806.3,144.0,1267.23,0.0,1411.23,144.0,251.07,395.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-enclosure-windows-none.xml,1802.47,144.0,1235.73,0.0,1379.73,144.0,278.74,422.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-enclosure-windows-physical-properties.xml,1930.89,144.0,1311.18,0.0,1455.18,144.0,331.71,475.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-enclosure-windows-shading-seasons.xml,1844.51,144.0,1307.33,0.0,1451.33,144.0,249.18,393.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-enclosure-windows-shading.xml,1779.11,144.0,1218.05,0.0,1362.05,144.0,273.06,417.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,1840.38,144.0,1285.47,0.0,1429.47,144.0,266.91,410.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-ambient.xml,1582.2,144.0,1100.2,0.0,1244.2,144.0,194.0,338.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-basement-garage.xml,1694.81,144.0,1184.82,0.0,1328.82,144.0,221.99,365.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-belly-wing-no-skirt.xml,1579.15,144.0,1067.0,0.0,1211.0,144.0,224.15,368.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-foundation-belly-wing-skirt.xml,1575.35,144.0,1067.28,0.0,1211.28,144.0,220.07,364.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-foundation-complex.xml,2082.77,144.0,1353.78,0.0,1497.78,144.0,440.99,584.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-conditioned-basement-slab-insulation-full.xml,1828.8,144.0,1324.99,0.0,1468.99,144.0,215.81,359.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 -base-foundation-conditioned-basement-slab-insulation.xml,1837.65,144.0,1313.66,0.0,1457.66,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 -base-foundation-conditioned-basement-wall-insulation.xml,1820.63,144.0,1290.67,0.0,1434.67,144.0,241.96,385.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-foundation-conditioned-crawlspace.xml,1535.94,144.0,1047.8,0.0,1191.8,144.0,200.14,344.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-foundation-multiple.xml,1500.29,144.0,1068.82,0.0,1212.82,144.0,143.47,287.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-foundation-slab.xml,1469.07,144.0,1063.41,0.0,1207.41,144.0,117.66,261.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-foundation-unconditioned-basement-above-grade.xml,1514.2,144.0,1071.5,0.0,1215.5,144.0,154.7,298.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 -base-foundation-unconditioned-basement-assembly-r.xml,1470.71,144.0,1050.53,0.0,1194.53,144.0,132.18,276.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-unconditioned-basement-wall-insulation.xml,1553.46,144.0,1047.54,0.0,1191.54,144.0,217.92,361.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-unconditioned-basement.xml,1500.91,144.0,1068.93,0.0,1212.93,144.0,143.98,287.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unvented-crawlspace.xml,1492.03,144.0,1084.31,0.0,1228.31,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 -base-foundation-vented-crawlspace-above-grade.xml,1516.39,144.0,1088.06,0.0,1232.06,144.0,140.33,284.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-foundation-vented-crawlspace.xml,1511.49,144.0,1082.35,0.0,1226.35,144.0,141.14,285.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-foundation-walkout-basement.xml,1917.39,144.0,1319.49,0.0,1463.49,144.0,309.9,453.9,0.0,0.0,0.0,0.0,0.0,0.0,0.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,1401.79,144.0,1257.79,0.0,1401.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-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1825.26,144.0,1681.26,0.0,1825.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-air-to-air-heat-pump-1-speed-heating-only.xml,1697.47,144.0,1553.47,0.0,1697.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-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1820.26,144.0,1676.26,0.0,1820.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-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1827.57,144.0,1683.57,0.0,1827.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 -base-hvac-air-to-air-heat-pump-1-speed.xml,1825.26,144.0,1681.26,0.0,1825.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-air-to-air-heat-pump-2-speed.xml,1672.21,144.0,1528.21,0.0,1672.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,1630.74,144.0,1486.74,0.0,1630.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1873.06,144.0,1422.19,0.0,1566.19,144.0,162.87,306.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,1874.23,144.0,1379.47,0.0,1523.47,144.0,206.76,350.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1876.99,144.0,1426.07,0.0,1570.07,144.0,162.92,306.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,1881.32,144.0,1431.8,0.0,1575.8,144.0,161.52,305.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-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1722.12,144.0,1578.12,0.0,1722.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-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1709.04,144.0,1565.04,0.0,1709.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 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1707.47,144.0,1563.47,0.0,1707.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-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1997.4,144.0,1853.4,0.0,1997.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 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1705.99,144.0,1561.99,0.0,1705.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-var-speed.xml,1652.84,144.0,1508.84,0.0,1652.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,1921.7,144.0,1551.42,0.0,1695.42,144.0,82.28,226.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-hvac-autosize.xml,1852.62,144.0,1308.46,0.0,1452.46,144.0,256.16,400.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-hvac-boiler-coal-only.xml,1563.0,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.17,301.17 -base-hvac-boiler-elec-only.xml,1953.05,144.0,1809.05,0.0,1953.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1816.7,144.0,1313.12,0.0,1457.12,144.0,215.58,359.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,1668.39,144.0,1114.22,0.0,1258.22,144.0,266.17,410.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,1615.89,144.0,1114.22,0.0,1258.22,144.0,213.67,357.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,1964.06,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,702.23,702.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,1805.47,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,548.09,548.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,1560.25,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,302.87,302.87,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,1441.64,144.0,1297.64,0.0,1441.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-hvac-central-ac-only-1-speed.xml,1442.1,144.0,1298.1,0.0,1442.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-central-ac-only-2-speed.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 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1406.85,144.0,1262.85,0.0,1406.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-hvac-central-ac-only-var-speed-detailed-performance.xml,1367.63,144.0,1223.63,0.0,1367.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-central-ac-only-var-speed.xml,1354.62,144.0,1210.62,0.0,1354.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 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1899.82,144.0,1755.82,0.0,1899.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,1434.6,144.0,786.24,0.0,930.24,144.0,360.36,504.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-dhw-indirect-standbyloss.xml,1422.18,144.0,786.12,0.0,930.12,144.0,348.06,492.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-dhw-indirect-with-solar-fraction.xml,1337.04,144.0,786.45,0.0,930.45,144.0,262.59,406.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,1419.67,144.0,786.19,0.0,930.19,144.0,345.48,489.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-jacket-electric.xml,1824.91,144.0,1298.56,0.0,1442.56,144.0,238.35,382.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,1664.35,144.0,983.29,0.0,1127.29,144.0,393.06,537.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-dhw-jacket-hpwh.xml,1651.9,144.0,1081.05,0.0,1225.05,144.0,282.85,426.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-dhw-jacket-indirect.xml,1417.54,144.0,786.25,0.0,930.25,144.0,343.29,487.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-dhw-low-flow-fixtures.xml,1826.49,144.0,1302.41,0.0,1446.41,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,1394.46,144.0,856.94,0.0,1000.94,144.0,249.52,393.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-none.xml,1421.29,144.0,897.55,0.0,1041.55,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 +base-dhw-recirc-demand.xml,1832.8,144.0,1308.72,0.0,1452.72,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,1817.39,144.0,1293.31,0.0,1437.31,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,2373.5,144.0,1849.42,0.0,1993.42,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,2195.44,144.0,1671.36,0.0,1815.36,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,2373.5,144.0,1849.42,0.0,1993.42,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,1621.65,144.0,1097.57,0.0,1241.57,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,1569.05,144.0,1045.07,0.0,1189.07,144.0,235.98,379.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-solar-direct-ics.xml,1624.46,144.0,1100.38,0.0,1244.38,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,1621.04,144.0,1094.11,0.0,1238.11,144.0,238.93,382.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-solar-indirect-flat-plate.xml,1568.38,144.0,1048.15,0.0,1192.15,144.0,232.23,376.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-dhw-solar-thermosyphon-flat-plate.xml,1558.61,144.0,1034.62,0.0,1178.62,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 +base-dhw-tank-coal.xml,1740.82,144.0,985.18,0.0,1129.18,144.0,238.41,382.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,229.23,229.23 +base-dhw-tank-detailed-setpoints.xml,1834.14,144.0,1310.13,0.0,1454.13,144.0,236.01,380.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,1836.9,144.0,1313.37,0.0,1457.37,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-tank-gas-outside.xml,1686.37,144.0,977.62,0.0,1121.62,144.0,420.75,564.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-tank-gas-uef-fhr.xml,1669.06,144.0,983.86,0.0,1127.86,144.0,397.2,541.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,1669.06,144.0,983.86,0.0,1127.86,144.0,397.2,541.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,1673.48,144.0,985.18,0.0,1129.18,144.0,400.3,544.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-dhw-tank-heat-pump-detailed-schedules.xml,1629.54,144.0,1050.23,0.0,1194.23,144.0,291.31,435.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-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1623.14,144.0,1043.48,0.0,1187.48,144.0,291.66,435.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-dhw-tank-heat-pump-outside.xml,1753.31,144.0,1224.84,0.0,1368.84,144.0,240.47,384.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-tank-heat-pump-uef.xml,1623.14,144.0,1043.48,0.0,1187.48,144.0,291.66,435.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-dhw-tank-heat-pump-with-solar-fraction.xml,1560.35,144.0,1017.62,0.0,1161.62,144.0,254.73,398.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 +base-dhw-tank-heat-pump-with-solar.xml,1570.69,144.0,1039.44,0.0,1183.44,144.0,243.25,387.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-dhw-tank-heat-pump.xml,1655.67,144.0,1085.75,0.0,1229.75,144.0,281.92,425.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1828.73,144.0,1294.03,0.0,1438.03,144.0,246.7,390.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 +base-dhw-tank-model-type-stratified.xml,1818.26,144.0,1289.93,0.0,1433.93,144.0,240.33,384.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,2046.07,144.0,985.18,0.0,1129.18,144.0,238.41,382.41,0.0,534.48,534.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 +base-dhw-tank-wood.xml,1740.82,144.0,985.18,0.0,1129.18,144.0,238.41,382.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.23,229.23,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,1624.44,144.0,977.62,0.0,1121.62,144.0,358.82,502.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 +base-dhw-tankless-electric-outside.xml,1846.4,144.0,1317.93,0.0,1461.93,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,1842.56,144.0,1314.09,0.0,1458.09,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,1846.4,144.0,1317.93,0.0,1461.93,144.0,240.47,384.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,1608.44,144.0,977.62,0.0,1121.62,144.0,342.82,486.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 +base-dhw-tankless-gas-with-solar-fraction.xml,1547.6,144.0,977.62,0.0,1121.62,144.0,281.98,425.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,1534.49,144.0,993.29,0.0,1137.29,144.0,253.2,397.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,1624.69,144.0,977.62,0.0,1121.62,144.0,359.07,503.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-dhw-tankless-propane.xml,1809.98,144.0,977.62,0.0,1121.62,144.0,240.47,384.47,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,2042.96,144.0,1492.76,0.0,1636.76,144.0,262.2,406.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,2213.06,144.0,1613.22,0.0,1757.22,144.0,311.84,455.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-beds-1.xml,1661.0,144.0,1115.87,0.0,1259.87,144.0,257.13,401.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-beds-2.xml,1749.08,144.0,1214.51,0.0,1358.51,144.0,246.57,390.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 +base-enclosure-beds-4.xml,1919.01,144.0,1405.29,0.0,1549.29,144.0,225.72,369.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,2002.87,144.0,1499.41,0.0,1643.41,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 +base-enclosure-ceilingtypes.xml,2019.41,144.0,1330.17,0.0,1474.17,144.0,401.24,545.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-floortypes.xml,1761.05,144.0,1072.93,0.0,1216.93,144.0,400.12,544.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-enclosure-garage.xml,1805.52,144.0,1263.89,0.0,1407.89,144.0,253.63,397.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-infil-ach-house-pressure.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-infil-flue.xml,1849.58,144.0,1310.58,0.0,1454.58,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 +base-enclosure-infil-natural-ach.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-infil-natural-cfm.xml,1916.34,144.0,1311.52,0.0,1455.52,144.0,316.82,460.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 +base-enclosure-orientations.xml,1836.3,144.0,1309.61,0.0,1453.61,144.0,238.69,382.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-enclosure-overhangs.xml,1831.66,144.0,1304.46,0.0,1448.46,144.0,239.2,383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,1829.67,144.0,1304.68,0.0,1448.68,144.0,236.99,380.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-skylights-physical-properties.xml,1889.17,144.0,1350.14,0.0,1494.14,144.0,251.03,395.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,1847.9,144.0,1312.26,0.0,1456.26,144.0,247.64,391.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 +base-enclosure-skylights-storms.xml,1859.15,144.0,1337.61,0.0,1481.61,144.0,233.54,377.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-enclosure-skylights.xml,1859.01,144.0,1341.14,0.0,1485.14,144.0,229.87,373.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-split-level.xml,1479.02,144.0,1074.59,0.0,1218.59,144.0,116.43,260.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-thermal-mass.xml,1830.89,144.0,1308.47,0.0,1452.47,144.0,234.42,378.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,1981.28,144.0,1266.28,0.0,1410.28,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 +base-enclosure-windows-natural-ventilation-availability.xml,1795.81,144.0,1270.94,0.0,1414.94,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 +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,1921.0,144.0,1315.59,0.0,1459.59,144.0,317.41,461.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,1834.47,144.0,1311.46,0.0,1455.46,144.0,235.01,379.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,1769.13,144.0,1222.81,0.0,1366.81,144.0,258.32,402.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-enclosure-windows-storms.xml,1830.1,144.0,1289.72,0.0,1433.72,144.0,252.38,396.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,1578.64,144.0,1106.98,0.0,1250.98,144.0,183.66,327.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-foundation-basement-garage.xml,1687.92,144.0,1190.48,0.0,1334.48,144.0,209.44,353.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-foundation-belly-wing-no-skirt.xml,1573.61,144.0,1073.56,0.0,1217.56,144.0,212.05,356.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-foundation-belly-wing-skirt.xml,1569.85,144.0,1073.82,0.0,1217.82,144.0,208.03,352.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-complex.xml,2072.99,144.0,1358.41,0.0,1502.41,144.0,426.58,570.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1819.24,144.0,1329.27,0.0,1473.27,144.0,201.97,345.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-foundation-conditioned-basement-slab-insulation.xml,1827.75,144.0,1317.81,0.0,1461.81,144.0,221.94,365.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 +base-foundation-conditioned-basement-wall-insulation.xml,1810.87,144.0,1294.8,0.0,1438.8,144.0,228.07,372.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-foundation-conditioned-crawlspace.xml,1533.23,144.0,1054.42,0.0,1198.42,144.0,190.81,334.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 +base-foundation-multiple.xml,1508.4,144.0,1085.78,0.0,1229.78,144.0,134.62,278.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-foundation-slab.xml,1467.15,144.0,1069.57,0.0,1213.57,144.0,109.58,253.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,1524.38,144.0,1090.75,0.0,1234.75,144.0,145.63,289.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-foundation-unconditioned-basement-assembly-r.xml,1481.04,144.0,1069.67,0.0,1213.67,144.0,123.37,267.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,1552.94,144.0,1057.01,0.0,1201.01,144.0,207.93,351.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-foundation-unconditioned-basement.xml,1510.09,144.0,1087.02,0.0,1231.02,144.0,135.07,279.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-foundation-unvented-crawlspace.xml,1490.02,144.0,1090.65,0.0,1234.65,144.0,111.37,255.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,1514.02,144.0,1094.67,0.0,1238.67,144.0,131.35,275.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,1509.0,144.0,1088.9,0.0,1232.9,144.0,132.1,276.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,1907.33,144.0,1323.77,0.0,1467.77,144.0,295.56,439.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-air-to-air-heat-pump-1-speed-cooling-only.xml,1413.14,144.0,1269.14,0.0,1413.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-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1810.3,144.0,1666.3,0.0,1810.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-air-to-air-heat-pump-1-speed-heating-only.xml,1678.45,144.0,1534.45,0.0,1678.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1807.85,144.0,1663.85,0.0,1807.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-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1812.47,144.0,1668.47,0.0,1812.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-air-to-air-heat-pump-1-speed.xml,1810.3,144.0,1666.3,0.0,1810.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-air-to-air-heat-pump-2-speed.xml,1662.82,144.0,1518.82,0.0,1662.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-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1863.84,144.0,1417.75,0.0,1561.75,144.0,158.09,302.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1865.72,144.0,1375.89,0.0,1519.89,144.0,201.83,345.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1867.55,144.0,1421.4,0.0,1565.4,144.0,158.15,302.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1870.91,144.0,1426.46,0.0,1570.46,144.0,156.45,300.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-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1977.24,144.0,1833.24,0.0,1977.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-var-speed-detailed-performance.xml,1696.64,144.0,1552.64,0.0,1696.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-hvac-air-to-air-heat-pump-var-speed.xml,1643.22,144.0,1499.22,0.0,1643.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-autosize-sizing-controls.xml,1918.91,144.0,1561.59,0.0,1705.59,144.0,69.32,213.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-hvac-autosize.xml,1846.97,144.0,1315.31,0.0,1459.31,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 +base-hvac-boiler-coal-only.xml,1548.02,144.0,1119.66,0.0,1263.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,284.36,284.36 +base-hvac-boiler-elec-only.xml,1916.31,144.0,1772.31,0.0,1916.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-boiler-gas-central-ac-1-speed.xml,1809.29,144.0,1317.72,0.0,1461.72,144.0,203.57,347.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 +base-hvac-boiler-gas-only-pilot.xml,1658.67,144.0,1116.26,0.0,1260.26,144.0,254.41,398.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,1606.0,144.0,1116.26,0.0,1260.26,144.0,201.74,345.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-hvac-boiler-oil-only.xml,1926.69,144.0,1119.66,0.0,1263.66,0.0,0.0,0.0,0.0,663.03,663.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 +base-hvac-boiler-propane-only.xml,1776.97,144.0,1115.47,0.0,1259.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,517.5,517.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,1545.44,144.0,1115.47,0.0,1259.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.97,285.97,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,1452.99,144.0,1308.99,0.0,1452.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-central-ac-only-1-speed.xml,1453.45,144.0,1309.45,0.0,1453.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,1395.13,144.0,1251.13,0.0,1395.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1378.61,144.0,1234.61,0.0,1378.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,1365.55,144.0,1221.55,0.0,1365.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1883.25,144.0,1739.25,0.0,1883.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-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,1929.11,144.0,1524.89,0.0,1668.89,144.0,116.22,260.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-air-to-air-heat-pump-1-speed.xml,1931.09,144.0,1485.6,0.0,1629.6,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 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1823.01,144.0,1373.26,0.0,1517.26,144.0,161.75,305.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-dual-fuel-air-to-air-heat-pump-var-speed.xml,1809.75,144.0,1358.67,0.0,1502.67,144.0,163.08,307.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1731.8,144.0,1318.17,0.0,1462.17,144.0,125.63,269.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-hvac-ducts-area-fractions.xml,2490.59,144.0,1696.87,0.0,1840.87,144.0,505.72,649.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-ducts-area-multipliers.xml,1832.83,144.0,1301.74,0.0,1445.74,144.0,243.09,387.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,1808.51,144.0,1293.01,0.0,1437.01,144.0,227.5,371.5,0.0,0.0,0.0,0.0,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.76,144.0,1486.45,0.0,1630.45,144.0,159.31,303.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-hvac-ducts-effective-rvalue.xml,1844.53,144.0,1306.3,0.0,1450.3,144.0,250.23,394.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-leakage-cfm50.xml,1835.48,144.0,1302.35,0.0,1446.35,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 -base-hvac-ducts-leakage-percent.xml,1863.06,144.0,1313.48,0.0,1457.48,144.0,261.58,405.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,1878.55,144.0,1734.55,0.0,1878.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,1704.87,144.0,1159.95,0.0,1303.95,144.0,256.92,400.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-evap-cooler-only-ducted.xml,1278.63,144.0,1134.63,0.0,1278.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-evap-cooler-only.xml,1275.5,144.0,1131.5,0.0,1275.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,1592.06,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.53,339.53,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,2001.42,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,748.89,748.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,1636.18,144.0,1131.54,0.0,1275.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,360.64,360.64 -base-hvac-furnace-elec-central-ac-1-speed.xml,2248.02,144.0,2104.02,0.0,2248.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-furnace-elec-only.xml,2103.88,144.0,1959.88,0.0,2103.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 -base-hvac-furnace-gas-central-ac-2-speed.xml,1798.3,144.0,1260.03,0.0,1404.03,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.04,144.0,1231.77,0.0,1375.77,144.0,250.27,394.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-hvac-furnace-gas-only-detailed-setpoints.xml,1490.84,144.0,1112.79,0.0,1256.79,144.0,90.05,234.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-furnace-gas-only-pilot.xml,1726.0,144.0,1131.54,0.0,1275.54,144.0,306.46,450.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-hvac-furnace-gas-only.xml,1674.23,144.0,1131.54,0.0,1275.54,144.0,254.69,398.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-hvac-furnace-gas-room-ac.xml,1870.34,144.0,1325.42,0.0,1469.42,144.0,256.92,400.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-furnace-oil-only.xml,2116.41,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0.0,840.87,840.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 -base-hvac-furnace-propane-only.xml,1928.15,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,652.61,652.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,1636.18,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,360.64,360.64,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,1917.47,144.0,1516.54,0.0,1660.54,144.0,112.93,256.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1920.6,144.0,1479.87,0.0,1623.87,144.0,152.73,296.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 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1815.75,144.0,1370.78,0.0,1514.78,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 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1802.48,144.0,1356.14,0.0,1500.14,144.0,158.34,302.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1726.0,144.0,1316.93,0.0,1460.93,144.0,121.07,265.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-hvac-ducts-area-fractions.xml,2472.12,144.0,1698.66,0.0,1842.66,144.0,485.46,629.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-hvac-ducts-area-multipliers.xml,1823.2,144.0,1305.91,0.0,1449.91,144.0,229.29,373.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-ducts-buried.xml,1799.7,144.0,1297.29,0.0,1441.29,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 +base-hvac-ducts-defaults.xml,1919.28,144.0,1481.24,0.0,1625.24,144.0,150.04,294.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-hvac-ducts-effective-rvalue.xml,1834.49,144.0,1310.45,0.0,1454.45,144.0,236.04,380.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-hvac-ducts-leakage-cfm50.xml,1825.62,144.0,1306.41,0.0,1450.41,144.0,231.21,375.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-ducts-leakage-percent.xml,1852.4,144.0,1317.56,0.0,1461.56,144.0,246.84,390.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-elec-resistance-only.xml,1844.36,144.0,1700.36,0.0,1844.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 +base-hvac-evap-cooler-furnace-gas.xml,1694.03,144.0,1163.59,0.0,1307.59,144.0,242.44,386.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-evap-cooler-only-ducted.xml,1289.72,144.0,1145.72,0.0,1289.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-evap-cooler-only.xml,1286.61,144.0,1142.61,0.0,1286.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,1575.69,144.0,1111.0,0.0,1255.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.69,320.69,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,1970.27,144.0,1111.0,0.0,1255.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,715.27,715.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,1616.84,144.0,1132.61,0.0,1276.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,340.23,340.23 +base-hvac-furnace-elec-central-ac-1-speed.xml,2206.93,144.0,2062.93,0.0,2206.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,2058.09,144.0,1914.09,0.0,2058.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1787.91,144.0,1263.83,0.0,1407.83,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1759.69,144.0,1235.61,0.0,1379.61,144.0,236.08,380.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.89,144.0,1119.62,0.0,1263.62,144.0,79.27,223.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-hvac-furnace-gas-only-pilot.xml,1712.88,144.0,1132.61,0.0,1276.61,144.0,292.27,436.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-hvac-furnace-gas-only.xml,1660.89,144.0,1132.61,0.0,1276.61,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 +base-hvac-furnace-gas-room-ac.xml,1860.09,144.0,1329.65,0.0,1473.65,144.0,242.44,386.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-furnace-oil-only.xml,2069.91,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,793.3,793.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 +base-hvac-furnace-propane-only.xml,1892.3,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,615.69,615.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,1616.84,144.0,1132.61,0.0,1276.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,340.23,340.23,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,1384.21,144.0,1240.21,0.0,1384.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1648.07,144.0,1504.07,0.0,1648.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-ground-to-air-heat-pump-heating-only.xml,1503.56,144.0,1359.56,0.0,1503.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-ground-to-air-heat-pump.xml,1627.61,144.0,1483.61,0.0,1627.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1943.48,144.0,1799.48,0.0,1943.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-install-quality-air-to-air-heat-pump-2-speed.xml,1772.34,144.0,1628.34,0.0,1772.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-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1833.87,144.0,1689.87,0.0,1833.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-install-quality-air-to-air-heat-pump-var-speed.xml,1770.34,144.0,1626.34,0.0,1770.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-install-quality-furnace-gas-central-ac-1-speed.xml,1886.25,144.0,1334.77,0.0,1478.77,144.0,263.48,407.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-furnace-gas-central-ac-2-speed.xml,1832.4,144.0,1280.98,0.0,1424.98,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1805.44,144.0,1254.02,0.0,1398.02,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,1685.77,144.0,1126.43,0.0,1270.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 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1711.54,144.0,1567.54,0.0,1711.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-install-quality-mini-split-air-conditioner-only-ducted.xml,1372.97,144.0,1228.97,0.0,1372.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-install-quality-mini-split-heat-pump-ducted.xml,1671.3,144.0,1527.3,0.0,1671.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-mini-split-air-conditioner-only-ducted.xml,1349.14,144.0,1205.14,0.0,1349.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-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1364.02,144.0,1220.02,0.0,1364.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1339.52,144.0,1195.52,0.0,1339.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1352.58,144.0,1208.58,0.0,1352.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1322.05,144.0,1178.05,0.0,1322.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-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1655.15,144.0,1511.15,0.0,1655.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1633.85,144.0,1489.85,0.0,1633.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-hvac-mini-split-heat-pump-ducted-heating-only.xml,1512.54,144.0,1368.54,0.0,1512.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.xml,1589.06,144.0,1445.06,0.0,1589.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-ductless-backup-baseboard.xml,1578.18,144.0,1434.18,0.0,1578.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1726.74,144.0,1339.84,0.0,1483.84,144.0,98.9,242.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1718.7,144.0,1332.7,0.0,1476.7,144.0,98.0,242.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1918.58,144.0,1330.02,0.0,1474.02,0.0,0.0,0.0,0.0,444.56,444.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1571.73,144.0,1427.73,0.0,1571.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-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1579.07,144.0,1435.07,0.0,1579.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2530.18,144.0,1928.4,0.0,2072.4,144.0,78.73,222.73,0.0,131.07,131.07,0.0,103.98,103.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,2608.01,144.0,2464.01,0.0,2608.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,2037.57,144.0,1893.57,0.0,2037.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,1777.89,144.0,1262.03,0.0,1406.03,144.0,227.86,371.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,1397.31,144.0,1253.31,0.0,1397.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,1312.17,144.0,1168.17,0.0,1312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,1436.8,144.0,1292.8,0.0,1436.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,1392.64,144.0,1248.64,0.0,1392.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,1436.44,144.0,1292.44,0.0,1436.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,2077.8,144.0,1933.8,0.0,2077.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,1841.08,144.0,1304.78,0.0,1448.78,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-setpoints-daily-schedules.xml,1814.29,144.0,1283.45,0.0,1427.45,144.0,242.84,386.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,1812.85,144.0,1289.17,0.0,1433.17,144.0,235.68,379.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-hvac-setpoints.xml,1609.98,144.0,1234.04,0.0,1378.04,144.0,87.94,231.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 -base-hvac-space-heater-gas-only.xml,1577.27,144.0,1108.6,0.0,1252.6,144.0,180.67,324.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,2043.7,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,788.66,788.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,1593.28,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,338.24,338.24,0.0,0.0,0.0 -base-hvac-undersized.xml,1654.83,144.0,1202.33,0.0,1346.33,144.0,164.5,308.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,1891.31,144.0,1747.31,0.0,1891.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1394.47,144.0,1250.47,0.0,1394.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-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1639.99,144.0,1495.99,0.0,1639.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-ground-to-air-heat-pump-heating-only.xml,1491.07,144.0,1347.07,0.0,1491.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-ground-to-air-heat-pump.xml,1618.12,144.0,1474.12,0.0,1618.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-install-quality-air-to-air-heat-pump-1-speed.xml,1923.4,144.0,1779.4,0.0,1923.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 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1759.07,144.0,1615.07,0.0,1759.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-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1819.57,144.0,1675.57,0.0,1819.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 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1755.25,144.0,1611.25,0.0,1755.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-install-quality-furnace-gas-central-ac-1-speed.xml,1875.48,144.0,1338.96,0.0,1482.96,144.0,248.52,392.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-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1821.33,144.0,1284.81,0.0,1428.81,144.0,248.52,392.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-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1794.5,144.0,1257.98,0.0,1401.98,144.0,248.52,392.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-hvac-install-quality-furnace-gas-only.xml,1671.83,144.0,1127.79,0.0,1271.79,144.0,256.04,400.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-hvac-install-quality-ground-to-air-heat-pump.xml,1698.18,144.0,1554.18,0.0,1698.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 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1384.11,144.0,1240.11,0.0,1384.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1660.19,144.0,1516.19,0.0,1660.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-hvac-mini-split-air-conditioner-only-ducted.xml,1360.37,144.0,1216.37,0.0,1360.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-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1350.91,144.0,1206.91,0.0,1350.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.75,144.0,1219.75,0.0,1363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1333.41,144.0,1189.41,0.0,1333.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1624.97,144.0,1480.97,0.0,1624.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-heating-only.xml,1502.63,144.0,1358.63,0.0,1502.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-mini-split-heat-pump-ducted.xml,1582.11,144.0,1438.11,0.0,1582.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1569.52,144.0,1425.52,0.0,1569.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-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1719.59,144.0,1336.17,0.0,1480.17,144.0,95.42,239.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1711.44,144.0,1329.07,0.0,1473.07,144.0,94.37,238.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1899.61,144.0,1326.69,0.0,1470.69,0.0,0.0,0.0,0.0,428.92,428.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 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1572.7,144.0,1428.7,0.0,1572.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 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1544.05,144.0,1400.05,0.0,1544.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-mini-split-heat-pump-ductless.xml,1544.05,144.0,1400.05,0.0,1544.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-multiple.xml,2492.93,144.0,1907.22,0.0,2051.22,144.0,74.81,218.81,0.0,124.29,124.29,0.0,98.61,98.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,2514.22,144.0,2370.22,0.0,2514.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-ptac-with-heating-electricity.xml,2006.2,144.0,1862.2,0.0,2006.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-ptac-with-heating-natural-gas.xml,1770.06,144.0,1267.49,0.0,1411.49,144.0,214.57,358.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 +base-hvac-ptac.xml,1409.14,144.0,1265.14,0.0,1409.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-pthp-heating-capacity-17f.xml,1673.63,144.0,1529.63,0.0,1673.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-pthp.xml,1673.63,144.0,1529.63,0.0,1673.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-room-ac-only-33percent.xml,1323.7,144.0,1179.7,0.0,1323.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 +base-hvac-room-ac-only-ceer.xml,1448.77,144.0,1304.77,0.0,1448.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-room-ac-only-detailed-setpoints.xml,1402.83,144.0,1258.83,0.0,1402.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-room-ac-only.xml,1448.41,144.0,1304.41,0.0,1448.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,2046.51,144.0,1902.51,0.0,2046.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-room-ac-with-reverse-cycle.xml,1673.63,144.0,1529.63,0.0,1673.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-seasons.xml,1831.26,144.0,1308.89,0.0,1452.89,144.0,234.37,378.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1805.85,144.0,1287.75,0.0,1431.75,144.0,230.1,374.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1803.22,144.0,1293.39,0.0,1437.39,144.0,221.83,365.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-setpoints.xml,1607.27,144.0,1241.92,0.0,1385.92,144.0,77.35,221.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-space-heater-gas-only.xml,1569.09,144.0,1110.97,0.0,1254.97,144.0,170.12,314.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-stove-oil-only.xml,2002.29,144.0,1113.37,0.0,1257.37,0.0,0.0,0.0,0.0,744.92,744.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 +base-hvac-stove-wood-pellets-only.xml,1576.85,144.0,1113.37,0.0,1257.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,319.48,319.48,0.0,0.0,0.0 +base-hvac-undersized.xml,1659.57,144.0,1209.82,0.0,1353.82,144.0,161.75,305.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-wall-furnace-elec-only.xml,1856.37,144.0,1712.37,0.0,1856.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 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index fa7744473..f9d84fd0f 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -1,141 +1,141 @@ 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-lighting-ceiling-fans.xml,59.594,59.594,35.989,35.989,23.605,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.143,0.776,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.106,0.0,13.582,9.071,0.613,0.0,0.0,0.0,0.0,2039.7,3595.8,3595.8,23.508,18.97,0.0,3.54,3.638,0.512,7.504,0.63,10.088,-12.691,0.0,0.0,0.0,8.275,-0.067,4.807,0.0,0.728,0.0,5.095,-7.8,-2.489,0.0,-0.069,-0.487,-0.055,2.621,-0.031,-1.468,11.723,0.0,0.0,0.0,-6.434,-0.063,-1.171,-3.97,-0.17,0.0,2.984,8.311,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,59.416,59.416,35.791,35.791,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.531,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2427.3,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.9,60.9,39.187,39.187,21.713,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,4.475,0.856,9.013,0.0,0.0,7.673,0.0,0.512,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.334,0.0,14.945,9.071,0.614,0.0,0.0,0.0,0.0,2394.8,3956.9,3956.9,23.215,19.78,0.0,3.572,3.658,0.515,7.573,0.634,10.145,-12.66,0.0,0.0,0.0,8.378,-0.074,4.815,0.0,0.729,0.0,4.725,-7.788,-4.232,0.0,-0.071,-0.474,-0.053,2.655,-0.028,-1.42,11.736,0.0,0.0,0.0,-6.391,-0.07,-1.161,-3.967,-0.166,0.0,3.262,7.796,3.441,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,59.397,59.397,35.772,35.772,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.512,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2064.4,3891.7,3891.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,57.21,57.21,30.808,30.808,26.402,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,3.836,0.702,9.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.525,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,24.727,0.0,12.261,9.071,0.615,0.0,0.0,0.0,0.0,1610.5,3230.9,3230.9,23.922,18.09,0.0,3.496,3.609,0.508,7.417,0.624,10.018,-12.718,0.0,0.0,0.0,8.165,-0.062,4.799,0.0,0.726,0.0,5.632,-7.814,0.0,0.0,-0.013,-0.44,-0.048,2.759,-0.019,-1.324,11.719,0.0,0.0,0.0,-6.206,-0.057,-1.134,-3.699,-0.164,0.0,2.76,8.292,0.0,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.834,56.834,30.412,30.412,26.423,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,3.942,0.727,9.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.746,0.0,12.645,9.071,0.617,0.0,0.0,0.0,0.0,1610.5,3204.8,3204.8,23.922,18.311,0.0,3.495,3.608,0.508,7.419,0.624,10.018,-12.718,0.0,0.0,0.0,8.179,-0.061,4.799,0.0,0.726,0.0,5.636,-7.814,0.0,0.0,0.026,-0.393,-0.042,2.886,-0.007,-1.185,11.719,0.0,0.0,0.0,-6.013,-0.057,-1.1,-3.514,-0.156,0.0,2.876,7.763,0.0,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,68.089,68.089,34.574,34.574,33.514,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,2.939,0.484,9.421,0.0,0.0,4.521,0.0,0.335,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.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,31.381,0.0,8.73,9.504,0.62,0.0,0.0,0.0,0.0,2057.6,2899.8,2899.8,23.935,15.914,0.0,4.256,4.38,0.622,9.797,0.805,12.563,-13.838,0.0,0.0,0.0,10.942,-0.087,5.202,0.0,0.771,0.0,7.38,-9.003,-2.868,0.0,0.017,-0.322,-0.039,1.646,-0.04,-1.617,9.904,0.0,0.0,0.0,-7.373,-0.078,-0.864,-2.651,-0.095,0.0,2.101,6.613,1.652,1358.5,1000.7,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,31113.0,8356.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4311.0,19468.0,5807.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.448,39.448,29.5,29.5,9.948,0.0,0.0,0.0,0.0,0.0,0.0,0.041,0.0,0.0,4.91,0.985,8.517,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.131,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.189,0.0,16.525,8.4,0.66,0.0,0.0,0.0,0.0,1627.1,2600.5,2600.5,13.806,14.407,0.0,3.477,3.335,0.0,0.0,0.719,9.024,-8.613,0.0,0.0,3.267,0.0,-0.347,2.057,0.0,0.802,0.0,1.611,-5.055,-1.293,0.0,-0.094,-0.578,0.0,0.0,0.006,0.182,11.945,0.0,0.0,-0.855,0.0,-0.34,-0.408,-2.244,-0.201,0.0,1.533,6.386,1.352,1354.7,998.0,10815.1,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,19624.0,5819.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,16128.0,2043.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2446.0,359.0,3320.0,1875.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.616,27.616,27.404,27.404,0.212,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.866,0.907,7.513,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.201,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,15.015,7.298,0.693,0.0,0.0,0.0,0.0,2025.8,2259.3,2331.5,4.376,12.737,0.0,1.566,1.328,0.0,0.0,0.574,4.519,-5.823,0.0,0.0,2.602,0.0,-1.134,0.753,0.0,0.328,0.0,0.031,-3.987,-0.712,0.0,-0.836,-1.556,0.0,0.0,-0.436,-0.307,17.619,0.0,0.0,-4.049,0.0,-1.136,-0.547,-3.447,-0.388,0.0,0.947,7.525,1.934,1354.7,998.0,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13401.0,5574.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,14476.0,2237.0,5856.0,0.0,185.0,149.0,0.0,333.0,0.0,2212.0,183.0,3320.0,846.0,27.0,19.0,800.0 -base-location-dallas-tx.xml,34.303,34.303,32.288,32.288,2.015,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,8.649,1.805,6.705,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.204,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.859,0.0,30.356,6.557,0.575,0.0,0.0,0.0,0.0,1787.1,2861.3,2861.3,9.982,15.228,0.0,1.72,1.598,0.0,0.0,0.364,4.627,-5.076,0.0,0.0,0.0,1.198,-0.337,0.998,0.0,0.384,0.0,0.05,-3.118,-0.764,0.0,0.562,0.007,0.0,0.0,0.196,2.73,17.095,0.0,0.0,0.0,1.937,-0.331,-0.339,-2.347,-0.089,0.0,0.352,8.971,1.882,1354.7,998.0,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,15278.0,72.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-location-duluth-mn.xml,70.778,70.778,28.717,28.717,42.061,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,2.251,0.32,11.435,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.347,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.142,0.0,5.35,11.393,0.835,0.0,0.0,0.0,0.0,1652.9,2524.3,2524.3,26.822,11.71,0.0,7.022,7.021,0.0,0.0,1.591,19.639,-13.191,0.0,0.0,10.057,0.0,-0.376,6.403,0.0,0.0,0.0,7.802,-5.312,-1.891,0.0,-0.431,-0.78,0.0,0.0,-0.088,-0.809,8.047,0.0,0.0,-1.54,0.0,-0.375,-0.496,-1.618,0.0,0.0,0.344,2.5,0.754,1354.7,998.0,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31396.0,6397.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,12045.0,63.0,5891.0,0.0,156.0,64.0,0.0,344.0,0.0,2100.0,107.0,3320.0,1210.0,246.0,164.0,800.0 -base-location-helena-mt.xml,79.066,79.066,35.128,35.128,43.938,0.0,0.0,0.0,0.0,0.0,0.0,1.077,0.0,0.0,2.413,0.373,10.161,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.038,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.499,0.0,6.485,10.294,0.625,0.0,0.0,0.0,0.0,2141.3,3005.4,3005.4,30.593,15.086,0.0,5.336,5.452,0.772,11.482,1.046,15.436,-15.408,0.0,0.0,0.0,13.797,-0.201,7.816,0.0,1.202,0.0,8.501,-10.848,-3.32,0.0,0.003,-0.258,-0.028,1.29,0.009,-0.479,8.37,0.0,0.0,0.0,-6.067,-0.195,-0.676,-2.494,-0.122,0.0,1.339,4.71,1.187,1354.7,998.0,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,40534.0,10037.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2977.0,2684.0,6386.0,19179.0,5917.0,6852.0,0.0,184.0,165.0,0.0,0.0,0.0,2207.0,535.0,3320.0,81.0,0.0,-719.0,800.0 -base-location-honolulu-hi.xml,35.269,35.269,35.269,35.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.511,2.813,4.744,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.285,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.51,4.496,0.55,0.0,0.0,0.0,0.0,2035.0,2179.2,2393.4,0.0,13.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,0.0,1.252,0.768,0.0,0.0,0.306,5.327,20.458,0.0,0.0,0.0,6.063,-0.004,-0.04,-2.061,0.063,0.0,0.725,12.146,2.646,1354.7,998.0,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,13290.0,31.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,301.0,3320.0,1831.0,580.0,452.0,800.0 -base-location-miami-fl.xml,34.438,34.438,34.438,34.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.753,2.616,4.874,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.279,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.069,4.632,0.552,0.0,0.0,0.0,0.0,2015.7,2523.9,2523.9,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,1.048,0.618,0.0,0.0,0.315,4.571,19.646,0.0,0.0,0.0,5.632,-0.004,-0.198,-2.841,-0.0,0.0,0.669,12.141,2.646,1354.7,998.0,8452.8,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,13402.0,-220.0,6605.0,0.0,279.0,507.0,0.0,0.0,0.0,2565.0,345.0,3320.0,2519.0,954.0,765.0,800.0 -base-location-phoenix-az.xml,38.252,38.252,38.248,38.248,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.103,2.867,5.099,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.263,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.003,0.0,52.245,4.866,0.557,0.0,0.0,0.0,0.0,2359.6,3564.2,3564.2,1.043,18.543,0.0,0.711,0.52,0.0,0.0,0.208,2.304,-2.036,0.0,0.0,0.0,-0.099,-0.498,0.371,0.0,0.131,0.0,-0.0,-1.43,-0.296,0.0,1.798,1.434,0.0,0.0,0.812,7.013,24.03,0.0,0.0,0.0,7.07,-0.51,0.033,-3.212,0.129,0.0,0.94,10.7,2.349,1354.7,998.0,8260.6,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,18143.0,689.0,8845.0,0.0,401.0,975.0,0.0,0.0,0.0,3028.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.638,37.638,27.196,27.196,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,2.718,0.498,8.935,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.087,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.647,0.0,8.314,8.724,0.78,0.0,0.0,0.0,0.0,1621.9,2927.9,2927.9,8.87,14.306,0.0,3.414,3.26,0.0,0.0,0.743,8.714,-8.283,0.0,0.0,6.205,0.0,-0.453,1.464,0.0,0.81,0.0,1.785,-6.547,-1.625,0.0,-0.267,-0.725,0.0,0.0,0.007,-0.534,10.218,0.0,0.0,-2.796,0.0,-0.45,-0.325,-2.834,-0.24,0.0,0.535,4.85,1.021,1354.7,998.0,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17761.0,6471.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15740.0,2399.0,6585.0,0.0,210.0,243.0,0.0,429.0,0.0,2304.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.669,80.669,37.469,37.469,43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.713,0.0,0.0,4.076,0.749,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.053,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.461,0.0,12.989,9.071,0.621,0.0,0.0,0.0,0.0,2162.5,3829.3,3829.3,32.839,21.498,0.0,3.506,3.727,0.524,7.411,0.657,10.41,-12.864,0.0,0.0,0.0,8.072,-0.13,5.516,0.0,15.129,0.0,8.829,-8.066,-2.561,0.0,0.184,-0.225,-0.018,3.027,0.04,-0.612,11.549,0.0,0.0,0.0,-5.938,-0.126,-0.978,-2.994,-3.428,0.0,3.122,7.502,1.946,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39149.0,8753.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10894.0,21389.0,5978.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,61.006,61.006,35.691,35.691,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.0,4.218,0.793,9.015,0.0,0.0,4.507,0.0,0.334,0.112,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.707,0.0,13.805,9.071,0.616,0.0,0.0,0.0,0.0,2055.7,3763.1,3763.1,25.293,20.778,0.0,3.532,3.637,0.512,7.503,0.629,10.079,-12.698,0.0,0.0,0.0,8.298,-0.061,4.321,0.0,2.474,0.0,5.433,-7.804,-2.49,0.0,-0.015,-0.427,-0.047,2.789,-0.017,-1.291,11.715,0.0,0.0,0.0,-6.174,-0.057,-1.015,-3.685,-0.672,0.0,3.085,7.776,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,74.017,74.017,37.363,37.363,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.605,0.0,0.0,4.154,0.771,9.017,0.0,0.0,4.507,0.0,0.334,1.69,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.33,0.0,13.382,9.071,0.619,0.0,0.0,0.0,0.0,2084.4,4049.3,4049.3,29.849,21.303,0.0,3.475,3.658,0.515,7.478,0.637,10.17,-12.751,0.0,0.0,0.0,8.282,-0.077,1.507,0.0,13.897,0.0,7.626,-7.884,-2.508,0.0,0.065,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.92,-0.073,-0.247,-3.266,-3.173,0.0,3.146,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,74.14,74.14,38.309,38.309,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.842,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.826,0.0,10.31,9.071,0.619,0.0,0.0,0.0,0.0,2079.5,3207.3,3207.3,21.562,13.614,0.0,3.758,3.654,0.514,7.47,0.636,10.163,-12.744,0.0,0.0,0.0,8.27,-0.079,1.506,0.0,13.776,0.0,0.0,-7.882,-2.508,0.0,0.153,-0.343,-0.035,2.957,0.008,-1.0,11.67,0.0,0.0,0.0,-5.922,-0.075,-0.247,-3.258,-3.142,0.0,0.0,7.691,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,14903.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,33.624,33.624,33.624,33.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.901,9.085,0.0,0.0,4.507,0.0,0.334,2.752,0.0,0.0,0.0,1.822,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.18,9.071,0.691,0.0,0.0,0.0,0.0,2020.0,2122.1,2122.1,0.0,18.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.167,-0.336,-0.033,3.036,0.002,-1.037,11.85,0.0,0.0,0.0,-6.527,-0.061,-0.25,-3.027,-3.018,0.0,0.658,7.893,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,17410.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,71.279,71.279,36.015,36.015,35.265,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.065,0.75,9.019,0.0,0.0,4.507,0.0,0.334,0.478,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,33.028,0.0,13.02,9.071,0.62,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.287,0.0,3.506,3.679,0.518,7.458,0.643,10.246,-12.792,0.0,0.0,0.0,8.226,-0.091,1.906,0.0,12.553,0.0,7.363,-7.954,-2.53,0.0,0.118,-0.29,-0.027,3.028,0.022,-0.827,11.621,0.0,0.0,0.0,-5.85,-0.087,-0.244,-3.088,-3.947,0.0,3.07,7.616,1.977,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,73.347,73.347,36.047,36.047,37.299,0.0,0.0,0.0,0.0,0.0,0.0,0.615,0.0,0.0,4.076,0.752,9.018,0.0,0.0,4.507,0.0,0.334,0.464,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,34.934,0.0,13.039,9.071,0.619,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.291,0.0,3.483,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.252,-0.087,1.51,0.0,14.456,0.0,7.737,-7.924,-2.52,0.0,0.097,-0.311,-0.03,2.999,0.017,-0.894,11.633,0.0,0.0,0.0,-5.875,-0.083,-0.237,-3.147,-3.777,0.0,3.094,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,75.165,75.165,37.304,37.304,37.861,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.113,0.759,9.018,0.0,0.0,4.507,0.0,0.334,1.666,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,13.179,9.071,0.619,0.0,0.0,0.0,0.0,2082.3,3769.0,3769.0,29.849,21.283,0.0,3.49,3.709,0.522,7.444,0.652,10.347,-12.806,0.0,0.0,0.0,8.158,-0.122,1.521,0.0,14.102,0.0,8.691,-7.992,-2.54,0.0,0.175,-0.274,-0.025,2.972,0.027,-0.773,11.607,0.0,0.0,0.0,-5.971,-0.118,-0.225,-3.136,-2.938,0.0,2.438,7.58,1.967,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,66.063,66.063,37.47,37.47,28.593,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.779,0.0,13.915,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.819,20.292,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.904,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,66.066,66.066,37.47,37.47,28.596,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.782,0.0,13.914,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.821,20.293,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.907,0.0,6.073,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.829,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,66.064,66.064,37.473,37.473,28.591,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.777,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.818,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.398,0.0,3.903,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,66.067,66.067,37.473,37.473,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.78,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.82,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.905,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.961,81.961,37.877,37.877,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.724,0.0,0.0,4.387,0.645,9.022,0.0,0.0,4.507,0.0,0.334,1.574,0.0,0.0,0.416,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,0.0,11.165,9.071,0.624,0.0,0.0,0.0,18.0,2190.4,4110.3,4110.3,36.243,23.259,0.0,3.173,3.718,0.523,7.454,0.655,10.373,-12.811,0.0,0.0,0.0,8.207,-0.123,3.852,0.0,9.589,0.0,16.897,-8.002,-2.544,0.0,0.13,-0.167,-0.01,3.26,0.053,-0.451,11.602,0.0,0.0,0.0,-5.542,-0.119,-0.571,0.0,-2.037,-9.045,4.599,7.559,1.963,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43270.0,16305.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7464.0,26033.0,11500.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.464,73.464,36.527,36.527,36.937,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,4.119,0.762,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,0.0,34.595,0.0,13.217,9.071,0.619,0.0,0.0,0.0,0.0,2096.5,3799.0,3799.0,29.715,21.331,0.0,3.485,3.669,0.516,7.467,0.641,10.213,-12.78,0.0,0.0,0.0,8.254,-0.085,1.51,0.0,14.179,0.0,7.669,-7.923,-2.52,0.0,0.094,-0.312,-0.03,2.998,0.016,-0.9,11.633,0.0,0.0,0.0,-5.876,-0.081,-0.238,-3.153,-3.621,0.0,3.128,7.648,1.988,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.725,57.725,33.919,33.919,23.806,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,2.372,0.355,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.671,2.042,0.0,0.0,0.319,0.365,1.513,1.529,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.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,22.294,0.0,6.046,9.071,0.624,0.0,0.0,0.0,0.0,2039.7,3472.1,3472.1,23.508,16.144,0.0,3.537,3.636,0.512,7.523,0.629,10.08,-12.691,0.0,0.0,0.0,8.411,-0.061,4.805,0.0,0.728,0.0,5.137,-7.799,-2.489,0.0,0.167,-0.225,-0.018,3.377,0.032,-0.685,11.723,0.0,0.0,0.0,-5.252,-0.056,-0.941,0.0,-0.129,-12.877,1.66,7.761,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,59.22,1.956,35.594,-21.669,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,64.266,44.914,31.207,11.855,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,2.164,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.118,0.0,0.0,1.09,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.944,0.0,5.176,10.469,0.697,0.0,9.09,0.0,0.0,2329.9,3054.3,3054.3,26.39,15.079,0.0,3.498,3.693,0.519,7.44,1.121,10.342,-12.828,0.0,0.0,0.0,8.206,-0.107,1.535,0.0,15.111,0.0,2.863,-8.174,-2.551,0.0,0.765,-0.048,0.008,3.523,-0.182,-0.173,11.586,0.0,0.0,0.0,-5.121,-0.103,-0.185,0.0,-3.253,-11.716,0.426,8.485,1.957,1610.4,1574.8,10335.4,3642.3,2.903,36000.0,24000.0,0.0,6.8,91.76,31457.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15763.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.954,69.765,37.329,29.14,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.729,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,76.22,68.03,35.594,27.405,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,76.22,68.03,35.594,27.405,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.893,56.893,35.515,35.515,21.378,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.216,0.793,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.019,0.0,13.818,9.071,0.614,0.0,0.0,0.0,0.0,2034.9,3669.7,3669.7,22.629,19.233,0.0,3.575,3.659,0.515,7.285,0.634,10.149,-12.67,0.0,0.0,0.0,6.668,-0.068,4.813,0.0,0.729,0.0,4.666,-7.788,-2.486,0.0,-0.038,-0.45,-0.05,2.452,-0.022,-1.354,11.744,0.0,0.0,0.0,-6.041,-0.063,-1.146,-3.798,-0.164,0.0,3.082,7.795,2.021,1354.7,998.0,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,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.606,146.606,68.26,68.26,70.346,0.0,2.5,5.5,0.0,0.0,0.0,0.29,0.0,0.0,5.307,1.059,9.01,0.0,0.0,4.507,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.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.58,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.461,0.0,18.468,9.071,0.61,0.0,0.0,0.0,0.0,3156.7,5305.2,5305.2,22.247,21.26,0.0,3.63,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.833,0.0,0.734,0.0,3.899,-13.214,-2.475,0.0,-0.183,-0.563,-0.066,2.445,-0.052,-1.709,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.243,-4.545,-0.178,0.0,3.817,13.832,2.033,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.09,93.09,64.711,64.711,20.38,2.5,0.0,0.0,5.5,0.0,0.0,0.29,0.0,0.0,5.307,1.059,9.01,0.0,0.0,4.507,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.529,0.0,2.116,8.384,5.118,1.621,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.461,0.0,18.468,9.071,0.61,0.0,0.0,0.0,0.0,3117.4,4957.5,4957.5,22.247,21.26,0.0,3.63,3.691,0.52,7.715,0.64,10.226,-12.598,0.0,0.0,0.0,8.546,-0.067,4.833,0.0,0.734,0.0,3.899,-13.214,-2.475,0.0,-0.183,-0.563,-0.066,2.445,-0.052,-1.709,11.815,0.0,0.0,0.0,-6.719,-0.063,-1.243,-4.545,-0.178,0.0,3.817,13.832,2.033,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.359,53.359,24.247,24.247,29.112,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.0,0.0,3.501,0.622,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,27.266,0.0,10.811,9.071,0.619,0.0,0.0,0.0,0.0,1512.2,2848.1,2848.1,24.561,17.155,0.0,3.468,3.599,0.506,7.385,0.622,9.987,-12.743,0.0,0.0,0.0,8.162,-0.056,4.799,0.0,0.725,0.0,6.14,-3.14,-2.499,0.0,0.095,-0.336,-0.034,3.052,0.007,-1.006,11.67,0.0,0.0,0.0,-5.757,-0.052,-1.048,-3.186,-0.147,0.0,2.544,3.15,2.008,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.504,26.504,25.37,25.37,1.134,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.412,0.392,9.536,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.048,0.0,6.57,9.37,0.59,0.0,0.0,0.0,0.0,1520.7,2307.0,2307.0,3.691,8.22,0.0,-0.014,3.74,0.0,0.0,0.409,4.038,-3.314,0.0,0.0,-0.012,0.0,-0.306,1.298,0.0,0.764,0.0,0.0,-4.72,-0.959,0.0,-0.01,-2.563,0.0,0.0,-0.006,-0.595,4.889,0.0,0.0,-0.008,0.0,-0.298,-0.364,-1.34,-0.248,0.0,0.0,6.141,1.067,1354.7,998.0,11171.6,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,64.296,64.296,35.348,35.348,28.948,0.0,0.0,0.0,0.0,0.0,0.0,0.478,0.0,0.0,3.984,0.739,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.0,12.863,9.071,0.617,0.0,0.0,0.0,0.0,2048.7,3477.7,3477.7,23.738,18.531,0.0,3.465,3.704,0.54,7.343,0.775,10.699,-8.751,0.0,0.0,0.0,7.85,-0.061,4.789,0.0,0.723,0.0,6.044,-7.81,-2.491,0.0,0.011,-0.443,-0.051,2.843,-0.033,-1.258,10.312,0.0,0.0,0.0,-6.072,-0.055,-1.115,-3.622,-0.157,0.0,2.868,7.768,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.875,58.875,35.734,35.734,23.141,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.368,0.831,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.672,0.0,14.507,9.071,0.614,0.0,0.0,0.0,0.0,2039.6,3637.8,3637.8,23.489,19.094,0.0,3.545,3.639,0.512,7.51,0.63,10.09,-12.69,0.0,0.0,0.0,8.286,-0.067,4.424,0.0,0.728,0.0,5.007,-7.796,-2.488,0.0,-0.046,-0.454,-0.05,2.708,-0.023,-1.37,11.724,0.0,0.0,0.0,-6.305,-0.063,-1.034,-3.266,-0.164,0.0,3.173,7.787,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31860.0,8585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,3775.0,19572.0,5938.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,512.0,3320.0,106.0,0.0,-694.0,800.0 -base-misc-unit-multiplier.xml,592.203,592.203,355.942,355.942,236.261,0.0,0.0,0.0,0.0,0.0,0.0,3.898,0.0,0.0,42.508,8.018,90.14,0.0,0.0,45.072,0.0,3.339,0.0,0.0,0.0,0.0,20.723,0.0,0.0,3.187,3.653,15.127,15.286,0.0,21.155,83.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,236.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,221.26,0.0,139.735,90.712,6.149,0.0,0.0,0.0,0.0,20524.0,38844.0,38844.0,235.083,191.762,0.0,35.401,36.376,5.119,75.057,6.297,100.868,-126.906,0.0,0.0,0.0,82.901,-0.666,48.067,0.0,7.278,0.0,50.988,-77.996,-24.887,0.0,-0.308,-4.405,-0.485,27.479,-0.198,-13.28,117.225,0.0,0.0,0.0,-62.403,-0.627,-11.37,-37.806,-1.617,0.0,31.011,77.82,20.184,13547.4,9980.0,111715.9,25635.4,0.0,360000.0,240000.0,0.0,6.8,91.76,327060.0,86080.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,24080.0,21710.0,45970.0,196750.0,59340.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,22930.0,6190.0,33200.0,0.0,0.0,0.0,0.0 -base-misc-usage-multiplier.xml,127.125,127.125,50.45,50.45,69.475,0.0,2.25,4.95,0.0,0.0,0.0,0.363,0.0,0.0,4.52,0.867,8.168,0.0,0.0,4.056,0.0,0.301,0.0,0.0,0.0,0.0,1.869,2.151,0.0,0.287,0.329,1.361,1.376,0.0,1.904,7.545,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.985,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.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,2.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,20.589,0.0,15.116,8.164,0.614,0.0,0.0,0.0,0.0,2563.4,4490.7,4490.7,23.226,19.824,0.0,3.563,3.65,0.514,7.55,0.632,10.117,-12.671,0.0,0.0,0.0,8.337,-0.066,4.861,0.0,0.656,0.0,4.778,-9.444,-2.237,0.0,-0.07,-0.472,-0.053,2.659,-0.028,-1.431,11.745,0.0,0.0,0.0,-6.382,-0.063,-1.177,-3.982,-0.15,0.0,3.286,9.57,1.82,1219.3,898.2,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,60.052,33.166,34.864,7.978,25.188,0.0,0.0,0.0,0.0,0.0,0.0,0.416,0.0,0.0,3.005,0.517,9.114,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.715,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.891,25.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,23.582,0.0,8.874,9.071,0.723,0.0,0.0,0.0,0.0,2083.3,2928.9,2928.9,18.473,11.969,0.0,3.532,3.794,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.369,0.0,0.0,0.0,3.959,-5.766,-2.495,0.0,0.124,-0.258,-0.033,2.466,0.004,-1.084,8.261,0.0,0.0,0.0,-5.595,-0.043,-1.194,-2.578,0.0,0.0,1.303,5.629,2.012,1354.7,998.0,11171.5,2563.5,17.068,36000.0,24000.0,0.0,6.8,91.76,28783.0,6753.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4597.0,12553.0,414.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,61.446,34.56,37.821,10.934,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,2.227,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2234.2,4106.7,4106.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,4.421,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.954,34.068,37.329,10.442,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.735,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,5.528,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.954,42.879,37.329,2.253,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.735,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,16.266,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,77.093,42.018,36.468,1.392,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.874,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2108.4,3952.5,3952.5,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,80.531,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,76.22,41.144,35.594,0.519,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.7739,8.7739,0.4338,0.4338,8.3401,0.0,0.0,0.0,0.0,0.0,0.0,0.1376,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.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,8.3401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8071,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,557.88,0.0,557.88,26.8859,0.0,0.0,0.6029,0.6429,0.0909,1.7458,0.1095,1.778,-1.9884,0.0,0.0,0.0,2.2353,-0.0005,1.0002,0.0,0.0,0.0,1.7419,-0.1971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.283,41.283,7.138,7.138,34.145,0.0,0.0,0.0,0.0,0.0,0.0,0.563,0.0,0.0,3.349,0.594,0.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,0.0,0.0,31.982,0.0,10.764,0.0,0.62,0.0,0.0,0.0,0.0,548.5,1890.8,1890.8,25.492,15.426,0.0,3.423,3.585,0.504,7.283,0.62,9.978,-12.807,0.0,0.0,0.0,7.992,-0.062,5.417,0.0,0.0,0.0,7.075,-1.32,0.0,0.0,0.155,-0.278,-0.025,3.185,0.022,-0.819,11.63,0.0,0.0,0.0,-5.596,-0.057,-1.119,0.0,0.0,0.0,2.415,1.356,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.76,101.76,51.638,51.638,42.211,0.0,2.61,5.301,0.0,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2406.4,4609.8,4609.8,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.706,80.706,49.212,49.212,23.583,2.61,0.0,0.0,5.301,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2253.5,4350.1,4350.1,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.439,53.439,28.186,28.186,25.253,0.0,0.0,0.0,0.0,0.0,0.0,0.417,0.0,0.0,3.993,0.741,3.886,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.651,0.0,13.015,3.56,0.616,0.0,0.0,0.0,0.0,1592.6,3323.9,3323.9,23.879,18.485,0.0,3.521,3.628,0.51,7.477,0.628,10.062,-12.698,0.0,0.0,0.0,8.262,-0.064,4.801,0.0,0.725,0.0,5.417,-6.452,-2.49,0.0,0.001,-0.416,-0.045,2.824,-0.013,-1.249,11.715,0.0,0.0,0.0,-6.122,-0.06,-1.113,-3.597,-0.158,0.0,2.937,6.439,2.017,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.772,50.521,39.555,19.303,31.217,0.0,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.0,2.261,0.33,6.888,0.0,0.326,4.507,0.0,0.334,1.118,0.0,0.0,1.108,2.16,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.409,31.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,29.22,0.0,5.524,18.155,0.645,0.0,11.92,0.0,0.0,2758.8,3334.1,3334.1,26.006,15.439,0.0,3.802,3.696,0.52,7.492,0.647,10.282,-12.793,0.0,0.0,0.0,8.323,-0.087,1.528,0.0,15.037,0.0,2.708,-9.686,-2.53,0.0,0.3,-0.113,-0.002,3.492,0.063,-0.321,11.62,0.0,0.0,0.0,-5.127,-0.083,-0.197,0.0,-3.402,-12.284,0.453,10.013,1.977,2592.0,2707.5,20715.8,5546.8,1.882,36000.0,24000.0,0.0,6.8,91.76,31457.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15763.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,59.298,59.298,35.797,35.797,23.502,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.411,0.833,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.008,0.0,14.411,9.053,0.639,0.0,0.0,0.333,1.0,9416.3,10702.6,10702.6,37.375,22.443,0.0,3.605,3.668,0.517,7.594,0.642,10.187,-12.602,0.0,0.0,0.0,8.334,-0.062,5.307,0.0,0.78,0.0,5.131,-8.891,-2.51,0.0,-0.155,-0.47,-0.054,2.754,-0.028,-1.377,11.752,0.0,0.0,0.0,-6.244,-0.057,-1.253,-3.675,-0.171,0.0,3.299,8.24,2.0,1354.7,998.0,11252.4,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.115,33.115,28.192,28.192,4.923,0.0,0.0,0.0,0.0,0.0,0.0,0.081,0.0,0.0,3.099,0.522,7.326,0.0,0.0,3.619,0.0,0.267,0.0,0.0,0.0,0.0,1.688,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.923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.612,0.0,9.112,7.3,0.562,0.0,0.0,0.5,0.5,9382.1,10441.6,10441.6,41.603,22.029,0.0,2.606,2.454,0.343,4.266,0.334,6.471,-12.497,0.0,0.0,0.0,3.68,-0.103,3.377,0.0,0.383,0.0,1.029,-6.405,-1.596,0.0,-0.193,-0.549,-0.064,2.5,-0.053,-1.655,11.861,0.0,0.0,0.0,-7.407,-0.057,-1.32,-6.178,-0.205,0.0,2.184,8.386,2.023,1141.2,883.5,9207.1,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.033,42.033,33.855,33.855,8.178,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,3.111,0.524,9.053,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,1.964,0.0,0.0,0.319,0.365,1.513,1.529,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.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,7.657,0.0,9.157,9.053,0.672,0.0,0.0,0.0,0.5,9378.7,10444.6,10444.6,31.99,22.032,0.0,2.907,2.8,0.392,5.382,0.419,7.495,-12.492,0.0,0.0,0.0,5.496,-0.058,3.852,0.0,0.58,0.0,1.756,-8.668,-2.486,0.0,-0.196,-0.553,-0.065,2.505,-0.053,-1.665,11.861,0.0,0.0,0.0,-7.339,-0.057,-1.322,-6.196,-0.206,0.0,2.193,8.386,2.023,1354.7,998.0,11253.7,2582.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.705,58.705,35.708,35.708,22.997,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.328,0.819,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.073,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.533,0.0,14.197,8.987,0.616,0.0,0.0,0.0,0.0,6630.7,7141.3,8967.4,31.432,21.327,0.0,3.553,3.646,0.513,7.531,0.631,10.109,-12.67,0.0,0.0,0.0,8.32,-0.063,5.321,0.0,0.764,0.0,4.966,-8.913,-2.501,0.0,-0.035,-0.443,-0.049,2.737,-0.021,-1.337,11.743,0.0,0.0,0.0,-6.26,-0.059,-1.261,-3.812,-0.188,0.0,3.144,8.309,1.981,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.34,44.34,29.877,29.877,14.463,0.0,0.0,0.0,0.0,0.0,0.0,0.239,0.0,0.0,4.297,0.812,7.294,0.0,0.0,3.627,0.0,0.267,0.0,0.0,0.0,0.0,1.752,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.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,13.548,0.0,14.068,7.313,0.518,0.0,0.0,17.0,0.0,6218.9,5664.3,6218.9,36.518,19.71,0.0,3.071,3.068,0.43,5.713,0.489,8.385,-12.681,0.0,0.0,0.0,5.191,-0.156,4.373,0.0,0.513,0.0,3.042,-6.589,-1.621,0.0,-0.034,-0.442,-0.049,2.725,-0.02,-1.334,11.737,0.0,0.0,0.0,-6.356,-0.059,-1.245,-3.807,-0.184,0.0,3.118,8.21,2.006,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.379,57.379,30.475,30.475,26.904,0.0,0.0,0.0,0.0,0.0,0.0,0.444,0.0,0.0,4.315,0.816,7.369,0.0,0.0,3.622,0.0,0.266,0.0,0.0,0.0,0.0,2.073,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.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.195,0.0,14.144,7.303,0.615,0.0,0.0,0.0,0.0,4495.2,5670.6,5670.6,30.846,19.766,0.0,3.501,3.619,0.509,7.449,0.625,10.037,-12.672,0.0,0.0,0.0,8.151,-0.064,5.304,0.0,0.513,0.0,5.718,-6.209,-1.614,0.0,-0.039,-0.447,-0.05,2.731,-0.022,-1.349,11.746,0.0,0.0,0.0,-6.274,-0.059,-1.25,-3.823,-0.184,0.0,3.131,8.223,2.008,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,58.64,58.64,35.665,35.665,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.315,0.816,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.513,0.0,14.146,9.071,0.615,0.0,0.0,0.0,0.0,4703.6,5670.8,5670.8,30.719,19.768,0.0,3.55,3.642,0.513,7.527,0.631,10.099,-12.668,0.0,0.0,0.0,8.311,-0.064,5.263,0.0,0.777,0.0,4.964,-8.871,-2.501,0.0,-0.039,-0.447,-0.05,2.731,-0.022,-1.349,11.746,0.0,0.0,0.0,-6.272,-0.059,-1.25,-3.823,-0.184,0.0,3.131,8.223,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.895,57.895,34.971,34.971,22.924,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.746,0.7,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.076,0.0,11.957,9.071,0.617,0.0,0.0,106.0,41.0,2072.1,3770.0,3770.0,34.955,20.845,0.0,3.497,3.568,0.501,7.484,0.605,9.791,-12.687,0.0,0.0,0.0,8.63,0.008,4.642,0.0,0.725,0.0,4.731,-7.752,-2.486,0.0,-0.04,-0.468,-0.053,2.704,-0.034,-1.49,11.726,0.0,0.0,0.0,-6.525,-0.001,-1.18,-4.194,-0.17,0.0,2.39,7.825,2.022,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,57.375,57.375,35.127,35.127,22.248,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.886,0.728,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.744,0.0,12.562,9.071,0.617,0.0,0.0,0.0,8.0,2048.7,3769.7,3769.7,25.752,21.422,0.0,3.491,3.553,0.499,7.325,0.602,9.749,-12.723,0.0,0.0,0.0,8.166,-0.021,4.634,0.0,0.722,0.0,4.643,-7.768,-2.488,0.0,-0.027,-0.468,-0.053,2.647,-0.033,-1.493,11.69,0.0,0.0,0.0,-6.519,-0.022,-1.168,-4.138,-0.172,0.0,2.557,7.808,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.926,41.926,33.625,33.625,8.301,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,2.929,0.488,9.046,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.959,0.0,0.0,0.319,0.365,1.513,1.529,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.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,7.768,0.0,8.584,9.071,0.649,0.0,0.0,0.0,0.0,2012.3,3487.4,3487.4,17.944,16.314,0.0,2.815,2.755,0.385,5.258,0.403,7.36,-12.563,0.0,0.0,0.0,5.369,-0.059,3.444,0.0,0.566,0.0,1.759,-7.591,-2.465,0.0,-0.067,-0.517,-0.059,2.512,-0.044,-1.596,11.85,0.0,0.0,0.0,-7.338,-0.059,-1.192,-6.335,-0.18,0.0,1.986,7.912,2.042,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.217,55.217,32.34,32.34,22.878,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.386,0.607,8.4,0.0,0.0,4.199,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.292,0.335,1.386,1.401,0.0,1.94,7.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.425,0.0,10.625,8.445,0.581,0.0,0.0,0.0,4.0,1896.7,5855.5,5855.5,23.323,22.787,0.0,3.55,3.641,0.512,7.518,0.63,10.09,-12.683,0.0,0.0,0.0,8.283,-0.063,4.761,0.0,0.795,0.0,4.949,-8.411,-2.488,0.0,-0.086,-0.524,-0.061,2.512,-0.041,-1.591,11.731,0.0,0.0,0.0,-6.577,-0.059,-1.214,-4.4,-0.172,0.0,2.301,7.319,1.711,1241.4,914.9,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.633,57.633,30.884,30.884,26.749,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.356,0.827,7.374,0.0,0.0,3.592,0.0,0.266,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.265,0.303,1.256,1.269,0.0,1.756,6.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.051,0.0,14.356,7.31,0.615,0.0,0.0,0.0,0.0,1864.4,3799.2,3799.2,23.376,19.138,0.0,3.503,3.619,0.509,7.447,0.625,10.032,-12.688,0.0,0.0,0.0,8.147,-0.064,4.961,0.0,0.552,0.0,5.692,-6.041,-1.573,0.0,-0.044,-0.452,-0.05,2.713,-0.023,-1.368,11.73,0.0,0.0,0.0,-6.295,-0.059,-1.128,-3.868,-0.197,0.0,3.163,8.377,2.019,1124.6,828.5,9189.2,2108.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.726,58.726,35.859,35.859,22.867,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.356,0.827,9.013,0.0,0.0,4.507,0.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.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,14.358,9.071,0.614,0.0,0.0,0.0,0.0,1895.4,3491.3,3491.3,23.323,19.123,0.0,3.55,3.641,0.512,7.519,0.63,10.09,-12.683,0.0,0.0,0.0,8.295,-0.063,4.806,0.0,0.729,0.0,4.948,-8.411,-2.488,0.0,-0.044,-0.452,-0.05,2.711,-0.023,-1.369,11.73,0.0,0.0,0.0,-6.294,-0.059,-1.15,-3.872,-0.164,0.0,3.162,8.377,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,59.179,59.179,35.551,35.551,23.628,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.216,0.793,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.127,0.0,13.804,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3543.2,3543.2,23.508,19.133,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.066,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.026,-0.438,-0.048,2.764,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.232,-0.062,-1.136,-3.949,-0.161,0.0,3.067,7.782,2.018,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,59.22,59.22,35.594,35.594,23.626,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.126,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,59.192,59.192,35.577,35.577,23.615,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.237,0.799,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.116,0.0,13.914,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3419.8,3419.8,23.508,18.774,0.0,3.539,3.636,0.512,7.506,0.629,10.074,-12.69,0.0,0.0,0.0,8.286,-0.062,4.804,0.0,0.725,0.0,5.096,-7.793,-2.487,0.0,-0.03,-0.442,-0.049,2.744,-0.021,-1.339,11.724,0.0,0.0,0.0,-6.243,-0.058,-1.142,-3.795,-0.159,0.0,3.074,7.789,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,11.416,11.416,2.9097,2.9097,8.5063,0.0,0.0,0.0,0.0,0.0,0.0,0.1382,0.0,0.0,0.1114,0.0,0.9104,0.0,0.0,0.3947,0.0,0.0292,0.0,0.0,0.0,0.0,0.1565,0.0,0.0,0.0262,0.03,0.1243,0.1256,0.0,0.1739,0.6891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.9658,0.0,0.0,0.9244,0.0547,0.0,0.0,0.0,0.0,2016.55,0.0,2016.55,23.7325,0.0,0.0,0.6004,0.659,0.0933,2.0514,0.1156,1.8292,-2.373,0.0,0.0,0.0,3.8054,0.013,0.8692,0.0,0.1225,0.0,1.7757,-1.2712,-0.3948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.35,82.03,980.71,225.04,0.0,36000.0,24000.0,0.0,10.22,91.4,31113.0,8356.0,7102.0,0.0,543.0,6470.0,0.0,0.0,2277.0,2054.0,4311.0,19468.0,5807.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,2281.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,59.107,59.107,35.482,35.482,23.624,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.16,0.781,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.124,0.0,13.602,9.071,0.615,0.0,0.0,0.0,0.0,2051.6,3867.2,3867.2,23.45,19.094,0.0,3.605,3.633,0.511,7.501,0.627,10.055,-12.69,0.0,0.0,0.0,8.265,-0.055,4.801,0.0,0.726,0.0,5.092,-7.787,-2.487,0.0,-0.195,-0.437,-0.048,2.759,-0.02,-1.337,11.724,0.0,0.0,0.0,-6.235,-0.051,-1.144,-3.883,-0.16,0.0,2.948,7.794,2.02,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.308,59.308,35.791,35.791,23.517,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.409,0.833,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.022,0.0,14.404,9.074,0.617,0.0,0.0,0.333,1.0,8649.6,8973.4,9240.9,37.378,22.442,0.0,3.605,3.668,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.334,-0.062,5.307,0.0,0.78,0.0,5.134,-8.88,-2.509,0.0,-0.154,-0.47,-0.054,2.755,-0.027,-1.377,11.752,0.0,0.0,0.0,-6.243,-0.057,-1.253,-3.673,-0.171,0.0,3.299,8.229,2.0,1354.7,998.0,11182.0,2565.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.23,59.23,35.783,35.783,23.447,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.407,0.832,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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.956,0.0,14.396,9.071,0.615,0.0,0.0,0.0,0.167,6067.7,7247.0,7247.0,35.175,21.782,0.0,3.605,3.667,0.517,7.592,0.642,10.184,-12.6,0.0,0.0,0.0,8.332,-0.061,5.254,0.0,0.771,0.0,5.123,-8.876,-2.502,0.0,-0.155,-0.471,-0.054,2.753,-0.028,-1.379,11.753,0.0,0.0,0.0,-6.246,-0.056,-1.238,-3.677,-0.184,0.0,3.296,8.219,2.008,1354.7,998.0,11168.7,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.831,59.831,35.711,35.711,24.12,0.0,0.0,0.0,0.0,0.0,0.0,0.398,0.0,0.0,4.342,0.817,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.587,0.0,14.21,9.071,0.615,0.0,0.0,0.0,0.0,3460.7,5195.8,5195.8,23.727,19.092,0.0,3.594,3.662,0.516,7.569,0.641,10.171,-12.616,0.0,0.0,0.0,8.309,-0.063,4.791,0.0,0.733,0.0,5.262,-7.8,-2.488,0.0,-0.146,-0.463,-0.053,2.772,-0.026,-1.354,11.737,0.0,0.0,0.0,-6.209,-0.059,-1.122,-3.621,-0.168,0.0,3.262,7.782,2.019,1354.7,998.0,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.604,59.604,35.661,35.661,23.943,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.303,0.81,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.421,0.0,14.087,9.071,0.615,0.0,0.0,0.0,0.0,2065.7,3904.6,3904.6,23.648,19.1,0.0,3.576,3.654,0.515,7.542,0.638,10.152,-12.641,0.0,0.0,0.0,8.296,-0.064,4.793,0.0,0.731,0.0,5.198,-7.799,-2.488,0.0,-0.116,-0.458,-0.052,2.768,-0.024,-1.356,11.738,0.0,0.0,0.0,-6.22,-0.06,-1.127,-3.681,-0.166,0.0,3.175,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.976,86.976,46.491,46.491,40.485,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,15.452,4.241,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.397,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.459,0.0,17.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,19.024,0.0,49.979,10.404,2.678,0.0,0.0,0.0,0.0,1867.8,6837.1,6837.1,38.208,42.716,0.492,1.978,7.261,0.42,0.0,0.979,7.142,-4.994,0.0,0.0,0.479,1.221,-0.303,4.301,0.0,5.157,0.0,3.347,-5.668,-2.928,0.565,2.008,3.783,0.31,0.0,0.243,1.664,11.471,0.0,0.0,0.525,6.858,-0.289,-0.379,-1.822,-0.711,0.0,10.641,10.839,4.448,2104.4,2144.8,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,61220.0,24350.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,8478.0,111470.0,85246.0,9491.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3124.0,3780.0,6860.0,3501.0,2159.0,1200.0 -house002.xml,68.384,68.384,40.431,40.431,27.953,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,14.492,3.319,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.479,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.739,0.0,39.708,7.517,2.89,0.0,0.0,0.0,0.0,1572.0,5480.1,5480.1,24.147,29.925,0.0,2.533,5.044,0.0,0.0,0.843,5.712,-4.099,0.0,0.0,0.0,1.73,-0.167,1.578,0.0,3.789,0.0,1.421,-4.319,-2.485,0.0,3.091,2.827,0.0,0.0,0.42,0.424,8.64,0.0,0.0,0.0,8.475,-0.161,-0.174,-1.342,-0.62,0.0,5.858,8.555,3.893,1610.8,1575.3,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47503.0,15295.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,4987.0,33038.0,14147.0,6700.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,1877.0,3320.0,3848.0,1750.0,1297.0,800.0 -house003.xml,68.972,68.972,39.941,39.941,29.031,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.746,3.478,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.799,0.0,13.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,12.808,0.0,41.522,7.517,2.69,0.0,0.0,0.0,0.0,1652.4,5614.5,5614.5,26.56,34.007,0.651,2.794,4.669,0.0,0.0,0.977,6.242,-3.958,0.0,0.0,0.0,1.054,-0.193,1.997,0.0,3.943,0.0,1.662,-4.504,-2.69,0.794,3.053,2.631,0.0,0.0,0.651,1.117,9.819,0.0,0.0,0.0,6.527,-0.185,-0.209,-1.394,-0.618,0.0,6.501,8.848,4.182,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48035.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41327.0,18337.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 -house004.xml,137.162,137.162,75.285,75.285,61.877,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,29.323,9.249,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.744,0.0,16.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.992,0.0,108.603,8.975,3.51,0.0,0.0,0.0,106.0,3077.9,7936.4,7936.4,55.097,52.116,0.127,5.496,11.334,0.0,0.0,1.248,13.697,-5.912,0.0,0.0,0.0,3.077,-0.796,4.941,0.0,6.269,0.0,7.248,-6.2,-3.846,0.198,6.711,11.692,0.0,0.0,0.52,7.516,17.689,0.0,0.0,0.0,18.807,-0.784,1.025,-0.0,1.853,0.0,21.4,14.58,7.71,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76099.0,20961.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52109.0,18518.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4612.0,1284.0,2328.0,1000.0 -house005.xml,95.674,95.674,53.116,53.116,42.558,0.0,0.0,0.0,0.0,0.0,0.0,0.307,0.0,0.0,18.272,5.052,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.338,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.372,0.0,15.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,22.198,0.0,60.607,8.975,2.73,0.0,0.0,0.0,2.0,2101.7,7891.8,7891.8,46.474,53.405,0.0,3.026,8.178,0.268,0.0,1.357,9.417,-6.701,0.0,0.0,0.394,1.238,-0.401,5.06,0.0,5.088,0.0,4.496,-5.796,-3.627,0.0,2.994,4.311,0.214,0.0,0.282,2.414,15.358,0.0,0.0,0.416,7.529,-0.383,-0.458,-2.308,-0.708,0.0,14.553,11.103,5.523,1857.6,1860.1,12229.1,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,70733.0,26912.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,9418.0,64895.0,31849.0,13705.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3406.0,3550.0,6854.0,3501.0,2354.0,1000.0 -house006.xml,140.094,140.094,31.53,31.53,108.563,0.0,0.0,0.0,0.0,0.0,0.0,1.898,0.0,0.0,2.868,0.319,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.718,0.0,20.133,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.635,0.0,7.544,13.079,3.28,0.0,0.0,0.0,0.0,2056.0,2866.3,2866.3,40.812,15.273,0.0,4.26,22.269,1.99,37.087,1.864,17.625,-9.461,0.0,0.0,0.0,9.291,-0.35,9.534,0.0,4.366,0.0,0.0,-13.275,-6.376,0.0,0.176,-0.767,-0.043,2.86,-0.082,-0.518,4.316,0.0,0.0,0.0,-3.865,-0.349,-0.502,-1.553,-0.066,0.0,0.0,5.729,2.306,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 -house007.xml,139.988,139.988,33.595,33.595,106.394,0.0,0.0,0.0,0.0,0.0,0.0,1.664,0.0,0.0,2.46,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.729,0.0,23.278,3.047,3.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,72.245,0.0,5.557,15.626,3.272,0.0,0.0,0.0,0.0,2277.5,3040.8,3040.8,39.978,13.671,0.0,4.721,23.685,4.448,10.095,1.499,18.826,-9.395,0.0,0.0,0.076,11.569,-0.41,6.121,0.0,20.834,0.0,2.921,-15.58,-7.667,0.0,0.208,-0.661,-0.045,0.566,-0.043,-0.285,4.554,0.0,0.0,-0.009,-3.955,-0.405,-0.183,-1.312,-1.838,0.0,0.104,6.322,2.626,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44632.0,5474.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11844.0,1097.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 -house008.xml,184.58,184.58,38.878,38.878,145.702,0.0,0.0,0.0,0.0,0.0,0.0,2.521,0.0,0.0,3.528,0.513,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.269,0.0,26.371,3.452,3.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,105.788,0.0,10.041,18.122,3.216,0.0,0.0,0.0,0.0,2562.2,3850.6,3850.6,55.304,21.129,0.0,7.234,27.478,4.71,24.269,1.194,21.308,-7.825,0.0,0.0,1.277,17.851,-0.453,18.354,0.0,6.388,0.0,8.009,-16.744,-8.086,0.0,0.297,-1.099,-0.054,1.655,-0.086,-0.367,5.403,0.0,0.0,-0.107,-2.739,-0.453,-0.957,-1.735,-0.268,0.0,0.53,7.216,2.913,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68489.0,8922.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16083.0,279.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 -house009.xml,155.094,155.094,33.757,33.757,121.337,0.0,0.0,0.0,0.0,0.0,0.0,2.059,0.0,0.0,2.379,0.281,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.165,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.665,0.0,23.285,3.047,3.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,86.372,0.0,5.314,15.626,3.278,0.0,0.0,0.0,0.0,2312.1,3123.6,3123.6,44.436,14.749,0.0,5.104,28.404,4.318,13.019,2.253,18.878,-8.216,0.0,0.0,0.266,15.646,-0.429,8.747,0.0,21.442,0.0,0.0,-15.819,-7.76,0.0,0.245,-0.674,-0.025,0.717,-0.072,-0.165,4.563,0.0,0.0,-0.028,-4.067,-0.425,-0.25,-1.224,-1.764,0.0,0.0,6.058,2.506,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44988.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,10820.0,12507.0,0.0,6052.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 -house010.xml,155.103,155.103,37.251,37.251,117.852,0.0,0.0,0.0,0.0,0.0,0.0,1.896,0.0,0.0,2.824,0.258,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.419,0.0,26.371,3.452,3.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,79.549,0.0,7.134,18.122,3.217,0.0,0.0,0.0,0.0,2497.9,3366.2,3366.2,45.751,16.277,0.874,4.93,25.497,4.914,9.734,1.265,22.974,-9.232,0.0,0.0,0.921,11.41,-0.462,19.597,0.0,6.404,0.0,4.989,-16.776,-8.075,0.023,0.218,-0.716,-0.083,0.536,-0.071,-0.698,5.116,0.0,0.0,-0.048,-4.127,-0.459,-0.982,-1.62,-0.249,0.0,0.329,7.165,2.905,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12825.0,700.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 -house011.xml,45.284,45.284,45.284,45.284,0.0,0.0,0.0,0.0,0.0,0.0,7.448,0.713,0.149,0.007,8.185,2.248,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.948,0.157,25.447,9.316,1.125,0.0,0.0,0.0,332.0,4924.4,3422.3,4924.4,18.655,16.085,0.0,2.676,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.446,-5.243,-2.073,0.0,1.681,1.307,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.569,8.132,2.829,0.0,1860.1,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,21497.0,8185.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 -house012.xml,35.766,35.766,35.766,35.766,0.0,0.0,0.0,0.0,0.0,0.0,4.991,0.265,0.0,0.0,5.712,1.444,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.625,0.0,15.949,7.775,1.158,0.0,0.0,0.0,0.0,2993.8,2816.8,2993.8,11.339,11.448,0.0,2.373,4.775,0.0,0.0,0.632,2.7,-1.856,0.0,0.0,2.027,0.0,-0.272,1.658,0.0,4.397,0.0,0.342,-4.206,-1.936,0.0,1.734,1.133,0.0,0.0,-0.027,0.502,3.486,0.0,0.0,1.579,0.0,-0.272,-0.148,-0.263,-0.688,0.0,0.271,6.26,2.439,0.0,1575.3,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,12004.0,636.0,2706.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1024.0,3320.0,2498.0,370.0,1328.0,800.0 -house013.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2285.9,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.239,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 -house014.xml,31.575,31.575,31.575,31.575,0.0,0.0,0.0,0.0,0.0,0.0,3.541,0.217,0.008,0.0,4.143,1.35,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.981,0.008,16.203,6.844,0.598,0.0,0.0,0.0,0.0,2933.5,2375.8,2933.5,11.204,10.686,0.0,1.693,3.689,0.0,0.0,0.586,3.033,-2.498,0.0,0.0,2.189,0.0,-0.258,1.731,0.0,1.121,0.0,1.587,-3.313,-1.604,0.0,1.134,0.56,0.0,0.0,-0.065,0.567,4.73,0.0,0.0,0.621,0.0,-0.257,-0.239,-0.371,-0.252,0.0,1.626,5.792,2.447,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1682.0,312.0,770.0,600.0 -house015.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2285.9,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.239,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 -house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,6.564,0.0,15.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,25.676,0.2,11.075,10.47,0.0,0.0,0.0,2.0,11.0,7490.7,3805.5,7490.7,43.399,19.024,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852,1758.9,1746.2,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,27224.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5286.0,18632.0,0.0,9139.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,92.628,92.628,27.628,27.628,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.394,0.588,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.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,42.966,0.0,9.661,11.132,3.429,0.0,0.0,154.0,94.0,1752.9,3654.3,3654.3,60.37,19.61,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676,1778.6,1769.0,13969.4,4664.0,0.0,60000.0,24000.0,0.0,16.16,89.24,36715.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11612.0,16973.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 -house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,0.0,4300.8,2813.2,4300.8,20.203,11.09,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167,1341.8,1265.0,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,20934.0,7542.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,12944.0,2711.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2870.0,1359.0,712.0,800.0 -house019.xml,130.924,130.924,51.412,51.412,79.513,0.0,0.0,0.0,0.0,0.0,0.0,1.145,0.0,0.0,11.118,3.598,9.72,0.0,0.0,8.918,0.0,0.741,0.054,0.0,0.0,0.0,1.776,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.859,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.737,0.0,0.0,0.0,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.542,0.0,43.367,7.887,1.827,0.0,0.0,194.0,265.0,2881.5,6510.6,6633.5,85.025,46.034,0.0,11.376,44.742,0.649,4.997,1.919,16.393,-14.227,0.0,0.0,0.0,5.939,-0.058,8.895,0.0,1.868,0.0,0.0,-9.364,-5.112,0.0,2.992,10.191,0.15,2.861,0.274,1.619,17.005,0.0,0.0,0.0,-4.229,-0.045,-0.147,-0.549,0.025,0.0,0.0,8.111,3.806,1341.8,1265.0,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50551.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,2051.0,5769.0,5453.0,32657.0,0.0,12638.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,118.228,118.228,55.915,55.915,0.0,0.0,62.313,0.0,0.0,0.0,0.0,0.859,0.0,0.0,12.832,2.69,0.0,0.0,0.0,12.743,0.0,0.893,0.026,0.0,0.0,0.0,3.6,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.257,16.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,40.171,0.0,18.911,0.0,3.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,37.003,0.0,32.561,10.47,4.231,0.0,0.0,0.0,0.0,2751.7,7066.1,7066.1,31.591,32.388,0.905,10.974,10.526,1.128,9.723,0.63,15.107,-15.183,0.0,0.0,0.0,7.43,-0.035,15.222,0.0,0.835,0.0,0.0,-13.621,-6.997,0.25,0.229,0.292,0.065,6.495,0.019,-2.378,20.686,0.0,0.0,0.0,-6.534,-0.025,-2.589,-3.085,-0.19,0.0,0.0,13.724,5.746,1758.9,1746.2,13595.5,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,46012.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3834.0,6812.0,10343.0,25326.0,0.0,10675.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,158.54,158.54,48.127,48.127,110.414,0.0,0.0,0.0,0.0,0.0,0.0,2.045,0.0,0.0,8.113,1.43,0.0,0.0,0.0,10.634,0.244,0.772,0.071,0.0,0.0,0.0,2.427,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.257,13.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.375,0.0,19.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,75.135,0.0,17.706,10.98,3.821,0.0,0.0,0.0,0.0,2865.6,4993.1,4993.1,81.669,23.457,0.0,8.26,27.041,2.42,9.152,0.859,21.809,-20.304,0.0,0.0,1.092,9.421,-0.34,26.657,0.0,2.49,0.0,6.202,-13.373,-6.862,0.0,0.067,-0.68,0.022,2.244,-0.088,-2.169,14.671,0.0,0.0,0.043,-5.98,-0.317,-2.326,-1.373,-0.378,0.0,1.216,9.112,3.772,1758.9,1746.2,13752.1,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,53036.0,8062.0,10175.0,0.0,318.0,15825.0,0.0,323.0,2208.0,3431.0,12694.0,28563.0,5947.0,9824.0,0.0,149.0,3704.0,0.0,-30.0,0.0,2501.0,1718.0,4750.0,4899.0,1126.0,2773.0,1000.0 -house022.xml,138.855,138.855,48.43,48.43,0.0,90.425,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,8.598,0.867,12.465,0.0,0.0,6.686,0.0,0.61,0.034,0.0,0.0,0.0,1.898,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.257,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.231,0.0,18.685,10.98,1.483,0.0,0.0,186.0,120.0,3142.8,5517.2,5517.2,90.88,27.579,3.681,3.755,20.599,0.0,0.0,1.485,16.585,-13.15,0.0,0.0,14.625,0.0,-0.282,37.699,0.0,1.153,0.0,0.0,-8.488,-4.276,1.128,0.188,0.724,0.0,0.0,-0.114,-1.349,11.438,0.0,0.0,2.126,0.0,-0.274,-2.54,-1.143,-0.069,0.0,0.0,5.992,2.41,1758.9,1746.2,13751.6,4620.0,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,25297.0,0.0,8964.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,139.655,139.655,62.824,62.824,0.0,76.832,0.0,0.0,0.0,0.0,0.0,1.935,0.0,0.0,5.809,0.724,19.988,0.0,0.0,9.214,0.0,0.692,0.045,0.0,0.0,0.0,4.03,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,11.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,76.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,64.144,0.0,15.975,17.089,2.771,0.0,0.0,0.0,0.0,4118.5,5048.7,5048.7,62.827,20.991,0.0,10.207,21.479,1.2,16.388,0.85,9.987,-7.816,0.0,0.0,0.0,6.155,-0.059,23.718,0.0,1.636,0.0,0.0,-14.037,-5.919,0.0,-0.145,-0.924,-0.008,6.022,-0.11,-0.995,9.137,0.0,0.0,0.0,-5.965,-0.037,-2.587,-1.358,-0.309,0.0,0.0,10.041,3.296,2176.0,2227.4,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45741.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1816.0,4899.0,15091.0,22621.0,0.0,8657.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,130.442,130.442,43.548,43.548,0.0,86.895,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,5.2,0.484,16.743,0.0,0.0,3.914,0.0,0.396,0.058,0.0,0.0,0.0,1.837,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,3.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,86.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.637,0.0,15.262,14.642,2.089,0.0,0.0,0.0,0.0,2725.0,3635.3,3635.3,72.215,17.667,0.0,7.178,30.02,0.0,0.0,0.682,7.226,-7.905,0.0,0.0,5.08,0.0,-0.118,25.415,0.0,1.84,0.0,11.93,-7.457,-2.541,0.0,0.62,1.355,0.0,0.0,-0.037,-0.258,5.994,0.0,0.0,0.595,0.0,-0.111,-1.369,-0.638,-0.185,0.0,2.849,5.131,1.373,2176.0,2227.4,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,62265.0,14455.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21691.0,1206.0,4065.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,6594.0,2155.0,3639.0,800.0 -house025.xml,105.595,105.595,69.79,69.79,35.805,0.0,0.0,0.0,0.0,0.0,6.738,1.082,0.0,0.0,18.727,3.059,12.209,0.0,0.0,9.258,0.0,0.783,0.0,0.0,0.0,0.0,3.902,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,8.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,37.64,0.0,47.484,8.315,3.831,0.0,0.0,0.0,0.0,4475.8,7250.8,7250.8,36.615,33.391,0.0,3.377,17.567,0.0,0.0,2.17,7.405,-5.706,0.0,0.0,6.826,0.0,-1.341,13.757,0.001,0.41,0.0,5.032,-7.951,-3.985,0.0,1.098,5.727,0.0,0.0,0.446,1.957,12.402,0.0,0.0,5.586,0.0,-1.34,-0.7,-0.276,-0.004,0.0,6.311,11.261,5.273,1341.8,1265.0,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,58096.0,23804.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,35348.0,11892.0,7696.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,57.845,57.845,24.948,24.948,32.897,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.53,0.252,0.548,0.299,0.0,0.0,0.0,2.07,0.0,0.0,0.447,0.338,2.514,1.529,0.934,2.116,7.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.764,0.0,14.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.39,0.0,0.0,8.599,2.08,0.0,0.0,0.0,0.0,1544.5,1474.7,1544.5,17.654,0.0,0.0,1.767,6.851,0.232,0.0,0.197,4.392,-2.928,0.0,0.0,7.072,0.0,-0.056,2.495,0.0,3.132,0.0,0.0,-5.785,-3.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1298.2,1286.6,8604.1,3032.2,0.0,84000.0,0.0,0.0,24.62,91.58,22013.0,0.0,3869.0,0.0,128.0,5462.0,0.0,5703.0,0.0,1459.0,5391.0,16135.0,0.0,5497.0,0.0,78.0,1775.0,0.0,1973.0,0.0,2302.0,1191.0,3320.0,2344.0,0.0,1544.0,800.0 -house027.xml,74.259,74.259,31.076,31.076,43.183,0.0,0.0,0.0,0.0,0.0,0.0,0.485,0.0,0.0,7.385,0.885,0.0,0.0,0.0,5.944,0.218,0.485,0.927,0.0,0.0,0.0,1.632,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,7.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.188,0.0,17.925,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.9,0.0,21.594,8.556,5.272,0.0,0.0,0.0,0.0,1607.5,3801.4,3801.4,24.471,23.121,0.719,1.781,7.929,0.453,0.0,0.594,4.98,-4.015,0.0,0.0,0.319,3.213,-0.176,1.463,0.0,10.47,0.0,2.235,-6.296,-2.854,0.511,1.189,0.91,0.07,0.0,-0.098,0.289,5.396,0.0,0.0,0.154,3.938,-0.176,-0.259,-1.464,-3.2,0.0,2.444,8.654,3.09,1610.8,1575.3,10579.6,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,37233.0,7641.0,4494.0,0.0,375.0,6506.0,550.0,183.0,8238.0,1516.0,7731.0,19088.0,3708.0,4018.0,0.0,228.0,2884.0,270.0,2.0,0.0,2392.0,2267.0,3320.0,5496.0,1758.0,2939.0,800.0 -house028.xml,68.554,68.554,29.518,29.518,39.036,0.0,0.0,0.0,0.0,0.0,0.0,0.318,0.0,0.0,7.193,1.296,0.0,0.0,0.0,6.134,0.226,0.503,0.618,0.0,0.0,0.0,2.008,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,7.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.53,0.0,18.119,3.047,3.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,13.687,0.0,22.855,10.217,3.627,0.0,0.0,0.0,0.0,1545.2,3715.1,3715.1,20.61,23.382,0.766,1.652,7.151,0.355,0.0,0.439,4.949,-3.806,0.0,0.0,0.244,2.464,-0.058,4.054,0.0,4.47,0.0,1.743,-7.973,-2.893,0.619,1.255,-0.384,0.112,0.0,0.068,0.158,6.209,0.0,0.0,0.068,1.941,-0.058,-1.019,-2.007,-1.584,0.0,3.014,11.151,3.241,1857.6,1860.1,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31143.0,8672.0,4365.0,0.0,272.0,5108.0,616.0,129.0,3569.0,1488.0,6925.0,19430.0,3976.0,5658.0,0.0,109.0,1852.0,374.0,2.0,0.0,2348.0,1562.0,3550.0,5049.0,2024.0,2025.0,1000.0 -house029.xml,78.452,78.452,29.936,29.936,48.516,0.0,0.0,0.0,0.0,0.0,0.0,0.745,0.0,0.0,6.195,0.83,0.0,0.0,0.0,6.539,0.275,0.569,0.76,0.0,0.0,0.0,1.844,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,6.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.86,0.0,12.586,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.604,0.0,13.186,9.606,0.0,0.0,0.0,0.0,0.0,1666.8,3302.9,3302.9,28.622,14.297,0.0,3.358,14.585,0.392,0.0,0.295,6.276,-6.012,0.0,0.0,6.794,0.0,-0.09,7.301,0.0,7.302,0.0,3.287,-7.34,-3.695,0.0,1.163,-0.577,0.014,0.0,0.072,0.538,5.271,0.0,0.0,-0.44,0.0,-0.085,-0.752,-1.793,-1.465,0.0,1.412,7.023,2.844,1610.8,1575.4,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,30138.0,3386.0,4924.0,0.0,120.0,7666.0,0.0,2973.0,0.0,2105.0,8965.0,14814.0,-524.0,4842.0,0.0,-11.0,1788.0,0.0,914.0,0.0,2842.0,1642.0,3320.0,3901.0,903.0,2197.0,800.0 -house030.xml,59.571,59.571,17.179,17.179,0.0,0.0,42.392,0.0,0.0,0.0,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.321,0.272,0.497,0.57,0.0,0.0,0.0,1.815,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.88,5.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,24.054,0.0,13.3,2.238,2.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,18.157,0.0,0.0,7.708,2.222,0.0,0.0,0.0,0.0,1161.3,1088.5,1161.3,16.168,0.0,0.0,1.67,10.147,0.485,1.095,1.038,5.176,-3.336,0.0,0.0,0.0,3.4,-0.045,2.725,0.0,5.692,0.0,0.0,-7.087,-2.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,1064.7,993.3,6760.8,2579.8,0.0,87000.0,0.0,0.0,17.24,91.22,20273.0,0.0,3366.0,0.0,449.0,7834.0,0.0,0.0,3900.0,1036.0,3688.0,9762.0,0.0,2595.0,0.0,183.0,1663.0,0.0,0.0,0.0,1399.0,832.0,3090.0,1714.0,0.0,1114.0,600.0 -house031.xml,235.571,235.571,50.167,50.167,185.404,0.0,0.0,0.0,0.0,0.0,0.0,3.537,0.0,0.0,12.804,3.242,0.0,0.0,0.0,10.355,0.246,0.759,0.0,0.0,0.0,0.0,1.486,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.053,12.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.924,0.0,29.081,4.254,4.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,121.743,0.0,39.485,17.919,5.236,0.0,0.0,50.0,113.0,3195.8,7728.0,7848.9,125.757,49.799,0.0,14.436,41.981,1.048,6.618,1.392,20.047,-16.789,0.0,0.0,1.977,6.044,-0.86,56.94,0.001,0.653,0.0,9.881,-15.327,-6.477,0.0,2.267,5.191,0.176,2.824,0.116,0.498,16.921,0.0,0.0,0.227,-3.598,-0.827,-1.831,-0.833,-0.009,0.0,3.046,10.994,3.878,2593.1,2708.5,18308.0,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83120.0,13668.0,10261.0,0.0,650.0,23580.0,0.0,643.0,1726.0,7333.0,25259.0,43562.0,9684.0,13165.0,0.0,305.0,7760.0,0.0,-124.0,0.0,5345.0,3418.0,4010.0,8581.0,1662.0,5518.0,1400.0 -house032.xml,102.299,102.299,15.55,15.55,86.749,0.0,0.0,0.0,0.0,0.0,0.0,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.091,0.0,0.518,0.0,0.0,0.0,0.0,1.583,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.859,4.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.52,0.0,16.252,2.201,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.391,0.0,0.0,7.996,4.946,0.0,0.0,154.0,0.0,1429.9,901.6,1429.9,50.645,0.0,0.0,10.388,8.743,1.918,20.355,1.409,8.345,-9.322,0.0,0.0,0.0,4.513,0.015,14.965,0.0,0.623,0.0,0.0,-8.206,-3.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36329.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1507.0,5647.0,6794.0,17271.0,0.0,6289.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.731,107.731,14.756,14.756,0.0,92.975,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.885,0.0,0.529,0.0,0.0,0.0,0.0,1.353,0.0,0.0,0.0,0.194,1.443,1.159,0.0,1.461,3.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,85.294,0.0,7.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,64.29,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1044.7,861.4,1044.7,48.451,0.0,0.0,19.12,14.557,0.0,0.0,1.0,11.111,-7.528,0.0,0.0,14.642,0.0,-0.368,18.592,0.0,0.791,0.0,0.0,-4.617,-3.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,924.7,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,19016.0,0.0,4578.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,155.512,155.512,43.167,43.167,0.0,0.0,112.345,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.489,0.341,1.205,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,15.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,90.983,0.0,21.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,64.387,0.0,0.0,11.564,5.444,0.0,0.0,0.0,0.0,3011.6,2525.6,3011.6,86.69,0.0,0.0,8.856,26.894,0.0,2.842,1.895,26.585,-26.228,0.0,0.0,10.893,2.685,0.049,34.727,0.0,0.57,0.0,0.0,-14.646,-10.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.9,1746.2,10287.0,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61329.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4062.0,1995.0,4622.0,18068.0,34659.0,0.0,20217.0,0.0,482.0,4382.0,0.0,212.0,0.0,3369.0,2447.0,3550.0,4951.0,0.0,3951.0,1000.0 -house035.xml,64.19,64.19,17.261,17.261,46.929,0.0,0.0,0.0,0.0,0.0,0.0,0.832,0.0,0.0,1.679,0.109,0.0,0.0,0.0,5.435,0.0,0.534,0.0,0.0,0.0,0.0,2.043,0.0,0.0,0.223,0.194,0.114,0.079,0.0,1.461,4.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.453,0.0,9.639,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,27.469,0.0,2.545,3.916,3.836,0.0,0.0,104.0,0.0,1396.7,2033.2,2033.2,39.497,9.871,0.365,6.108,10.785,0.0,0.0,0.534,6.072,-7.324,0.0,0.0,7.708,0.0,0.006,13.582,0.0,0.488,0.0,0.0,-7.184,-3.475,0.065,-0.497,-1.432,0.0,0.0,-0.076,-1.356,7.069,0.0,0.0,-4.261,0.0,0.011,-2.603,-1.198,-0.123,0.0,0.0,5.102,1.96,924.7,783.8,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,16095.0,0.0,5641.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,83.077,83.077,25.512,25.512,57.565,0.0,0.0,0.0,0.0,0.0,0.0,0.997,0.0,0.0,5.633,0.939,0.0,0.0,0.0,5.446,0.0,0.536,0.0,0.0,0.0,0.0,1.459,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.088,0.0,17.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.95,0.0,13.749,8.213,5.849,0.0,0.0,106.0,124.0,1503.0,3330.8,3330.8,32.088,17.073,5.495,2.25,3.959,0.0,0.0,1.819,6.784,-7.199,0.0,0.0,20.975,0.0,-0.011,7.394,0.0,0.552,0.0,0.0,-5.657,-3.433,1.639,0.148,0.018,0.0,0.0,-0.203,-0.839,5.702,0.0,0.0,2.612,0.0,-0.011,-0.703,-0.947,-0.057,0.0,0.0,4.264,2.013,1341.8,1265.0,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,13120.0,0.0,4222.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,89.347,89.347,21.69,21.69,0.0,67.658,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.0,0.61,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.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,51.513,0.0,16.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,38.243,0.0,0.0,7.424,0.0,0.0,0.0,0.0,0.0,1464.6,1261.1,1464.6,29.92,0.0,0.0,16.726,11.32,0.0,0.0,1.564,7.658,-10.359,0.0,0.0,6.485,0.0,-0.377,14.717,0.0,0.46,0.0,0.0,-6.013,-3.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,1341.8,1265.0,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,26002.0,0.0,7077.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,126.274,126.274,50.686,50.686,75.588,0.0,0.0,0.0,0.0,0.0,0.0,1.109,0.0,0.0,13.498,2.497,0.0,0.0,0.0,6.904,0.315,0.625,0.0,0.0,0.0,0.0,1.429,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,6.092,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,51.568,0.0,24.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,41.305,0.0,30.435,14.704,4.602,0.0,0.0,0.0,215.0,2354.5,5805.1,5805.1,48.416,27.559,0.0,3.648,14.874,0.65,4.429,0.81,12.438,-10.449,0.0,0.0,1.856,2.334,-0.09,22.508,0.002,0.594,0.0,0.0,-8.966,-3.828,0.0,0.85,2.636,0.142,2.236,0.02,0.963,12.735,0.0,0.0,0.337,-0.579,-0.079,-0.53,-0.333,0.006,0.0,0.0,8.232,3.077,2176.0,2227.4,14642.1,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,30970.0,0.0,6993.0,0.0,362.0,9766.0,0.0,640.0,734.0,1706.0,10769.0,18185.0,0.0,9122.0,0.0,170.0,2306.0,0.0,-123.0,0.0,1243.0,1457.0,4010.0,3753.0,0.0,2353.0,1400.0 -house039.xml,101.512,101.512,23.992,23.992,77.52,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,5.181,0.0,0.0,4.408,0.239,0.418,0.0,0.0,0.0,0.0,1.674,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.655,4.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.832,0.0,0.0,0.0,3.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,47.006,0.0,0.0,14.261,1.139,0.0,0.0,0.0,0.0,1705.9,1586.2,1705.9,50.362,0.0,0.0,14.176,5.359,0.0,0.0,2.503,16.085,-13.551,0.0,0.0,13.942,0.0,-0.055,13.236,0.0,0.554,0.0,0.0,-2.832,-2.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,2176.0,2227.4,17537.6,5211.7,0.0,87000.0,0.0,0.0,16.16,89.24,41752.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6185.0,0.0,8806.0,10883.0,22993.0,0.0,9886.0,0.0,683.0,526.0,0.0,690.0,0.0,6418.0,1470.0,3320.0,3173.0,0.0,2373.0,800.0 -house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.969,0.0,0.0,7.996,5.526,0.0,0.0,0.0,0.0,1818.3,1304.9,1818.3,62.433,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44724.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11594.0,23971.0,0.0,8227.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,260.497,260.497,46.803,46.803,213.694,0.0,0.0,0.0,0.0,0.0,0.0,4.203,0.0,0.0,2.469,0.228,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.175,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.138,0.0,26.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.334,0.0,4.305,15.626,5.047,0.0,0.0,113.0,0.0,3254.0,5159.0,5159.0,77.829,24.679,0.0,11.243,45.009,3.515,35.002,3.139,38.839,-20.775,0.0,0.0,4.603,17.349,-0.612,64.092,0.0,2.763,0.0,0.0,-18.492,-10.888,0.0,0.139,-2.016,-0.113,1.736,-0.211,-2.727,9.453,0.0,0.0,-0.342,-5.175,-0.61,-3.308,-1.927,-0.247,0.0,0.0,6.717,3.047,1857.6,1860.1,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,109895.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,31239.0,25390.0,0.0,15296.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 -house042.xml,232.637,232.637,39.795,39.795,192.842,0.0,0.0,0.0,0.0,0.0,0.0,3.946,0.0,0.0,1.717,0.06,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.404,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.58,0.0,2.527,15.626,3.233,0.0,0.0,0.0,0.0,2711.0,3497.4,3497.4,88.501,19.177,0.0,9.163,39.814,4.009,43.685,2.648,34.199,-19.431,0.0,0.0,2.447,14.535,-0.346,56.283,0.0,1.748,0.0,0.0,-17.458,-7.569,0.0,0.226,-1.385,-0.052,2.932,-0.142,-2.897,5.785,0.0,0.0,-0.259,-4.859,-0.342,-2.691,-1.169,-0.137,0.0,0.0,5.603,1.965,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,96883.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,27501.0,15574.0,0.0,5937.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 -house043.xml,159.524,159.524,29.691,29.691,129.832,0.0,0.0,0.0,0.0,0.0,0.0,2.496,0.0,0.0,1.877,0.098,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.933,0.0,19.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.711,0.0,2.569,13.079,2.212,0.0,0.0,0.0,0.0,1956.4,3029.6,3029.6,54.812,13.675,0.0,3.162,23.178,2.292,33.736,5.573,22.928,-10.012,0.0,0.0,0.549,9.918,-0.317,28.975,0.0,1.575,0.0,0.0,-13.074,-5.127,0.0,0.046,-0.755,-0.085,1.782,-0.334,-1.953,4.655,0.0,0.0,-0.067,-3.531,-0.317,-1.511,-1.04,-0.139,0.0,0.0,4.467,1.431,1610.8,1575.4,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,65558.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16233.0,14430.0,0.0,7218.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,429.0,3320.0,1456.0,0.0,656.0,800.0 -house044.xml,227.742,227.742,43.242,43.242,184.5,0.0,0.0,0.0,0.0,0.0,0.0,4.742,0.0,0.0,2.041,0.174,0.0,0.0,0.0,12.947,0.315,0.974,0.037,0.0,0.0,0.0,2.097,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,12.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.931,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.451,0.0,3.393,13.079,4.458,0.0,0.0,0.0,0.0,3132.0,4107.8,4107.8,81.142,19.331,4.367,6.894,36.482,9.228,19.244,2.756,17.943,-11.679,0.0,0.0,12.908,15.067,-0.509,61.977,0.0,1.434,0.0,0.0,-16.586,-10.177,0.253,0.464,-1.317,-0.098,1.22,-0.114,-0.727,5.622,0.0,0.0,-1.11,-4.787,-0.506,-2.598,-0.958,-0.097,0.0,0.0,5.436,2.77,1610.8,1575.4,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,81137.0,0.0,8422.0,0.0,1211.0,29262.0,1911.0,5137.0,2346.0,3592.0,29257.0,20316.0,0.0,10363.0,0.0,114.0,2778.0,368.0,-23.0,0.0,2623.0,772.0,3320.0,1982.0,0.0,1182.0,800.0 -house045.xml,152.536,152.536,34.866,34.866,117.67,0.0,0.0,0.0,0.0,0.0,0.0,2.788,0.0,0.0,2.269,0.261,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.141,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.214,0.0,22.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,88.461,0.0,3.641,13.079,4.371,0.0,0.0,0.0,0.0,2334.1,3370.1,3370.1,47.084,13.395,3.573,3.08,15.119,2.29,32.746,1.135,17.716,-12.23,0.968,-0.414,0.086,12.636,-0.264,20.648,0.0,10.929,0.0,0.0,-13.33,-6.949,0.0,0.017,-1.029,-0.116,1.069,-0.082,-1.244,6.238,-0.061,0.4,-0.012,-3.972,-0.264,-1.122,-1.877,-1.218,0.0,0.0,4.895,2.111,1610.8,1575.4,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,56820.0,0.0,8558.0,455.0,398.0,28556.0,1494.0,31.0,2749.0,1367.0,13211.0,12890.0,0.0,7147.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,407.0,3320.0,1423.0,0.0,623.0,800.0 -house046.xml,25.04,25.04,25.04,25.04,0.0,0.0,0.0,0.0,0.0,0.0,5.452,0.491,0.322,0.011,3.718,0.994,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.667,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.344,0.334,12.736,4.303,0.617,0.0,0.0,0.0,0.0,3862.9,2471.5,3862.9,16.226,13.508,0.0,2.514,3.83,0.0,0.0,0.327,2.233,-1.66,0.0,0.0,-0.157,0.0,-0.304,7.98,0.0,0.378,0.0,2.958,-3.234,-0.476,0.0,1.282,2.546,0.0,0.0,0.026,0.787,2.44,0.0,0.0,-0.156,0.0,-0.303,-0.429,-0.226,0.02,0.0,1.781,4.463,0.553,596.8,442.4,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,15003.0,3888.0,3183.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,21.532,21.532,14.849,14.849,6.683,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,1.073,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.335,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.496,0.0,1.506,4.202,0.0,0.0,0.0,0.0,0.0,872.9,989.4,989.4,4.818,2.615,0.0,-0.001,0.771,0.126,0.0,0.0,1.725,-0.562,0.0,0.0,0.0,1.363,-0.013,1.575,0.0,4.983,0.0,0.219,-3.202,-0.511,0.0,-0.001,0.108,0.034,0.0,0.0,-0.043,0.795,0.0,0.0,0.0,-1.085,-0.013,-0.216,-0.368,-1.32,0.0,-0.0,3.204,0.41,251.7,442.4,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7413.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,3785.0,4112.0,0.0,478.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,92.04,92.04,39.344,39.344,52.697,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,12.626,3.699,0.0,0.0,0.0,3.689,0.085,0.499,3.033,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.764,0.0,12.592,0.0,3.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,29.758,0.0,51.767,7.249,2.658,0.0,0.0,0.0,0.0,1514.9,5614.8,5614.8,42.48,34.051,1.023,2.627,11.996,0.0,0.0,0.804,4.608,-2.543,0.0,0.0,0.056,1.968,-0.572,6.806,0.0,4.214,0.0,6.499,-6.341,-1.49,1.322,1.001,9.312,0.0,0.0,0.567,3.689,4.25,0.0,0.0,0.075,10.085,-0.56,0.536,-0.622,1.976,0.0,7.0,11.153,2.199,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29599.0,8414.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4490.0,1126.0,2365.0,1000.0 -house049.xml,36.164,36.164,32.666,32.666,3.498,0.0,0.0,0.0,0.0,0.0,8.24,0.05,0.0,0.0,7.625,0.191,2.645,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.952,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.359,0.0,30.615,4.258,1.319,0.0,0.0,0.0,133.0,4683.0,2827.5,4683.0,13.283,15.961,0.0,1.364,4.328,0.0,0.0,0.0,4.25,-5.816,0.0,0.0,0.0,1.213,-0.089,2.666,0.0,1.852,0.0,0.0,-2.005,-0.473,0.0,1.699,7.248,0.0,0.0,0.0,3.034,9.851,0.0,0.0,0.0,3.487,-0.088,-0.013,-2.938,0.719,0.0,0.0,7.157,1.0,728.6,567.6,7487.5,928.6,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,52.477,52.477,21.694,21.694,30.782,0.0,0.0,0.0,0.0,0.0,0.0,0.288,0.0,0.0,1.913,0.324,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.18,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.867,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.475,0.0,5.159,8.571,0.0,0.0,0.0,0.0,0.0,1104.2,2906.4,2906.4,11.283,17.416,0.0,4.13,6.499,0.0,0.0,2.029,5.128,-4.19,0.0,0.0,4.893,0.0,-0.158,2.662,0.0,3.672,0.0,2.015,-9.065,-1.209,0.0,-0.252,-0.23,0.0,0.0,-0.366,0.342,4.046,0.0,0.0,-0.915,0.0,-0.157,-0.518,-2.474,-0.708,0.0,0.594,5.246,0.573,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7747.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17924.0,5170.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,723.0,0.0,-77.0,800.0 +base-lighting-ceiling-fans.xml,58.359,58.359,36.093,36.093,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.136,0.774,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.525,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.852,0.0,13.498,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3416.4,3416.4,23.032,18.686,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.063,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.493,-0.056,2.604,-0.033,-1.493,11.73,0.0,0.0,0.0,-6.457,-0.059,-1.181,-4.017,-0.171,0.0,2.964,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.192,58.192,35.907,35.907,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,9.017,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2407.8,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.698,59.698,39.302,39.302,20.396,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.473,0.855,9.016,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.396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.1,0.0,14.87,9.075,0.613,0.0,0.0,0.0,0.0,2414.8,3536.9,3536.9,22.763,19.399,0.0,3.59,3.667,0.516,7.604,0.636,10.161,-12.654,0.0,0.0,0.0,8.421,-0.068,4.816,0.0,0.731,0.0,4.467,-8.891,-4.249,0.0,-0.075,-0.479,-0.054,2.64,-0.03,-1.446,11.743,0.0,0.0,0.0,-6.408,-0.065,-1.171,-4.013,-0.167,0.0,3.245,7.887,3.428,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-mixed.xml,58.171,58.171,35.885,35.885,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,9.017,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2131.0,3374.9,3374.9,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,55.949,55.949,30.913,30.913,25.036,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.826,0.7,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.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.447,0.0,12.177,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3173.3,3173.3,23.408,17.956,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.197,-0.059,4.798,0.0,0.728,0.0,5.365,-8.928,0.0,0.0,-0.017,-0.445,-0.049,2.741,-0.021,-1.348,11.719,0.0,0.0,0.0,-6.229,-0.054,-1.143,-3.746,-0.165,0.0,2.735,8.375,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.582,55.582,30.526,30.526,25.056,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.936,0.726,9.019,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.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,12.566,9.075,0.616,0.0,0.0,0.0,0.0,1722.6,3138.5,3138.5,23.408,18.169,0.0,3.511,3.615,0.509,7.44,0.625,10.029,-12.718,0.0,0.0,0.0,8.212,-0.058,4.798,0.0,0.728,0.0,5.369,-8.928,0.0,0.0,0.023,-0.398,-0.043,2.868,-0.009,-1.209,11.719,0.0,0.0,0.0,-6.037,-0.054,-1.11,-3.561,-0.157,0.0,2.852,7.852,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-location-AMY-2012.xml,66.881,66.881,34.698,34.698,32.183,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,2.927,0.481,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.183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,8.638,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2850.8,2850.8,23.49,15.74,0.0,4.269,4.385,0.623,9.841,0.807,12.586,-13.821,0.0,0.0,0.0,11.007,-0.085,5.205,0.0,0.774,0.0,7.114,-10.175,-2.864,0.0,0.005,-0.334,-0.041,1.637,-0.043,-1.644,9.921,0.0,0.0,0.0,-7.38,-0.076,-0.875,-2.687,-0.096,0.0,2.081,6.658,1.66,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,38.917,38.917,29.707,29.707,9.21,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.008,1.008,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.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,8.508,0.0,16.746,8.405,0.66,0.0,0.0,0.0,0.0,1684.8,2550.8,2550.8,13.608,14.212,0.0,3.493,3.346,0.0,0.0,0.722,9.059,-8.542,0.0,0.0,3.31,0.0,-0.338,2.061,0.0,0.803,0.0,1.498,-5.844,-1.3,0.0,-0.106,-0.597,0.0,0.0,0.001,0.126,12.016,0.0,0.0,-0.893,0.0,-0.331,-0.42,-2.304,-0.206,0.0,1.546,6.739,1.347,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,27.814,27.814,27.654,27.654,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.058,0.954,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,15.536,7.296,0.693,0.0,0.0,0.0,0.0,1857.0,2417.0,2417.0,4.203,12.632,0.0,1.599,1.354,0.0,0.0,0.569,4.537,-5.641,0.0,0.0,2.605,0.0,-1.069,0.757,0.0,0.326,0.0,0.023,-4.306,-0.792,0.0,-0.849,-1.578,0.0,0.0,-0.453,-0.438,17.801,0.0,0.0,-4.133,0.0,-1.07,-0.569,-3.587,-0.397,0.0,0.972,8.278,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.243,34.243,32.52,32.52,1.723,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.826,1.846,6.71,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,30.786,6.562,0.574,0.0,0.0,0.0,0.0,1925.7,2832.5,2832.5,9.692,15.098,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.213,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.523,-0.032,0.0,0.0,0.192,2.657,17.264,0.0,0.0,0.0,1.856,-0.335,-0.356,-2.421,-0.097,0.0,0.353,9.561,1.904,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-location-duluth-mn.xml,70.515,70.515,29.62,29.62,40.895,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.289,0.329,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.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.0,5.406,11.397,0.834,0.0,0.0,0.0,0.0,1752.4,2446.9,2446.9,26.512,11.633,0.0,7.03,7.028,0.0,0.0,1.592,19.664,-13.103,0.0,0.0,9.995,0.0,-0.366,6.402,0.0,0.0,0.0,7.573,-6.247,-1.915,0.0,-0.44,-0.793,0.0,0.0,-0.092,-0.843,8.135,0.0,0.0,-1.561,0.0,-0.366,-0.508,-1.641,0.0,0.0,0.345,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.718,77.718,35.25,35.25,42.467,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.4,0.369,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.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,0.0,0.0,40.11,0.0,6.385,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3001.5,3001.5,30.328,14.851,0.0,5.359,5.464,0.773,11.524,1.049,15.462,-15.392,0.0,0.0,0.0,13.845,-0.19,7.82,0.0,1.206,0.0,8.246,-12.135,-3.367,0.0,0.008,-0.255,-0.027,1.301,0.009,-0.482,8.386,0.0,0.0,0.0,-6.063,-0.184,-0.68,-2.507,-0.122,0.0,1.32,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.6,35.6,35.6,35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.836,2.889,4.746,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.398,4.497,0.55,0.0,0.0,0.0,0.0,2130.5,2106.3,2282.4,0.0,13.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,1.245,0.761,0.0,0.0,0.304,5.305,20.458,0.0,0.0,0.0,6.041,-0.004,-0.041,-2.115,0.063,0.0,0.738,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,34.751,34.751,34.751,34.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.058,2.686,4.876,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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,44.892,4.634,0.552,0.0,0.0,0.0,0.0,2083.3,2402.8,2402.8,0.0,13.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.037,0.606,0.0,0.0,0.312,4.537,19.646,0.0,0.0,0.0,5.599,-0.004,-0.201,-2.929,-0.001,0.0,0.681,13.136,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.512,38.512,38.511,38.511,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.355,2.921,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,52.977,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3307.2,3307.2,0.564,18.415,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.766,1.406,0.0,0.0,0.804,6.879,24.223,0.0,0.0,0.0,7.021,-0.479,0.014,-3.281,0.117,0.0,0.95,11.527,2.372,1354.8,997.6,8260.5,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,36.932,36.932,27.395,27.395,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.775,0.511,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,8.421,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2663.0,2663.0,8.448,14.118,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.217,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.279,-0.746,0.0,0.0,0.003,-0.6,10.358,0.0,0.0,-2.866,0.0,-0.439,-0.339,-2.898,-0.248,0.0,0.534,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,78.588,78.588,37.575,37.575,41.013,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.061,0.746,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.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.412,0.0,12.902,9.075,0.62,0.0,0.0,0.0,0.0,2205.1,3756.3,3756.3,32.326,21.466,0.0,3.505,3.714,0.523,7.454,0.653,10.364,-12.828,0.0,0.0,0.0,8.178,-0.112,4.886,0.0,15.062,0.0,8.438,-9.161,-2.566,0.0,0.155,-0.254,-0.022,3.026,0.032,-0.703,11.586,0.0,0.0,0.0,-5.901,-0.108,-0.908,-3.049,-3.541,0.0,3.097,7.623,1.944,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.774,59.774,35.804,35.804,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.211,0.791,9.018,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.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,13.723,9.075,0.615,0.0,0.0,0.0,0.0,2184.9,3585.7,3585.7,24.906,20.499,0.0,3.547,3.643,0.513,7.528,0.63,10.092,-12.692,0.0,0.0,0.0,8.338,-0.059,4.321,0.0,2.474,0.0,5.172,-8.912,-2.501,0.0,-0.022,-0.434,-0.048,2.771,-0.019,-1.317,11.721,0.0,0.0,0.0,-6.192,-0.055,-1.025,-3.732,-0.678,0.0,3.064,7.868,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,18787.0,5329.0,7037.0,0.0,207.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.825,72.825,37.499,37.499,35.325,0.0,0.0,0.0,0.0,0.0,0.0,0.583,0.0,0.0,4.141,0.767,9.021,0.0,0.0,4.51,0.0,0.334,1.711,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.085,0.0,13.29,9.075,0.618,0.0,0.0,0.0,0.0,2171.3,3637.4,3637.4,29.395,21.237,0.0,3.488,3.662,0.515,7.503,0.638,10.177,-12.751,0.0,0.0,0.0,8.332,-0.071,1.561,0.0,13.874,0.0,7.379,-9.006,-2.523,0.0,0.059,-0.349,-0.035,2.951,0.006,-1.026,11.663,0.0,0.0,0.0,-5.926,-0.067,-0.257,-3.305,-3.207,0.0,3.126,7.776,1.987,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,72.932,72.932,38.446,38.446,34.485,0.0,0.0,0.0,0.0,0.0,0.0,0.569,0.0,0.0,4.857,0.858,9.021,0.0,0.0,4.51,0.0,0.334,1.865,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.818,0.0,10.24,9.075,0.618,0.0,0.0,0.0,0.0,2170.4,2937.6,2937.6,21.249,13.433,0.0,3.761,3.658,0.515,7.495,0.637,10.17,-12.739,0.0,0.0,0.0,8.318,-0.074,1.56,0.0,13.75,0.0,0.0,-9.003,-2.522,0.0,0.145,-0.351,-0.036,2.949,0.005,-1.027,11.674,0.0,0.0,0.0,-5.93,-0.071,-0.258,-3.296,-3.175,0.0,0.0,7.779,1.988,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.01,34.01,34.01,34.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,9.085,0.0,0.0,4.51,0.0,0.334,2.753,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.126,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2029.6,2119.8,0.0,18.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,-0.347,-0.034,3.019,-0.001,-1.069,11.85,0.0,0.0,0.0,-6.519,-0.058,-0.26,-3.066,-3.053,0.0,0.645,8.013,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.503,70.503,36.144,36.144,34.359,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.052,0.746,9.022,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,32.18,0.0,12.924,9.075,0.62,0.0,0.0,0.0,0.0,2132.3,3634.9,3634.9,29.397,21.223,0.0,3.516,3.683,0.518,7.479,0.644,10.25,-12.779,0.0,0.0,0.0,8.263,-0.086,2.299,0.0,12.513,0.0,7.194,-9.075,-2.542,0.0,0.112,-0.298,-0.028,3.015,0.019,-0.858,11.634,0.0,0.0,0.0,-5.871,-0.081,-0.262,-3.126,-3.978,0.0,3.05,7.709,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-cfis-supplemental-fan-supply.xml,72.155,72.155,36.17,36.17,35.985,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,4.062,0.748,9.021,0.0,0.0,4.51,0.0,0.334,0.469,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,33.703,0.0,12.944,9.075,0.619,0.0,0.0,0.0,0.0,2135.2,3634.9,3634.9,29.396,21.226,0.0,3.497,3.673,0.517,7.491,0.641,10.214,-12.776,0.0,0.0,0.0,8.3,-0.077,1.564,0.0,14.439,0.0,7.494,-9.043,-2.532,0.0,0.09,-0.319,-0.031,2.991,0.014,-0.931,11.637,0.0,0.0,0.0,-5.882,-0.073,-0.248,-3.185,-3.818,0.0,3.073,7.74,1.977,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.043,74.043,37.444,37.444,36.599,0.0,0.0,0.0,0.0,0.0,0.0,0.604,0.0,0.0,4.101,0.756,9.021,0.0,0.0,4.51,0.0,0.334,1.686,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.279,0.0,13.094,9.075,0.619,0.0,0.0,0.0,0.0,2175.2,3634.9,3634.9,29.395,21.219,0.0,3.493,3.707,0.522,7.474,0.652,10.347,-12.789,0.0,0.0,0.0,8.221,-0.117,1.575,0.0,14.069,0.0,8.507,-9.111,-2.552,0.0,0.161,-0.288,-0.027,2.97,0.024,-0.806,11.624,0.0,0.0,0.0,-5.961,-0.113,-0.235,-3.172,-2.98,0.0,2.408,7.672,1.958,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,64.045,64.045,37.571,37.571,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,13.849,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.289,19.837,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.671,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.049,64.049,37.571,37.571,26.478,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.249,0.798,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,26.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,0.0,0.0,24.797,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3543.2,3543.2,25.291,19.838,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.911,0.0,5.672,-8.928,-2.504,0.0,-0.012,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.842,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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.626,73.626,36.578,36.578,37.048,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.032,0.74,9.022,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.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,34.698,0.0,12.809,9.075,0.62,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.28,0.0,3.502,3.685,0.518,7.481,0.644,10.251,-12.793,0.0,0.0,0.0,8.263,-0.082,1.463,0.0,15.406,0.0,7.679,-9.078,-2.543,0.0,0.114,-0.295,-0.028,3.017,0.02,-0.855,11.62,0.0,0.0,0.0,-5.869,-0.078,-0.227,-3.116,-4.144,0.0,3.06,7.706,1.967,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,64.043,64.043,37.571,37.571,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.288,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.906,0.0,5.671,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.817,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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,64.046,64.046,37.571,37.571,26.475,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.248,0.799,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,26.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,24.794,0.0,13.848,9.075,0.616,0.0,0.0,0.0,0.0,2180.0,3544.5,3544.5,25.289,19.839,0.0,3.525,3.641,0.512,7.523,0.631,10.097,-12.705,0.0,0.0,0.0,8.356,-0.062,4.803,0.0,3.909,0.0,5.672,-8.928,-2.504,0.0,-0.013,-0.422,-0.046,2.818,-0.014,-1.267,11.708,0.0,0.0,0.0,-6.117,-0.058,-1.111,-3.635,-0.841,0.0,3.13,7.852,2.005,1354.8,997.6,11171.6,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.908,80.908,37.992,37.992,42.916,0.0,0.0,0.0,0.0,0.0,0.0,0.705,0.0,0.0,4.351,0.636,9.025,0.0,0.0,4.51,0.0,0.334,1.578,0.0,0.0,0.419,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,40.198,0.0,11.008,9.075,0.623,0.0,0.0,0.0,16.0,2268.6,3975.9,3975.9,36.155,23.176,0.0,3.186,3.72,0.523,7.481,0.654,10.367,-12.797,0.0,0.0,0.0,8.257,-0.113,4.106,0.0,9.57,0.0,16.596,-9.12,-2.557,0.0,0.124,-0.175,-0.011,3.259,0.051,-0.484,11.616,0.0,0.0,0.0,-5.54,-0.108,-0.59,0.0,-2.06,-9.155,4.541,7.667,1.952,1354.8,997.6,11171.6,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.276,72.276,36.645,36.645,35.631,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,4.105,0.758,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.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,33.371,0.0,13.123,9.075,0.619,0.0,0.0,0.0,0.0,2161.7,3664.9,3664.9,29.261,21.267,0.0,3.498,3.673,0.517,7.491,0.641,10.212,-12.774,0.0,0.0,0.0,8.302,-0.077,1.564,0.0,14.169,0.0,7.427,-9.041,-2.532,0.0,0.087,-0.321,-0.031,2.99,0.013,-0.935,11.639,0.0,0.0,0.0,-5.883,-0.073,-0.248,-3.191,-3.662,0.0,3.108,7.742,1.978,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.506,56.506,34.04,34.04,22.465,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,2.345,0.349,9.025,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.675,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.039,0.0,5.929,9.075,0.624,0.0,0.0,0.0,0.0,2119.4,3330.5,3330.5,23.032,15.879,0.0,3.553,3.643,0.513,7.548,0.63,10.093,-12.683,0.0,0.0,0.0,8.448,-0.057,4.805,0.0,0.729,0.0,4.875,-8.905,-2.499,0.0,0.166,-0.229,-0.018,3.367,0.031,-0.704,11.73,0.0,0.0,0.0,-5.266,-0.053,-0.948,0.0,-0.13,-13.009,1.634,7.883,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,0.729,35.707,-21.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-57.264,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.533,44.181,31.397,12.045,32.136,0.0,0.0,0.0,0.0,0.0,0.0,0.53,0.0,0.0,2.144,0.304,2.103,0.0,0.313,4.51,0.0,0.334,1.139,0.0,0.0,1.092,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.352,0.0,0.509,32.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,0.0,0.0,30.08,0.0,5.09,10.472,0.697,0.0,9.069,0.0,0.0,2429.5,2929.0,2929.0,26.181,14.941,0.0,3.5,3.695,0.519,7.462,1.121,10.341,-12.814,0.0,0.0,0.0,8.251,-0.1,1.512,0.0,15.392,0.0,2.785,-9.299,-2.562,0.0,0.761,-0.055,0.007,3.521,-0.185,-0.2,11.599,0.0,0.0,0.0,-5.118,-0.096,-0.184,0.0,-3.35,-11.787,0.419,8.613,1.948,1610.4,1574.2,10321.5,3637.5,2.894,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.728,68.538,37.442,29.253,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,1.695,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,74.993,66.804,35.707,27.518,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.681,55.681,35.628,35.628,20.053,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.213,0.792,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,18.778,0.0,13.744,9.075,0.614,0.0,0.0,0.0,0.0,2120.8,3375.3,3375.3,22.146,18.952,0.0,3.593,3.667,0.516,7.313,0.636,10.164,-12.663,0.0,0.0,0.0,6.708,-0.063,4.813,0.0,0.731,0.0,4.403,-8.891,-2.496,0.0,-0.043,-0.456,-0.051,2.435,-0.024,-1.381,11.75,0.0,0.0,0.0,-6.058,-0.059,-1.156,-3.846,-0.165,0.0,3.063,7.887,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,145.878,145.878,68.109,68.109,69.773,0.0,2.499,5.496,0.0,0.0,0.0,0.281,0.0,0.0,5.2,1.033,9.013,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.009,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.926,0.0,18.01,9.075,0.61,0.0,0.0,0.0,0.0,3267.1,5190.8,5190.8,21.946,21.08,0.0,3.635,3.692,0.52,7.726,0.64,10.227,-12.598,0.0,0.0,0.0,8.572,-0.065,4.831,0.0,0.734,0.0,3.786,-13.808,-2.35,0.0,-0.177,-0.56,-0.065,2.46,-0.052,-1.702,11.815,0.0,0.0,0.0,-6.695,-0.061,-1.243,-4.508,-0.178,0.0,3.746,13.227,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.362,92.362,64.56,64.56,19.807,2.499,0.0,0.0,5.496,0.0,0.0,0.281,0.0,0.0,5.2,1.033,9.013,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.009,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.926,0.0,18.01,9.075,0.61,0.0,0.0,0.0,0.0,3218.2,4788.3,4788.3,21.946,21.08,0.0,3.635,3.692,0.52,7.726,0.64,10.227,-12.598,0.0,0.0,0.0,8.572,-0.065,4.831,0.0,0.734,0.0,3.786,-13.808,-2.35,0.0,-0.177,-0.56,-0.065,2.46,-0.052,-1.702,11.815,0.0,0.0,0.0,-6.695,-0.061,-1.243,-4.508,-0.178,0.0,3.746,13.227,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.764,52.764,24.501,24.501,28.263,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.585,0.642,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.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,26.471,0.0,11.114,9.075,0.618,0.0,0.0,0.0,0.0,1523.4,2778.7,2778.7,24.266,17.103,0.0,3.475,3.599,0.506,7.397,0.622,9.985,-12.73,0.0,0.0,0.0,8.175,-0.054,4.795,0.0,0.726,0.0,5.975,-3.801,-2.512,0.0,0.077,-0.352,-0.036,3.014,0.003,-1.056,11.683,0.0,0.0,0.0,-5.809,-0.05,-1.065,-3.277,-0.149,0.0,2.59,3.707,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.393,26.393,25.555,25.555,0.838,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.514,0.416,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,0.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,0.774,0.0,6.873,9.374,0.586,0.0,0.0,0.0,0.0,1639.3,1973.1,1973.1,3.335,8.14,0.0,-0.013,3.831,0.0,0.0,0.417,4.069,-3.187,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.321,-0.937,0.0,-0.008,-2.725,0.0,0.0,-0.009,-0.663,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.386,-1.427,-0.267,0.0,0.0,6.655,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.037,63.037,35.464,35.464,27.573,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.977,0.737,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.573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.821,0.0,12.78,9.075,0.616,0.0,0.0,0.0,0.0,2119.3,3299.7,3299.7,23.266,18.251,0.0,3.479,3.709,0.541,7.362,0.776,10.707,-8.74,0.0,0.0,0.0,7.873,-0.057,4.786,0.0,0.724,0.0,5.785,-8.918,-2.502,0.0,0.007,-0.449,-0.052,2.823,-0.035,-1.285,10.323,0.0,0.0,0.0,-6.1,-0.051,-1.126,-3.67,-0.159,0.0,2.847,7.862,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.656,57.656,35.849,35.849,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.367,0.83,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.421,0.0,14.432,9.075,0.614,0.0,0.0,0.0,0.0,2121.0,3361.9,3361.9,23.012,18.812,0.0,3.561,3.646,0.513,7.537,0.631,10.1,-12.683,0.0,0.0,0.0,8.321,-0.061,4.424,0.0,0.73,0.0,4.745,-8.899,-2.498,0.0,-0.05,-0.46,-0.051,2.691,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.328,-0.057,-1.044,-3.311,-0.166,0.0,3.154,7.879,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,579.934,579.934,357.074,357.074,222.86,0.0,0.0,0.0,0.0,0.0,0.0,3.676,0.0,0.0,42.465,8.005,90.165,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.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,208.703,0.0,138.95,90.753,6.145,0.0,0.0,0.0,0.0,21193.7,33691.0,33691.0,230.319,188.957,0.0,35.569,36.455,5.13,75.326,6.309,101.016,-126.896,0.0,0.0,0.0,83.307,-0.629,48.074,0.0,7.296,0.0,48.37,-89.081,-24.996,0.0,-0.341,-4.455,-0.493,27.32,-0.217,-13.514,117.236,0.0,0.0,0.0,-62.592,-0.59,-11.461,-38.277,-1.63,0.0,30.818,78.703,20.1,13548.2,9976.1,111715.6,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,125.835,125.835,50.534,50.534,68.106,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.507,0.864,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.617,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.307,0.0,14.997,8.168,0.613,0.0,0.0,0.0,0.0,2729.6,4221.2,4221.2,22.733,19.515,0.0,3.581,3.658,0.515,7.578,0.633,10.137,-12.664,0.0,0.0,0.0,8.378,-0.064,4.863,0.0,0.658,0.0,4.508,-10.586,-2.246,0.0,-0.074,-0.478,-0.054,2.644,-0.03,-1.451,11.751,0.0,0.0,0.0,-6.398,-0.061,-1.185,-4.03,-0.151,0.0,3.26,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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.264,32.377,35.315,8.429,23.949,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,2.997,0.515,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.873,23.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,8.788,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2687.7,2687.7,18.031,11.724,0.0,3.532,3.792,0.503,5.85,0.614,8.194,-6.664,0.0,0.0,0.0,6.579,-0.044,5.368,0.0,0.0,0.0,3.765,-6.763,-2.508,0.0,0.119,-0.264,-0.034,2.449,0.002,-1.1,8.269,0.0,0.0,0.0,-5.62,-0.04,-1.205,-2.609,0.0,0.0,1.289,5.683,2.002,1354.8,997.6,11171.6,2563.5,21.851,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.186,33.299,37.9,11.014,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,2.193,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2301.3,3578.6,3578.6,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,4.489,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.728,32.841,37.442,10.556,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,1.735,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,5.702,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,58.819,31.932,36.533,9.647,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.826,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2176.0,3442.8,3442.8,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,14.472,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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.728,41.652,37.442,2.366,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,1.735,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2224.6,3483.1,3483.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,17.116,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,75.839,40.763,36.553,1.478,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,0.846,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2165.1,3431.9,3431.9,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,2.011,1354.8,997.6,11171.6,2563.5,85.93,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.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,74.993,39.917,35.707,0.632,30.786,8.5,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,-8.189,0.0,22.286,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.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.993,31.107,35.707,8.821,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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,-26.886,0.0,0.0,22.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.361,0.597,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.821,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2211.7,2211.7,25.495,15.471,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.152,-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.425,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,100.904,100.904,51.844,51.844,41.154,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2581.2,4359.9,4359.9,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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,79.85,79.85,49.418,49.418,22.526,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.437,0.848,3.886,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.932,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.602,0.0,14.891,3.562,0.613,0.0,0.0,0.0,0.0,2382.9,4091.7,4091.7,22.989,19.444,0.0,3.583,3.663,0.516,7.593,0.635,10.152,-12.663,0.0,0.0,0.0,8.408,-0.065,4.813,0.0,0.729,0.0,4.58,-10.198,-2.496,0.0,-0.074,-0.478,-0.054,2.648,-0.03,-1.448,11.75,0.0,0.0,0.0,-6.395,-0.062,-1.169,-3.986,-0.167,0.0,3.256,9.249,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.631,52.631,28.242,28.242,24.389,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.933,0.726,3.888,0.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.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.841,0.0,12.74,3.562,0.616,0.0,0.0,0.0,0.0,1659.2,3186.1,3186.1,23.634,18.192,0.0,3.531,3.633,0.511,7.496,0.629,10.079,-12.698,0.0,0.0,0.0,8.301,-0.064,4.803,0.0,0.727,0.0,5.255,-7.189,-2.504,0.0,0.003,-0.415,-0.045,2.827,-0.013,-1.246,11.715,0.0,0.0,0.0,-6.109,-0.06,-1.114,-3.587,-0.158,0.0,2.892,6.197,2.006,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,18787.0,5329.0,7037.0,0.0,207.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.618,49.367,39.765,19.513,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.492,0.0,0.0,2.249,0.328,6.919,0.0,0.326,4.51,0.0,0.334,1.139,0.0,0.0,1.12,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.402,29.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.943,0.0,5.465,18.165,0.646,0.0,11.901,0.0,0.0,3045.2,3175.2,3175.2,25.734,15.337,0.0,3.804,3.7,0.521,7.522,0.647,10.284,-12.779,0.0,0.0,0.0,8.377,-0.08,1.505,0.0,15.32,0.0,2.592,-11.205,-2.542,0.0,0.291,-0.124,-0.003,3.483,0.06,-0.36,11.634,0.0,0.0,0.0,-5.143,-0.076,-0.198,0.0,-3.513,-12.561,0.448,10.45,1.968,2592.1,2706.5,20695.4,5541.3,1.873,36000.0,24000.0,0.0,6.8,91.76,31095.0,4630.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7423.0,15511.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1665.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,59.371,59.371,35.954,35.954,23.417,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.421,0.836,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.529,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.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,21.928,0.0,14.458,9.053,0.639,0.0,0.0,0.333,1.0,9422.1,10694.0,10694.0,37.366,22.431,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.34,-0.062,5.307,0.0,0.78,0.0,5.114,-8.97,-2.51,0.0,-0.156,-0.472,-0.054,2.75,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.247,-0.058,-1.254,-3.683,-0.172,0.0,3.305,8.307,2.0,1354.7,998.0,11252.4,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.264,33.264,28.415,28.415,4.849,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.106,0.523,7.326,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.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,4.542,0.0,9.14,7.3,0.562,0.0,0.0,0.5,0.5,9397.2,10430.4,10430.4,41.543,22.03,0.0,2.613,2.46,0.344,4.288,0.335,6.49,-12.497,0.0,0.0,0.0,3.717,-0.101,3.385,0.0,0.384,0.0,1.014,-6.566,-1.596,0.0,-0.196,-0.552,-0.065,2.495,-0.053,-1.664,11.861,0.0,0.0,0.0,-7.407,-0.056,-1.323,-6.195,-0.206,0.0,2.188,8.45,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,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.184,42.184,34.117,34.117,8.067,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.117,0.526,9.053,0.0,0.0,4.51,0.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.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,7.554,0.0,9.185,9.053,0.672,0.0,0.0,0.0,0.5,9393.8,10433.4,10433.4,31.865,22.032,0.0,2.915,2.807,0.393,5.404,0.421,7.516,-12.492,0.0,0.0,0.0,5.535,-0.056,3.86,0.0,0.581,0.0,1.734,-8.86,-2.486,0.0,-0.199,-0.555,-0.065,2.499,-0.054,-1.674,11.861,0.0,0.0,0.0,-7.338,-0.055,-1.325,-6.213,-0.206,0.0,2.197,8.45,2.023,1354.7,998.0,11253.8,2582.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-10-mins.xml,58.778,58.778,35.864,35.864,22.914,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.337,0.821,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.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,21.455,0.0,14.236,8.987,0.616,0.0,0.0,0.0,0.0,6629.1,7147.0,9091.5,31.35,21.288,0.0,3.557,3.648,0.513,7.538,0.632,10.109,-12.685,0.0,0.0,0.0,8.331,-0.059,5.322,0.0,0.764,0.0,4.949,-8.988,-2.501,0.0,-0.034,-0.443,-0.049,2.737,-0.021,-1.344,11.729,0.0,0.0,0.0,-6.257,-0.055,-1.261,-3.82,-0.188,0.0,3.148,8.365,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.403,44.403,30.041,30.041,14.361,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.307,0.814,7.294,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.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,13.453,0.0,14.115,7.313,0.518,0.0,0.0,17.0,0.0,6231.1,5666.8,6231.1,36.507,19.751,0.0,3.074,3.069,0.431,5.718,0.489,8.384,-12.686,0.0,0.0,0.0,5.199,-0.154,4.373,0.0,0.513,0.0,3.022,-6.68,-1.621,0.0,-0.035,-0.443,-0.049,2.722,-0.021,-1.343,11.731,0.0,0.0,0.0,-6.358,-0.057,-1.247,-3.815,-0.184,0.0,3.124,8.281,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.444,57.444,30.631,30.631,26.814,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.325,0.819,7.369,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.814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.11,0.0,14.191,7.303,0.615,0.0,0.0,0.0,0.0,4487.7,5673.1,5673.1,30.776,19.807,0.0,3.504,3.621,0.51,7.455,0.626,10.04,-12.679,0.0,0.0,0.0,8.162,-0.063,5.305,0.0,0.513,0.0,5.701,-6.297,-1.615,0.0,-0.04,-0.448,-0.05,2.728,-0.022,-1.354,11.739,0.0,0.0,0.0,-6.274,-0.058,-1.25,-3.831,-0.184,0.0,3.137,8.287,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.712,58.712,35.823,35.823,22.89,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.326,0.819,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.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,21.434,0.0,14.193,9.071,0.615,0.0,0.0,0.0,0.0,4690.8,5673.3,5673.3,30.649,19.809,0.0,3.553,3.644,0.513,7.532,0.631,10.101,-12.674,0.0,0.0,0.0,8.322,-0.062,5.264,0.0,0.777,0.0,4.947,-8.954,-2.502,0.0,-0.04,-0.448,-0.05,2.729,-0.022,-1.354,11.739,0.0,0.0,0.0,-6.271,-0.058,-1.25,-3.831,-0.184,0.0,3.137,8.287,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,56.81,56.81,35.088,35.088,21.722,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.738,0.698,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,21.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,19.968,0.0,11.864,9.075,0.616,0.0,0.0,101.0,39.0,2155.4,3622.1,3622.1,34.947,20.795,0.0,3.517,3.579,0.503,7.526,0.608,9.826,-12.674,0.0,0.0,0.0,8.696,0.007,4.652,0.0,0.727,0.0,4.504,-8.859,-2.496,0.0,-0.046,-0.477,-0.054,2.68,-0.036,-1.514,11.74,0.0,0.0,0.0,-6.553,-0.003,-1.191,-4.268,-0.171,0.0,2.371,7.921,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.182,56.182,35.242,35.242,20.941,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.876,0.725,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.941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.521,0.0,12.472,9.075,0.617,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.321,0.0,3.507,3.561,0.5,7.358,0.604,9.775,-12.716,0.0,0.0,0.0,8.214,-0.022,4.638,0.0,0.724,0.0,4.392,-8.884,-2.501,0.0,-0.033,-0.475,-0.054,2.629,-0.035,-1.511,11.697,0.0,0.0,0.0,-6.537,-0.023,-1.176,-4.187,-0.174,0.0,2.531,7.897,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.141,41.141,33.839,33.839,7.302,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.911,0.484,9.048,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.832,0.0,8.482,9.075,0.648,0.0,0.0,0.0,0.0,2101.0,3099.8,3099.8,17.397,16.056,0.0,2.849,2.784,0.389,5.358,0.41,7.446,-12.563,0.0,0.0,0.0,5.534,-0.056,3.474,0.0,0.571,0.0,1.562,-8.807,-2.473,0.0,-0.074,-0.525,-0.06,2.493,-0.046,-1.622,11.85,0.0,0.0,0.0,-7.34,-0.056,-1.202,-6.392,-0.181,0.0,1.962,8.005,2.036,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-schedules-simple-power-outage.xml,54.784,54.784,32.353,32.353,22.431,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.324,0.592,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.431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.006,0.0,10.358,8.454,0.581,0.0,0.0,0.0,4.0,1984.0,5802.9,5802.9,23.066,22.779,0.0,3.554,3.642,0.513,7.525,0.63,10.09,-12.684,0.0,0.0,0.0,8.302,-0.061,4.76,0.0,0.795,0.0,4.864,-8.902,-2.367,0.0,-0.081,-0.521,-0.06,2.525,-0.041,-1.587,11.731,0.0,0.0,0.0,-6.557,-0.057,-1.213,-4.371,-0.171,0.0,2.256,6.937,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.05,57.05,30.42,30.42,26.631,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.273,0.807,7.367,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.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,24.939,0.0,14.006,7.302,0.615,0.0,0.0,0.0,0.0,1965.3,3390.8,3390.8,23.124,18.976,0.0,3.503,3.619,0.509,7.448,0.625,10.031,-12.688,0.0,0.0,0.0,8.155,-0.064,4.961,0.0,0.552,0.0,5.671,-6.163,-1.548,0.0,-0.038,-0.448,-0.05,2.726,-0.022,-1.357,11.729,0.0,0.0,0.0,-6.271,-0.059,-1.126,-3.834,-0.197,0.0,3.103,7.873,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.163,58.163,35.742,35.742,22.421,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.274,0.807,9.017,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.421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.997,0.0,14.009,9.075,0.615,0.0,0.0,0.0,0.0,1990.4,3389.0,3389.0,23.066,18.961,0.0,3.554,3.642,0.513,7.527,0.63,10.09,-12.684,0.0,0.0,0.0,8.314,-0.06,4.804,0.0,0.729,0.0,4.863,-8.902,-2.367,0.0,-0.038,-0.449,-0.05,2.726,-0.023,-1.363,11.729,0.0,0.0,0.0,-6.272,-0.057,-1.149,-3.838,-0.164,0.0,3.102,7.877,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,57.952,57.952,35.663,35.663,22.289,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.211,0.792,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.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,20.873,0.0,13.726,9.075,0.615,0.0,0.0,0.0,0.0,2119.6,3374.5,3374.5,23.032,18.865,0.0,3.556,3.645,0.513,7.532,0.631,10.1,-12.683,0.0,0.0,0.0,8.328,-0.063,4.807,0.0,0.729,0.0,4.838,-8.905,-2.499,0.0,-0.031,-0.444,-0.049,2.746,-0.021,-1.347,11.73,0.0,0.0,0.0,-6.254,-0.059,-1.146,-3.998,-0.163,0.0,3.047,7.874,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,57.994,57.994,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.871,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.645,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.327,-0.063,4.807,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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,57.966,57.966,35.693,35.693,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.235,0.798,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.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.858,0.0,13.843,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3291.9,3291.9,23.032,18.501,0.0,3.555,3.643,0.513,7.532,0.63,10.088,-12.683,0.0,0.0,0.0,8.324,-0.059,4.804,0.0,0.727,0.0,4.833,-8.9,-2.496,0.0,-0.035,-0.448,-0.05,2.728,-0.023,-1.364,11.73,0.0,0.0,0.0,-6.265,-0.055,-1.152,-3.843,-0.161,0.0,3.06,7.878,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,57.879,57.879,35.596,35.596,22.282,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.156,0.78,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.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,20.867,0.0,13.523,9.075,0.615,0.0,0.0,0.0,0.0,2110.3,3351.7,3351.7,22.973,18.809,0.0,3.625,3.641,0.512,7.529,0.628,10.072,-12.689,0.0,0.0,0.0,8.308,-0.053,4.803,0.0,0.728,0.0,4.831,-8.896,-2.498,0.0,-0.2,-0.443,-0.049,2.741,-0.022,-1.36,11.724,0.0,0.0,0.0,-6.254,-0.049,-1.153,-3.936,-0.162,0.0,2.927,7.883,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.381,59.381,35.948,35.948,23.433,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.42,0.836,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.529,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.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,21.943,0.0,14.451,9.074,0.617,0.0,0.0,0.333,1.0,8643.3,8925.5,9252.3,37.369,22.43,0.0,3.607,3.669,0.517,7.598,0.642,10.189,-12.602,0.0,0.0,0.0,8.341,-0.062,5.307,0.0,0.78,0.0,5.117,-8.959,-2.51,0.0,-0.156,-0.471,-0.054,2.751,-0.028,-1.382,11.752,0.0,0.0,0.0,-6.246,-0.058,-1.254,-3.681,-0.171,0.0,3.305,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.301,59.301,35.94,35.94,23.361,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.418,0.835,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.529,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.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,21.875,0.0,14.443,9.071,0.615,0.0,0.0,0.0,0.167,6063.1,7229.0,7229.0,35.1,21.78,0.0,3.607,3.668,0.517,7.596,0.642,10.186,-12.601,0.0,0.0,0.0,8.338,-0.061,5.254,0.0,0.771,0.0,5.106,-8.955,-2.502,0.0,-0.157,-0.472,-0.054,2.75,-0.028,-1.384,11.752,0.0,0.0,0.0,-6.249,-0.056,-1.24,-3.685,-0.184,0.0,3.302,8.285,2.008,1354.7,998.0,11168.7,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.601,58.601,35.823,35.823,22.777,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.337,0.816,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,22.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.329,0.0,14.137,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4903.2,4903.2,23.32,18.814,0.0,3.612,3.669,0.517,7.596,0.642,10.184,-12.61,0.0,0.0,0.0,8.347,-0.059,4.791,0.0,0.735,0.0,4.998,-8.905,-2.499,0.0,-0.151,-0.469,-0.053,2.755,-0.028,-1.381,11.744,0.0,0.0,0.0,-6.233,-0.055,-1.132,-3.674,-0.169,0.0,3.244,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.376,58.376,35.774,35.774,22.602,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.299,0.809,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.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.166,0.0,14.013,9.075,0.614,0.0,0.0,0.0,0.0,2132.2,3740.5,3740.5,23.223,18.82,0.0,3.593,3.661,0.516,7.567,0.639,10.167,-12.631,0.0,0.0,0.0,8.334,-0.061,4.793,0.0,0.733,0.0,4.936,-8.905,-2.498,0.0,-0.121,-0.465,-0.053,2.75,-0.026,-1.38,11.747,0.0,0.0,0.0,-6.244,-0.058,-1.137,-3.733,-0.167,0.0,3.157,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,57.993,57.993,35.707,35.707,22.286,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.247,0.8,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.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,20.87,0.0,13.895,9.075,0.615,0.0,0.0,0.0,0.0,2119.4,3369.1,3369.1,23.032,18.896,0.0,3.556,3.644,0.513,7.531,0.631,10.1,-12.683,0.0,0.0,0.0,8.326,-0.063,4.806,0.0,0.729,0.0,4.837,-8.905,-2.499,0.0,-0.035,-0.447,-0.049,2.731,-0.022,-1.353,11.73,0.0,0.0,0.0,-6.264,-0.059,-1.147,-3.828,-0.163,0.0,3.082,7.874,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.116,86.116,46.815,46.815,39.301,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.649,4.302,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.255,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.047,0.0,50.461,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.2,6551.2,37.693,42.27,0.495,2.0,7.304,0.422,0.0,0.983,7.167,-4.983,0.0,0.0,0.485,1.293,-0.284,4.307,0.0,5.164,0.0,3.188,-6.732,-2.918,0.562,1.985,3.714,0.306,0.0,0.234,1.592,11.482,0.0,0.0,0.521,6.825,-0.27,-0.41,-1.893,-0.751,0.0,10.689,11.618,4.463,2104.5,2144.0,14468.7,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.872,67.872,40.648,40.648,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.617,3.35,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.739,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.138,0.0,39.922,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.1,5237.1,23.852,29.589,0.0,2.552,5.064,0.0,0.0,0.846,5.728,-4.089,0.0,0.0,0.0,1.814,-0.159,1.581,0.0,3.794,0.0,1.353,-5.041,-2.476,0.0,3.071,2.787,0.0,0.0,0.413,0.378,8.65,0.0,0.0,0.0,8.439,-0.152,-0.184,-1.38,-0.646,0.0,5.87,8.961,3.906,1610.9,1574.7,9989.4,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.38,68.38,40.124,40.124,28.256,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.838,3.506,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.01,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.169,0.0,41.707,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5444.6,5444.6,26.254,34.635,0.653,2.805,4.678,0.0,0.0,0.98,6.253,-3.935,0.0,0.0,0.0,1.141,-0.181,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.789,3.025,2.586,0.0,0.0,0.642,1.062,9.843,0.0,0.0,0.0,6.502,-0.174,-0.223,-1.433,-0.65,0.0,6.514,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.311,136.311,75.785,75.785,60.526,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,29.582,9.335,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.377,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.887,0.0,109.161,8.985,3.512,0.0,0.0,0.0,101.0,3134.8,7528.2,7528.2,54.659,51.885,0.127,5.508,11.302,0.0,0.0,1.239,13.616,-5.791,0.0,0.0,0.0,3.101,-0.776,5.015,0.0,6.224,0.0,7.051,-7.184,-3.854,0.197,6.682,11.631,0.0,0.0,0.51,7.415,17.81,0.0,0.0,0.0,18.784,-0.763,1.041,-0.0,1.806,0.0,21.485,15.173,7.709,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,94.722,94.722,53.326,53.326,41.396,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.385,5.087,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.194,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.243,0.0,60.811,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.177,0.0,3.051,8.217,0.269,0.0,1.36,9.436,-6.696,0.0,0.0,0.398,1.318,-0.376,5.064,0.0,5.092,0.0,4.319,-6.822,-3.611,0.0,2.972,4.257,0.212,0.0,0.272,2.338,15.363,0.0,0.0,0.414,7.509,-0.359,-0.486,-2.37,-0.74,0.0,14.575,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,138.036,138.036,31.67,31.67,106.366,0.0,0.0,0.0,0.0,0.0,0.0,1.847,0.0,0.0,2.873,0.336,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,80.517,0.0,20.139,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,77.515,0.0,7.514,13.084,3.279,0.0,0.0,0.0,0.0,1983.7,2445.8,2445.8,40.336,14.906,0.0,4.263,22.269,1.99,37.145,1.863,17.627,-9.418,0.0,0.0,0.0,9.269,-0.329,8.591,0.0,4.368,0.0,0.0,-14.513,-6.429,0.0,0.176,-0.786,-0.044,2.868,-0.084,-0.532,4.358,0.0,0.0,0.0,-3.902,-0.328,-0.438,-1.566,-0.071,0.0,0.0,5.704,2.258,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.5,138.5,33.805,33.805,104.695,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.461,0.368,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.025,0.0,23.284,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.643,0.0,5.505,15.632,3.271,0.0,0.0,0.0,0.0,2191.9,2549.4,2549.4,39.657,13.483,0.0,4.727,23.697,4.449,10.125,1.499,18.833,-9.353,0.0,0.0,0.076,11.551,-0.37,6.119,0.0,20.828,0.0,2.861,-17.176,-7.736,0.0,0.209,-0.676,-0.049,0.583,-0.044,-0.299,4.596,0.0,0.0,-0.009,-3.997,-0.365,-0.186,-1.321,-1.869,0.0,0.103,6.367,2.562,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,181.679,181.679,39.095,39.095,142.585,0.0,0.0,0.0,0.0,0.0,0.0,2.451,0.0,0.0,3.562,0.519,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,109.146,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,102.846,0.0,10.107,18.129,3.215,0.0,0.0,0.0,0.0,2469.0,3392.1,3392.1,54.827,20.5,0.0,7.245,27.503,4.712,24.328,1.196,21.3,-7.8,0.0,0.0,1.291,17.853,-0.401,17.335,0.0,6.389,0.0,7.809,-18.6,-8.157,0.0,0.299,-1.123,-0.061,1.655,-0.088,-0.404,5.429,0.0,0.0,-0.108,-2.775,-0.401,-0.898,-1.768,-0.277,0.0,0.531,7.354,2.848,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.654,153.654,33.965,33.965,119.688,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.377,0.28,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.011,0.0,23.291,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.814,0.0,5.253,15.632,3.277,0.0,0.0,0.0,0.0,2226.3,2666.4,2666.4,44.142,14.378,0.0,5.112,28.424,4.32,13.051,2.253,18.888,-8.183,0.0,0.0,0.266,15.634,-0.399,8.745,0.0,21.441,0.0,0.0,-17.433,-7.835,0.0,0.249,-0.68,-0.028,0.733,-0.074,-0.173,4.596,0.0,0.0,-0.029,-4.105,-0.395,-0.254,-1.234,-1.787,0.0,0.0,6.089,2.436,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,152.218,152.218,37.463,37.463,114.756,0.0,0.0,0.0,0.0,0.0,0.0,1.826,0.0,0.0,2.854,0.262,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,81.317,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,76.626,0.0,7.2,18.129,3.215,0.0,0.0,0.0,0.0,2404.9,2846.0,2846.0,45.267,15.744,0.876,4.938,25.514,4.914,9.777,1.267,22.965,-9.158,0.0,0.0,0.93,11.367,-0.406,18.564,0.0,6.403,0.0,4.821,-18.604,-8.14,0.023,0.217,-0.756,-0.094,0.555,-0.074,-0.747,5.189,0.0,0.0,-0.049,-4.206,-0.403,-0.935,-1.655,-0.263,0.0,0.33,7.332,2.846,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,45.217,45.217,45.217,45.217,0.0,0.0,0.0,0.0,0.0,0.0,7.036,0.674,0.121,0.006,8.427,2.316,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.911,0.127,26.021,9.325,1.124,0.0,0.0,0.0,327.0,5018.6,3217.7,5018.6,18.277,15.962,0.0,2.684,5.468,0.0,0.0,1.635,3.46,-3.195,0.0,0.0,1.873,0.0,-0.387,1.843,0.0,5.407,0.0,4.207,-6.006,-2.08,0.0,1.649,1.241,0.0,0.0,0.147,0.295,5.653,0.0,0.0,0.733,0.0,-0.387,-0.2,-0.315,-1.019,0.0,6.653,8.877,2.825,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.803,35.803,35.803,35.803,0.0,0.0,0.0,0.0,0.0,0.0,4.73,0.25,0.0,0.0,5.875,1.487,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.971,0.0,16.321,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.21,0.0,2.376,4.763,0.0,0.0,0.628,2.683,-1.833,0.0,0.0,2.037,0.0,-0.252,1.65,0.0,4.361,0.0,0.323,-4.819,-1.944,0.0,1.718,1.086,0.0,0.0,-0.036,0.466,3.509,0.0,0.0,1.565,0.0,-0.251,-0.162,-0.281,-0.741,0.0,0.275,6.805,2.434,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.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.632,31.632,31.632,31.632,0.0,0.0,0.0,0.0,0.0,0.0,3.416,0.195,0.006,0.0,4.248,1.387,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.622,0.006,16.43,6.85,0.597,0.0,0.0,0.0,0.0,2984.8,2234.9,2984.8,11.108,10.497,0.0,1.703,3.702,0.0,0.0,0.585,3.034,-2.492,0.0,0.0,2.208,0.0,-0.242,1.94,0.0,1.119,0.0,1.451,-3.784,-1.631,0.0,1.135,0.554,0.0,0.0,-0.068,0.551,4.735,0.0,0.0,0.612,0.0,-0.242,-0.268,-0.384,-0.256,0.0,1.648,6.085,2.422,1364.1,1290.1,8207.3,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,1682.0,312.0,770.0,600.0 +house015.xml,30.64,30.64,30.64,30.64,0.0,0.0,0.0,0.0,0.0,0.0,2.891,0.16,0.0,0.0,3.878,1.267,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.209,0.0,14.899,6.85,0.853,0.0,0.0,0.0,0.0,2640.1,2148.6,2640.1,9.813,9.653,0.0,1.635,2.869,0.0,0.0,0.656,2.634,-2.149,0.0,0.0,2.096,0.0,-0.276,1.726,0.0,1.066,0.0,1.163,-3.703,-1.527,0.0,1.083,0.392,0.0,0.0,-0.089,0.227,3.78,0.0,0.0,0.547,0.0,-0.275,-0.274,-0.345,-0.274,0.0,1.441,6.338,2.438,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,9750.0,1052.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.136,61.136,39.63,39.63,0.0,0.0,21.506,0.0,0.0,0.0,7.619,0.555,0.187,0.004,2.854,0.93,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.318,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.712,0.191,11.025,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3520.6,7549.9,43.059,18.675,0.0,4.42,10.83,0.617,5.691,0.298,7.708,-7.897,0.0,0.0,0.0,6.759,-0.021,5.727,0.0,3.865,0.0,0.0,-8.639,-4.771,0.0,-0.308,-0.75,-0.015,2.995,-0.044,-0.958,11.998,0.0,0.0,0.0,-8.643,-0.023,-1.318,-2.077,-0.984,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.688,91.688,27.773,27.773,63.915,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.4,0.594,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.803,0.0,18.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,41.964,0.0,9.725,11.141,3.425,0.0,0.0,151.0,94.0,1729.6,3570.0,3570.0,60.335,19.525,0.0,5.431,14.637,0.652,10.66,0.362,7.454,-9.321,0.0,0.0,0.719,4.37,0.008,19.78,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.106,-0.864,-0.015,4.795,-0.058,-1.113,7.472,0.0,0.0,-0.002,-4.724,0.009,-2.647,-1.647,-0.25,0.0,0.0,7.229,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,35.934,35.934,35.934,35.934,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.209,0.0,0.0,2.471,0.743,7.875,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.691,0.0,9.098,7.32,0.553,0.0,0.0,0.0,0.0,4617.7,2659.0,4617.7,19.992,10.862,0.0,4.566,4.624,0.0,0.0,0.276,3.697,-3.619,0.0,0.0,2.169,0.0,-0.02,2.615,0.0,2.09,0.0,1.848,-7.06,-2.597,0.0,-0.485,-0.765,0.0,0.0,-0.093,-1.304,4.336,0.0,0.0,0.02,0.0,-0.015,-0.746,-1.171,-0.721,0.0,1.219,6.864,2.164,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.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,2608.0,1096.0,712.0,800.0 +house019.xml,130.259,130.259,51.668,51.668,78.591,0.0,0.0,0.0,0.0,0.0,0.0,1.131,0.0,0.0,11.151,3.607,9.726,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.816,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.7,0.0,43.304,7.894,1.826,0.0,0.0,193.0,266.0,2783.7,6251.1,6636.8,84.769,45.696,0.0,11.388,44.785,0.65,5.02,1.921,16.412,-14.196,0.0,0.0,0.0,5.959,-0.039,8.896,0.0,1.87,0.0,0.0,-10.31,-5.205,0.0,2.991,10.178,0.15,2.871,0.274,1.618,17.036,0.0,0.0,0.0,-4.227,-0.027,-0.15,-0.558,0.025,0.0,0.0,8.085,3.718,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,116.949,116.949,56.177,56.177,0.0,0.0,60.771,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.779,2.675,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.623,0.0,18.918,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.577,0.0,32.258,10.477,4.229,0.0,0.0,0.0,0.0,2703.5,6612.3,6612.3,31.214,31.937,0.908,11.001,10.555,1.131,9.76,0.631,15.142,-15.17,0.0,0.0,0.0,7.487,-0.04,15.235,0.0,0.837,0.0,0.0,-15.243,-7.022,0.249,0.223,0.285,0.064,6.486,0.018,-2.386,20.699,0.0,0.0,0.0,-6.534,-0.031,-2.604,-3.113,-0.191,0.0,0.0,13.513,5.728,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,3130.0,0.0,2330.0,800.0 +house021.xml,156.827,156.827,48.017,48.017,108.81,0.0,0.0,0.0,0.0,0.0,0.0,2.009,0.0,0.0,8.045,1.414,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.762,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,73.809,0.0,17.417,10.989,3.82,0.0,0.0,0.0,0.0,2797.4,4687.2,4687.2,81.276,23.075,0.0,8.268,27.054,2.421,9.179,0.859,21.829,-20.284,0.0,0.0,1.093,9.434,-0.33,26.657,0.0,2.493,0.0,6.101,-14.708,-6.872,0.0,0.063,-0.693,0.021,2.257,-0.088,-2.169,14.69,0.0,0.0,0.043,-5.982,-0.306,-2.336,-1.378,-0.378,0.0,1.202,8.843,3.768,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.942,137.942,48.641,48.641,0.0,89.301,0.0,0.0,0.0,0.0,0.0,2.221,0.0,0.0,8.642,0.872,12.472,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.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,73.302,0.0,18.701,10.989,1.482,0.0,0.0,184.0,120.0,2976.2,5355.4,5441.2,90.789,27.294,3.683,3.758,20.619,0.0,0.0,1.487,16.607,-13.137,0.0,0.0,14.695,0.0,-0.264,37.703,0.0,1.156,0.0,0.0,-9.561,-4.29,1.118,0.18,0.677,0.0,0.0,-0.116,-1.377,11.45,0.0,0.0,2.123,0.0,-0.255,-2.589,-1.167,-0.068,0.0,0.0,6.159,2.4,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,138.13,138.13,62.979,62.979,0.0,75.152,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.805,0.745,19.998,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.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,62.742,0.0,15.9,17.1,2.77,0.0,0.0,0.0,0.0,4239.1,4671.5,4833.4,62.489,20.562,0.0,10.21,21.491,1.201,16.448,0.85,9.987,-7.812,0.0,0.0,0.0,6.18,-0.035,23.704,0.0,1.638,0.0,0.0,-15.576,-5.907,0.0,-0.166,-0.965,-0.011,6.021,-0.112,-1.017,9.141,0.0,0.0,0.0,-5.972,-0.012,-2.63,-1.377,-0.31,0.0,0.0,10.082,3.312,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.27,129.27,43.791,43.791,0.0,85.479,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.314,0.475,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.479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.47,0.0,15.506,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3558.1,3601.4,72.07,17.437,0.0,7.18,30.082,0.0,0.0,0.682,7.228,-7.897,0.0,0.0,5.182,0.0,-0.107,25.401,0.0,1.837,0.0,11.769,-8.641,-2.539,0.0,0.598,1.303,0.0,0.0,-0.039,-0.282,6.002,0.0,0.0,0.551,0.0,-0.1,-1.421,-0.661,-0.192,0.0,2.906,5.522,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 +house025.xml,104.509,104.509,69.445,69.445,35.064,0.0,0.0,0.0,0.0,0.0,6.62,1.061,0.0,0.0,18.783,2.595,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.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.865,0.0,47.472,8.321,3.831,0.0,0.0,0.0,0.0,4332.1,6893.6,6893.6,36.405,32.763,0.0,3.377,17.56,0.0,0.0,2.166,7.4,-5.641,0.0,0.0,6.83,0.0,-1.329,13.727,0.002,0.41,0.0,4.939,-8.618,-4.034,0.0,1.091,5.689,0.0,0.0,0.439,1.939,12.468,0.0,0.0,5.648,0.0,-1.327,-0.733,-0.281,-0.005,0.0,6.087,11.494,5.23,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54383.0,20091.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32216.0,8770.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.758,56.758,24.856,24.856,31.902,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.759,0.0,14.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,0.0,0.0,13.608,0.0,0.0,8.607,2.08,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.399,0.0,0.0,1.774,6.879,0.233,0.0,0.198,4.41,-2.924,0.0,0.0,7.138,0.0,-0.049,2.499,0.0,3.14,0.0,0.0,-6.704,-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,8577.5,3022.8,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.498,72.498,31.594,31.594,40.904,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.771,0.981,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.947,0.0,17.888,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.79,0.0,22.894,8.564,5.237,0.0,0.0,0.0,0.0,1579.5,3647.3,3647.3,24.054,23.224,0.72,1.786,7.921,0.455,0.0,0.593,4.985,-3.985,0.0,0.0,0.383,3.362,-0.138,1.753,0.0,10.452,0.0,2.034,-8.798,-2.848,0.496,1.144,0.735,0.061,0.0,-0.108,0.183,5.426,0.0,0.0,0.099,3.913,-0.138,-0.35,-1.646,-3.393,0.0,2.558,10.724,3.099,1610.9,1574.7,10579.6,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.788,67.788,29.818,29.818,37.97,0.0,0.0,0.0,0.0,0.0,0.0,0.295,0.0,0.0,7.26,1.463,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.461,0.0,18.123,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.681,0.0,23.029,10.226,3.622,0.0,0.0,0.0,0.0,1527.5,3496.5,3496.5,20.253,23.026,0.771,1.667,7.19,0.358,0.0,0.442,4.976,-3.806,0.0,0.0,0.246,2.535,-0.043,4.068,0.0,4.486,0.0,1.625,-9.075,-2.9,0.614,1.242,-0.428,0.109,0.0,0.065,0.123,6.21,0.0,0.0,0.067,1.925,-0.044,-1.041,-2.09,-1.607,0.0,3.06,11.533,3.237,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.449,77.449,29.895,29.895,47.554,0.0,0.0,0.0,0.0,0.0,0.0,0.703,0.0,0.0,6.08,0.815,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.889,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.621,0.0,13.086,9.614,0.0,0.0,0.0,0.0,0.0,1614.8,3028.4,3028.4,28.366,13.886,0.0,3.366,14.616,0.393,0.0,0.296,6.291,-6.012,0.0,0.0,6.91,0.0,-0.086,7.305,0.0,7.311,0.0,3.183,-8.39,-3.716,0.0,1.154,-0.609,0.013,0.0,0.071,0.519,5.271,0.0,0.0,-0.314,0.0,-0.081,-0.764,-1.833,-1.48,0.0,1.213,7.154,2.827,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29357.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-172.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.737,58.737,17.191,17.191,0.0,0.0,41.546,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.2,0.0,13.31,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.504,0.0,0.0,7.715,2.222,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.963,0.0,0.0,1.675,10.165,0.486,1.101,1.039,5.186,-3.328,0.0,0.0,0.0,3.454,-0.042,2.727,0.0,5.697,0.0,0.0,-7.838,-2.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8,992.6,6762.5,2580.5,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.502,233.502,50.191,50.191,183.311,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,12.809,3.283,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.819,0.0,29.096,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.927,0.0,39.41,17.932,5.235,0.0,0.0,48.0,113.0,3052.5,7439.8,7661.8,125.503,49.21,0.0,14.458,42.009,1.049,6.638,1.393,20.053,-16.712,0.0,0.0,1.979,6.05,-0.849,56.909,0.001,0.654,0.0,9.748,-17.12,-6.505,0.0,2.256,5.151,0.175,2.825,0.115,0.474,16.998,0.0,0.0,0.225,-3.614,-0.817,-1.895,-0.853,-0.01,0.0,3.035,11.055,3.855,2593.2,2707.5,18308.0,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.523,101.523,15.551,15.551,85.971,0.0,0.0,0.0,0.0,0.0,0.0,1.51,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.737,0.0,16.258,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.787,0.0,0.0,8.002,4.945,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.401,8.754,1.92,20.409,1.411,8.354,-9.322,0.0,0.0,0.0,4.534,0.021,14.967,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.209,107.209,14.692,14.692,0.0,92.516,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.835,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.924,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.445,0.0,0.0,19.13,14.565,0.0,0.0,1.0,11.116,-7.523,0.0,0.0,14.655,0.0,-0.361,18.589,0.0,0.793,0.0,0.0,-5.009,-3.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,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.803,153.803,43.213,43.213,0.0,0.0,110.59,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.215,0.0,21.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,63.099,0.0,0.0,11.573,5.446,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.132,0.0,0.0,8.87,26.936,0.0,2.858,1.898,26.623,-26.223,0.0,0.0,10.923,2.708,0.067,34.745,0.0,0.571,0.0,0.0,-16.2,-10.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,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.681,63.681,17.409,17.409,46.272,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,1.637,0.105,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.795,0.0,9.642,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.929,0.0,2.429,3.92,3.834,0.0,0.0,102.0,0.0,1326.9,1886.7,1886.7,39.297,9.628,0.366,6.128,10.82,0.0,0.0,0.536,6.09,-7.321,0.0,0.0,7.755,0.0,0.004,13.597,0.0,0.489,0.0,0.0,-7.872,-3.466,0.065,-0.497,-1.434,0.0,0.0,-0.076,-1.356,7.072,0.0,0.0,-4.246,0.0,0.009,-2.609,-1.194,-0.124,0.0,0.0,4.967,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.685,25.685,56.792,0.0,0.0,0.0,0.0,0.0,0.0,0.977,0.0,0.0,5.667,0.945,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.31,0.0,17.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,32.309,0.0,13.768,8.219,5.847,0.0,0.0,106.0,124.0,1462.3,3200.5,3200.5,31.832,16.858,5.507,2.254,3.969,0.0,0.0,1.823,6.798,-7.197,0.0,0.0,21.064,0.0,-0.007,7.4,0.0,0.554,0.0,0.0,-6.44,-3.438,1.631,0.145,0.013,0.0,0.0,-0.205,-0.848,5.704,0.0,0.0,2.604,0.0,-0.006,-0.71,-0.959,-0.057,0.0,0.0,4.339,2.011,1341.9,1264.5,6447.1,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.497,88.497,21.781,21.781,0.0,66.716,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.559,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.514,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.691,0.0,0.0,16.718,11.321,0.0,0.0,1.563,7.657,-10.342,0.0,0.0,6.546,0.0,-0.342,14.704,0.0,0.461,0.0,0.0,-6.837,-3.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.312,125.312,51.035,51.035,74.277,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.663,2.592,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.246,0.0,24.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,40.194,0.0,30.749,14.715,4.601,0.0,0.0,0.0,214.0,2455.6,5668.8,5727.5,48.331,27.398,0.0,3.653,14.884,0.651,4.463,0.81,12.433,-10.431,0.0,0.0,1.862,2.347,-0.047,22.487,0.002,0.595,0.0,0.0,-10.149,-3.873,0.0,0.847,2.607,0.141,2.251,0.018,0.927,12.753,0.0,0.0,0.337,-0.578,-0.035,-0.567,-0.343,0.005,0.0,0.0,8.627,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.915,99.915,24.039,24.039,75.876,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.147,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.189,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.915,0.0,0.0,14.272,1.137,0.0,0.0,0.0,0.0,1709.3,1463.6,1709.3,50.061,0.0,0.0,14.206,5.385,0.0,0.0,2.508,16.121,-13.538,0.0,0.0,14.028,0.0,-0.041,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.0,5211.5,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.645,101.645,23.521,23.521,78.124,0.0,0.0,0.0,0.0,0.0,0.0,1.305,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.742,0.0,17.382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.224,0.0,0.0,8.002,5.526,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.269,5.618,22.289,0.0,4.298,2.095,12.884,-12.513,0.0,0.0,2.035,3.393,-0.099,19.744,0.0,0.612,0.0,0.0,-10.092,-4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,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.853,258.853,46.954,46.954,211.899,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,0.0,2.431,0.221,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.338,0.0,26.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,174.638,0.0,4.152,15.632,5.047,0.0,0.0,105.0,0.0,3249.4,4659.5,4659.5,77.757,23.971,0.0,11.261,45.043,3.517,35.049,3.141,38.859,-20.805,0.0,0.0,4.609,17.388,-0.559,64.109,0.0,2.766,0.0,0.0,-20.305,-11.003,0.0,0.152,-2.003,-0.113,1.763,-0.21,-2.723,9.423,0.0,0.0,-0.339,-5.153,-0.557,-3.301,-1.909,-0.247,0.0,0.0,6.547,2.94,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.113,231.113,39.974,39.974,191.139,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.695,0.059,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.693,0.0,24.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,163.898,0.0,2.43,15.632,3.233,0.0,0.0,0.0,0.0,2758.4,3129.4,3129.4,88.149,18.993,0.0,9.173,39.851,4.013,43.724,2.65,34.226,-19.417,0.0,0.0,2.449,14.541,-0.353,56.288,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.234,-1.359,-0.05,2.949,-0.141,-2.88,5.799,0.0,0.0,-0.257,-4.864,-0.349,-2.683,-1.152,-0.137,0.0,0.0,5.47,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.415,158.415,29.874,29.874,128.541,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.863,0.096,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.634,0.0,19.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.475,0.0,2.502,13.084,2.212,0.0,0.0,0.0,0.0,1987.9,2776.6,2776.6,54.557,13.333,0.0,3.168,23.192,2.294,33.785,5.576,22.939,-10.01,0.0,0.0,0.549,9.933,-0.294,28.975,0.0,1.578,0.0,0.0,-14.405,-5.173,0.0,0.05,-0.758,-0.084,1.794,-0.334,-1.957,4.656,0.0,0.0,-0.067,-3.531,-0.293,-1.516,-1.039,-0.139,0.0,0.0,4.422,1.388,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.59,226.59,43.407,43.407,183.183,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,1.999,0.167,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.608,0.0,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.221,0.0,3.225,13.084,4.459,0.0,0.0,0.0,0.0,3093.0,3635.3,3635.3,80.998,18.664,4.37,6.899,36.503,9.234,19.262,2.757,18.187,-11.68,0.0,0.0,12.916,15.091,-0.489,61.981,0.0,1.436,0.0,0.0,-18.085,-10.282,0.257,0.47,-1.293,-0.091,1.238,-0.112,-0.738,5.621,0.0,0.0,-1.102,-4.765,-0.486,-2.584,-0.942,-0.097,0.0,0.0,5.245,2.672,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.253,152.253,35.023,35.023,117.23,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.235,0.254,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.766,0.0,22.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,3.509,13.084,4.372,0.0,0.0,0.0,0.0,2316.2,3032.1,3032.1,47.197,12.913,3.572,3.08,15.119,2.29,32.755,1.135,18.522,-12.224,1.044,-0.408,0.086,12.636,-0.246,20.645,0.0,10.934,0.0,0.0,-14.644,-7.017,0.003,0.019,-1.02,-0.114,1.097,-0.081,-1.351,6.243,-0.064,0.396,-0.012,-3.964,-0.245,-1.121,-1.85,-1.217,0.0,0.0,4.85,2.048,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,24.996,24.996,24.996,24.996,0.0,0.0,0.0,0.0,0.0,0.0,5.301,0.452,0.303,0.011,3.749,1.006,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.848,0.314,12.82,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.521,3.838,0.0,0.0,0.327,2.234,-1.649,0.0,0.0,-0.155,0.0,-0.302,7.966,0.0,0.378,0.0,2.782,-3.568,-0.482,0.0,1.272,2.536,0.0,0.0,0.024,0.778,2.451,0.0,0.0,-0.154,0.0,-0.301,-0.456,-0.233,0.019,0.0,1.784,4.603,0.548,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.667,20.667,14.38,14.38,6.287,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.505,0.001,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.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,6.111,0.0,1.505,4.203,0.0,0.0,0.0,0.0,0.0,873.4,944.4,944.4,4.758,2.576,0.0,-0.001,0.775,0.127,0.0,0.0,1.725,-0.559,0.0,0.0,0.0,1.381,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.106,0.033,0.0,0.0,-0.055,0.798,0.0,0.0,0.0,-1.094,-0.01,-0.223,-0.378,-1.355,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.199,91.199,39.596,39.596,51.604,0.0,0.0,0.0,0.0,0.0,0.0,0.343,0.0,0.0,12.758,3.743,0.0,0.0,0.0,3.691,0.085,0.498,3.027,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.667,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.87,0.0,52.14,7.253,2.657,0.0,0.0,0.0,0.0,1535.1,5475.6,5475.6,42.042,33.926,1.023,2.632,12.008,0.0,0.0,0.804,4.614,-2.524,0.0,0.0,0.056,2.011,-0.562,6.928,0.0,4.194,0.0,6.425,-7.347,-1.496,1.32,0.991,9.263,0.0,0.0,0.563,3.672,4.27,0.0,0.0,0.075,10.062,-0.55,0.545,-0.64,1.938,0.0,7.016,11.643,2.195,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,35.247,35.247,31.75,31.75,3.497,0.0,0.0,0.0,0.0,0.0,7.568,0.046,0.0,0.0,7.285,0.19,2.63,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.745,0.0,30.546,4.262,1.318,0.0,0.0,0.0,110.0,4630.6,2820.9,4630.6,13.099,15.914,0.0,1.364,4.348,0.0,0.0,0.0,4.223,-5.784,0.0,0.0,0.0,1.262,-0.079,2.475,0.0,1.842,0.0,0.0,-2.535,-0.461,0.0,1.679,7.191,0.0,0.0,0.0,2.931,9.884,0.0,0.0,0.0,3.484,-0.079,-0.123,-3.016,0.687,0.0,0.0,7.435,1.013,728.6,567.4,7487.3,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.162,51.162,21.863,21.863,29.299,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,1.93,0.329,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.383,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.026,0.0,5.214,8.572,0.0,0.0,0.0,0.0,0.0,1155.8,2801.9,2801.9,10.86,17.162,0.0,4.162,6.55,0.0,0.0,2.038,5.185,-4.132,0.0,0.0,4.908,0.0,-0.168,2.259,0.0,3.686,0.0,1.843,-10.183,-1.22,0.0,-0.26,-0.247,0.0,0.0,-0.375,0.337,4.104,0.0,0.0,-0.948,0.0,-0.167,-0.447,-2.518,-0.726,0.0,0.592,5.352,0.562,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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index 554f74b58..c5d72a09e 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -1,141 +1,141 @@ 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-lighting-ceiling-fans.xml,1858.87,144.0,1320.81,0.0,1464.81,144.0,250.06,394.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-lighting-holiday.xml,1851.82,144.0,1313.55,0.0,1457.55,144.0,250.27,394.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-kwh-per-year.xml,1956.2,144.0,1438.19,0.0,1582.19,144.0,230.01,374.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-lighting-mixed.xml,1851.11,144.0,1312.84,0.0,1456.84,144.0,250.27,394.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-ceiling-fans.xml,1698.36,144.0,1130.67,0.0,1274.67,144.0,279.69,423.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-lighting-none.xml,1684.02,144.0,1116.12,0.0,1260.12,144.0,279.9,423.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.92,144.0,1268.89,0.0,1412.89,144.0,355.03,499.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1585.25,144.0,1154.52,0.0,1298.52,144.0,142.73,286.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-lighting-ceiling-fans.xml,1848.5,144.0,1324.62,0.0,1468.62,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-lighting-holiday.xml,1841.87,144.0,1317.79,0.0,1461.79,144.0,236.08,380.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-kwh-per-year.xml,1946.45,144.0,1442.39,0.0,1586.39,144.0,216.06,360.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-lighting-mixed.xml,1841.07,144.0,1316.99,0.0,1460.99,144.0,236.08,380.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-ceiling-fans.xml,1687.74,144.0,1134.53,0.0,1278.53,144.0,265.21,409.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-lighting-none.xml,1673.75,144.0,1120.32,0.0,1264.32,144.0,265.43,409.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-location-AMY-2012.xml,1902.36,144.0,1273.43,0.0,1417.43,144.0,340.93,484.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-location-baltimore-md.xml,1582.78,144.0,1162.64,0.0,1306.64,144.0,132.14,276.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-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,1490.59,144.0,1181.71,0.0,1325.71,144.0,20.88,164.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-location-duluth-mn.xml,1673.35,144.0,1068.11,0.0,1212.11,144.0,317.24,461.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-location-helena-mt.xml,1676.85,144.0,1023.99,0.0,1167.99,144.0,364.86,508.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-honolulu-hi.xml,4393.18,144.0,4249.18,0.0,4393.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-location-miami-fl.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-location-phoenix-az.xml,1624.67,144.0,1336.63,0.0,1480.63,144.0,0.04,144.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-portland-or.xml,1205.85,144.0,811.41,0.0,955.41,144.0,106.44,250.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-balanced.xml,2120.75,144.0,1375.12,0.0,1519.12,144.0,457.63,601.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-mechvent-bath-kitchen-fans.xml,1866.04,144.0,1309.87,0.0,1453.87,144.0,268.17,412.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-cfis-airflow-fraction-zero.xml,2047.52,144.0,1371.23,0.0,1515.23,144.0,388.29,532.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-dallas-tx.xml,1496.04,144.0,1190.19,0.0,1334.19,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,1698.16,144.0,1101.71,0.0,1245.71,144.0,308.45,452.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-location-helena-mt.xml,1668.2,144.0,1027.56,0.0,1171.56,144.0,352.64,496.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-honolulu-hi.xml,4433.11,144.0,4289.11,0.0,4433.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-location-miami-fl.xml,1452.56,144.0,1308.56,0.0,1452.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-location-phoenix-az.xml,1633.82,144.0,1345.81,0.0,1489.81,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,1202.56,144.0,817.34,0.0,961.34,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,2101.48,144.0,1379.02,0.0,1523.02,144.0,434.46,578.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-bath-kitchen-fans.xml,1855.96,144.0,1314.04,0.0,1458.04,144.0,253.92,397.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-cfis-airflow-fraction-zero.xml,2038.46,144.0,1376.25,0.0,1520.25,144.0,374.21,518.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,1378.03,144.0,1234.03,0.0,1378.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-mechvent-cfis-supplemental-fan-exhaust.xml,1983.32,144.0,1321.75,0.0,1465.75,144.0,373.57,517.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-cfis-supplemental-fan-supply.xml,2006.07,144.0,1322.95,0.0,1466.95,144.0,395.12,539.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-cfis.xml,2058.15,144.0,1369.08,0.0,1513.08,144.0,401.07,545.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-mechvent-erv-atre-asre.xml,1966.05,144.0,1375.15,0.0,1519.15,144.0,302.9,446.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1966.08,144.0,1375.15,0.0,1519.15,144.0,302.93,446.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-exhaust-rated-flow-rate.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-exhaust.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-hrv-asre.xml,1966.15,144.0,1375.27,0.0,1519.27,144.0,302.88,446.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.xml,1966.18,144.0,1375.27,0.0,1519.27,144.0,302.91,446.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-multiple.xml,2145.1,144.0,1390.1,0.0,1534.1,144.0,467.0,611.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2019.84,144.0,1340.56,0.0,1484.56,144.0,391.28,535.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-mechvent-whole-house-fan.xml,1785.03,144.0,1244.85,0.0,1388.85,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-misc-additional-properties.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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,688.61,108.0,778.02,-591.68,294.34,144.0,250.27,394.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,684.21,108.0,742.14,-560.2,289.94,144.0,250.27,394.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,648.23,108.0,701.17,-555.2,253.96,144.0,250.27,394.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 -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,857.85,144.0,1306.32,-986.74,463.58,144.0,250.27,394.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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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 -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,634.61,465.0,1251.79,-1474.07,242.73,132.0,259.88,391.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,94.8,465.0,1251.79,-2013.87,-297.08,132.0,259.88,391.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,-328.02,210.0,1251.79,-2181.7,-719.9,132.0,259.88,391.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-misc-bills.xml,1799.67,144.0,1251.79,0.0,1395.79,144.0,259.88,403.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.3,144.0,1145.2,-710.1,579.1,144.0,350.2,494.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-misc-emissions.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-misc-generators-battery-scheduled.xml,2294.79,144.0,1369.2,0.0,1513.2,144.0,340.31,484.31,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,2231.91,144.0,1306.32,0.0,1450.32,144.0,340.31,484.31,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,2231.91,144.0,1306.32,0.0,1450.32,144.0,340.31,484.31,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,1817.88,144.0,1303.42,0.0,1447.42,144.0,226.46,370.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-misc-loads-large-uncommon.xml,3688.73,144.0,2505.17,0.0,2649.17,144.0,745.2,889.2,0.0,0.0,0.0,0.0,67.86,67.86,0.0,82.5,82.5,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon2.xml,3048.74,144.0,2374.91,0.0,2518.91,144.0,215.89,359.89,0.0,87.44,87.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.5,82.5,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-none.xml,1486.26,144.0,889.87,0.0,1033.87,144.0,308.39,452.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-misc-neighbor-shading-bldgtype-multifamily.xml,1231.11,144.0,931.1,0.0,1075.1,144.0,12.01,156.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-misc-neighbor-shading.xml,1891.93,144.0,1297.28,0.0,1441.28,144.0,306.65,450.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-misc-shielding-of-home.xml,1844.58,144.0,1311.44,0.0,1455.44,144.0,245.14,389.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-unit-multiplier.xml,18446.0,1440.0,13063.21,0.0,14503.21,1440.0,2502.79,3942.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,3010.82,144.0,1851.53,0.0,1995.53,144.0,735.97,879.97,0.0,0.0,0.0,0.0,61.07,61.07,0.0,74.25,74.25,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-ah.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-garage.xml,847.61,144.0,1279.4,-986.61,436.79,144.0,266.82,410.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-pv-battery-round-trip-efficiency.xml,939.57,144.0,1387.92,-986.62,545.3,144.0,250.27,394.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-scheduled.xml,921.51,144.0,1369.2,-985.96,527.24,144.0,250.27,394.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.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-generators-battery-scheduled.xml,1008.28,144.0,1369.2,-1286.5,226.69,144.0,340.31,484.31,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,976.69,144.0,1338.26,-1287.16,195.1,144.0,340.31,484.31,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,944.62,144.0,1306.32,-1287.29,163.03,144.0,340.31,484.31,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,857.85,144.0,1306.32,-986.74,463.58,144.0,250.27,394.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-residents-0-runperiod-1-month.xml,128.27,12.0,15.92,0.0,27.92,12.0,88.35,100.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-residents-0.xml,911.7,144.0,261.99,0.0,405.99,144.0,361.71,505.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-residents-1-misc-loads-large-uncommon.xml,2780.65,144.0,1895.15,0.0,2039.15,144.0,447.15,591.15,0.0,0.0,0.0,0.0,70.84,70.84,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2514.72,144.0,1806.12,0.0,1950.12,144.0,249.82,393.82,0.0,91.27,91.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.51,79.51,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1589.94,144.0,1034.43,0.0,1178.43,144.0,267.51,411.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-residents-5.xml,1327.14,144.0,1451.58,-743.14,852.44,144.0,330.7,474.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-all-10-mins.xml,1850.71,144.0,1313.75,0.0,1457.75,144.0,248.96,392.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-mixed-timesteps-power-outage.xml,1374.81,144.0,1034.66,0.0,1178.66,144.0,52.15,196.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-schedules-detailed-mixed-timesteps.xml,1617.13,144.0,1242.5,0.0,1386.5,144.0,86.63,230.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-10-mins.xml,1842.11,144.0,1310.49,0.0,1454.49,144.0,243.62,387.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-occupancy-stochastic-power-outage.xml,1537.72,144.0,1096.51,0.0,1240.51,144.0,153.21,297.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-detailed-occupancy-stochastic-vacancy.xml,1691.46,144.0,1118.46,0.0,1262.46,144.0,285.0,429.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1840.3,144.0,1308.92,0.0,1452.92,144.0,243.38,387.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-schedules-detailed-setpoints-daily-schedules.xml,1814.29,144.0,1283.45,0.0,1427.45,144.0,242.84,386.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,1812.85,144.0,1289.17,0.0,1433.17,144.0,235.68,379.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-schedules-detailed-setpoints.xml,1609.98,144.0,1234.04,0.0,1378.04,144.0,87.94,231.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-power-outage.xml,1717.23,144.0,1186.88,0.0,1330.88,144.0,242.35,386.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-schedules-simple-vacancy.xml,1704.8,144.0,1133.44,0.0,1277.44,144.0,283.36,427.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-schedules-simple.xml,1846.27,144.0,1316.03,0.0,1460.03,144.0,242.24,386.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-simcontrol-calendar-year-custom.xml,1843.03,144.0,1304.74,0.0,1448.74,144.0,250.29,394.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-simcontrol-daylight-saving-custom.xml,1844.6,144.0,1306.32,0.0,1450.32,144.0,250.28,394.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-simcontrol-daylight-saving-disabled.xml,1843.85,144.0,1305.68,0.0,1449.68,144.0,250.17,394.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,220.92,12.01,106.79,0.0,118.8,12.01,90.11,102.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-simcontrol-temperature-capacitance-multiplier.xml,1840.48,144.0,1302.22,0.0,1446.22,144.0,250.26,394.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-occupancy-stochastic-10-mins.xml,1850.67,144.0,1313.54,0.0,1457.54,144.0,249.13,393.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-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1849.63,144.0,1313.25,0.0,1457.25,144.0,248.38,392.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-simcontrol-timestep-10-mins.xml,1854.12,144.0,1310.61,0.0,1454.61,144.0,255.51,399.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-simcontrol-timestep-30-mins.xml,1850.4,144.0,1308.77,0.0,1452.77,144.0,253.63,397.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.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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 -house001.xml,2409.1,144.0,1701.52,0.0,1845.52,144.0,419.58,563.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 -house002.xml,2057.43,144.0,1479.73,0.0,1623.73,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 -house003.xml,2050.65,144.0,1461.78,0.0,1605.78,144.0,300.87,444.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 -house004.xml,3684.62,144.0,2755.34,0.0,2899.34,144.0,641.28,785.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 -house005.xml,2673.04,144.0,1943.98,0.0,2087.98,144.0,441.06,585.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 -house006.xml,2279.57,144.0,1172.74,0.0,1316.74,144.0,818.83,962.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 -house007.xml,2339.98,144.0,1249.52,0.0,1393.52,144.0,802.46,946.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 -house008.xml,2832.99,144.0,1446.05,0.0,1590.05,144.0,1098.94,1242.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 -house009.xml,2458.73,144.0,1255.56,0.0,1399.56,144.0,915.17,1059.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 -house010.xml,2562.42,144.0,1385.53,0.0,1529.53,144.0,888.89,1032.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 -house011.xml,1604.99,144.0,1460.99,0.0,1604.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 -house012.xml,1297.91,144.0,1153.91,0.0,1297.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 -house013.xml,1129.24,144.0,985.24,0.0,1129.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 -house014.xml,1162.7,144.0,1018.7,0.0,1162.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 -house015.xml,1129.24,144.0,985.24,0.0,1129.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 -house016.xml,2711.32,144.0,1759.27,0.0,1903.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,808.05,808.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house017.xml,2104.95,144.0,1008.57,0.0,1152.57,144.0,808.38,952.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 -house018.xml,1736.63,144.0,1592.63,0.0,1736.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 -house019.xml,3153.66,144.0,1876.79,0.0,2020.79,144.0,988.87,1132.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 -house020.xml,4934.79,144.0,2474.81,0.0,2618.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2315.98,2315.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 -house021.xml,3418.04,144.0,1756.87,0.0,1900.87,144.0,1373.17,1517.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 -house022.xml,5139.02,144.0,1767.94,0.0,1911.94,0.0,0.0,0.0,0.0,3227.08,3227.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 -house023.xml,5179.35,144.0,2293.39,0.0,2437.39,0.0,0.0,0.0,0.0,2741.96,2741.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 -house024.xml,4834.81,144.0,1589.72,0.0,1733.72,0.0,0.0,0.0,0.0,3101.09,3101.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 -house025.xml,3045.01,144.0,2251.63,0.0,2395.63,144.0,505.38,649.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 -house026.xml,1557.24,144.0,804.91,0.0,948.91,144.0,464.33,608.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 -house027.xml,1900.13,144.0,1002.62,0.0,1146.62,144.0,609.51,753.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 -house028.xml,1791.33,144.0,952.35,0.0,1096.35,144.0,550.98,694.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 -house029.xml,2155.65,144.0,1171.6,0.0,1315.6,144.0,696.05,840.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 -house030.xml,2410.32,144.0,672.33,0.0,816.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1593.99,1593.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 -house031.xml,4425.16,144.0,1831.36,0.0,1975.36,144.0,2305.8,2449.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 -house032.xml,1934.53,144.0,567.67,0.0,711.67,144.0,1078.86,1222.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 -house033.xml,4000.75,144.0,538.68,0.0,682.68,0.0,0.0,0.0,0.0,3318.07,3318.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house034.xml,5958.69,144.0,1575.82,0.0,1719.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4238.87,4238.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house035.xml,1501.77,144.0,630.13,0.0,774.13,144.0,583.64,727.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house036.xml,1935.24,144.0,931.33,0.0,1075.33,144.0,715.91,859.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 -house037.xml,3518.56,144.0,959.99,0.0,1103.99,0.0,0.0,0.0,0.0,2414.57,2414.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house038.xml,3078.35,144.0,1850.29,0.0,1994.29,144.0,940.06,1084.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 -house039.xml,2127.92,144.0,875.83,0.0,1019.83,144.0,964.09,1108.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house040.xml,2127.69,144.0,858.37,0.0,1002.37,144.0,981.32,1125.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 -house041.xml,3640.58,144.0,1740.82,0.0,1884.82,144.0,1611.76,1755.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 -house042.xml,3222.65,144.0,1480.15,0.0,1624.15,144.0,1454.5,1598.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house043.xml,2371.6,144.0,1104.35,0.0,1248.35,144.0,979.25,1123.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 -house044.xml,3287.93,144.0,1608.35,0.0,1752.35,144.0,1391.58,1535.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 -house045.xml,2472.35,144.0,1296.83,0.0,1440.83,144.0,887.52,1031.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 -house046.xml,951.86,144.0,807.86,0.0,951.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 -house047.xml,1015.71,144.0,657.22,0.0,801.22,144.0,70.49,214.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 -house048.xml,2274.06,144.0,1439.93,0.0,1583.93,144.0,546.13,690.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 -house049.xml,1510.78,144.0,1199.64,0.0,1343.64,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,1249.06,144.0,647.27,0.0,791.27,144.0,313.79,457.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-evap-cooler-only-ducted.xml,1392.17,144.0,1248.17,0.0,1392.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-mechvent-cfis-supplemental-fan-exhaust.xml,1978.47,144.0,1326.49,0.0,1470.49,144.0,363.98,507.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-mechvent-cfis-supplemental-fan-supply.xml,1996.66,144.0,1327.46,0.0,1471.46,144.0,381.2,525.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-mechvent-cfis.xml,2049.92,144.0,1374.21,0.0,1518.21,144.0,387.71,531.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1947.32,144.0,1378.87,0.0,1522.87,144.0,280.45,424.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-mechvent-erv.xml,1947.36,144.0,1378.87,0.0,1522.87,144.0,280.49,424.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-exhaust-rated-flow-rate.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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.xml,2022.9,144.0,1342.44,0.0,1486.44,144.0,392.46,536.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-hrv-asre.xml,1947.28,144.0,1378.86,0.0,1522.86,144.0,280.42,424.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-hrv.xml,1947.32,144.0,1378.86,0.0,1522.86,144.0,280.46,424.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-multiple.xml,2136.94,144.0,1394.31,0.0,1538.31,144.0,454.63,598.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-mechvent-supply.xml,2010.34,144.0,1344.89,0.0,1488.89,144.0,377.45,521.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-mechvent-whole-house-fan.xml,1775.28,144.0,1249.3,0.0,1393.3,144.0,237.98,381.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-misc-additional-properties.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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-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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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,674.29,108.0,777.89,-591.68,294.21,144.0,236.08,380.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,670.75,108.0,746.74,-564.08,290.67,144.0,236.08,380.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,635.35,108.0,702.47,-555.2,255.27,144.0,236.08,380.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 +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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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,753.09,108.0,1252.42,-987.41,373.01,144.0,236.08,380.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 +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,621.03,465.0,1255.78,-1476.89,243.89,132.0,245.14,377.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,84.04,465.0,1255.78,-2013.87,-293.1,132.0,245.14,377.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,-338.78,210.0,1255.78,-2181.7,-715.92,132.0,245.14,377.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,1788.92,144.0,1255.78,0.0,1399.78,144.0,245.14,389.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,1070.49,144.0,1152.18,-710.11,586.07,144.0,340.42,484.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-misc-emissions.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-misc-generators-battery-scheduled.xml,2284.75,144.0,1373.35,0.0,1517.35,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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,2221.87,144.0,1310.47,0.0,1454.47,144.0,326.12,470.12,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,1807.99,144.0,1307.56,0.0,1451.56,144.0,212.43,356.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-misc-loads-large-uncommon.xml,3677.03,144.0,2499.63,0.0,2643.63,144.0,739.13,883.13,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,3037.03,144.0,2369.37,0.0,2513.37,144.0,209.82,353.82,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,1486.61,144.0,899.21,0.0,1043.21,144.0,299.4,443.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-misc-neighbor-shading-bldgtype-multifamily.xml,1234.76,144.0,937.88,0.0,1081.88,144.0,8.88,152.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-neighbor-shading.xml,1881.63,144.0,1301.54,0.0,1445.54,144.0,292.09,436.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-misc-shielding-of-home.xml,1834.69,144.0,1315.69,0.0,1459.69,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-misc-unit-multiplier.xml,18345.58,1440.0,13104.76,0.0,14544.76,1440.0,2360.82,3800.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-usage-multiplier.xml,2999.32,144.0,1854.61,0.0,1998.61,144.0,721.46,865.46,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,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-pv-battery-garage.xml,851.04,144.0,1295.95,-986.62,453.34,144.0,253.7,397.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-round-trip-efficiency.xml,928.28,144.0,1390.83,-986.63,548.2,144.0,236.08,380.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-pv-battery-scheduled.xml,911.47,144.0,1373.35,-985.96,531.39,144.0,236.08,380.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-pv-battery.xml,878.11,144.0,1340.65,-986.62,498.03,144.0,236.08,380.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-pv-generators-battery-scheduled.xml,998.25,144.0,1373.35,-1286.5,230.85,144.0,326.12,470.12,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,965.63,144.0,1341.4,-1287.17,198.23,144.0,326.12,470.12,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,934.59,144.0,1310.47,-1287.29,167.19,144.0,326.12,470.12,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,847.81,144.0,1310.47,-986.74,467.73,144.0,236.08,380.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-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,917.12,144.0,268.49,0.0,412.49,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,2776.92,144.0,1902.69,0.0,2046.69,144.0,435.96,579.96,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,2510.99,144.0,1813.66,0.0,1957.66,144.0,238.63,382.63,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,1582.86,144.0,1036.5,0.0,1180.5,144.0,258.36,402.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-residents-5.xml,1320.39,144.0,1459.29,-743.14,860.14,144.0,316.25,460.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-all-10-mins.xml,1855.58,144.0,1319.52,0.0,1463.52,144.0,248.06,392.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-schedules-detailed-mixed-timesteps-power-outage.xml,1382.22,144.0,1042.85,0.0,1186.85,144.0,51.37,195.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1625.55,144.0,1252.09,0.0,1396.09,144.0,85.46,229.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-10-mins.xml,1846.96,144.0,1316.22,0.0,1460.22,144.0,242.74,386.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-schedules-detailed-occupancy-stochastic-power-outage.xml,1542.66,144.0,1102.53,0.0,1246.53,144.0,152.13,296.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-schedules-detailed-occupancy-stochastic-vacancy.xml,1696.2,144.0,1124.16,0.0,1268.16,144.0,284.04,428.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-schedules-detailed-occupancy-stochastic.xml,1845.19,144.0,1314.71,0.0,1458.71,144.0,242.48,386.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-schedules-detailed-setpoints-daily-schedules.xml,1805.85,144.0,1287.75,0.0,1431.75,144.0,230.1,374.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-schedules-detailed-setpoints-daily-setbacks.xml,1803.22,144.0,1293.39,0.0,1437.39,144.0,221.83,365.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-schedules-detailed-setpoints.xml,1607.27,144.0,1241.92,0.0,1385.92,144.0,77.35,221.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-schedules-simple-power-outage.xml,1713.0,144.0,1187.38,0.0,1331.38,144.0,237.62,381.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-simple-vacancy.xml,1686.52,144.0,1116.41,0.0,1260.41,144.0,282.11,426.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-schedules-simple.xml,1837.24,144.0,1311.73,0.0,1455.73,144.0,237.51,381.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-simcontrol-calendar-year-custom.xml,1832.95,144.0,1308.84,0.0,1452.84,144.0,236.11,380.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-simcontrol-daylight-saving-custom.xml,1834.57,144.0,1310.48,0.0,1454.48,144.0,236.09,380.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-simcontrol-daylight-saving-disabled.xml,1833.9,144.0,1309.96,0.0,1453.96,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-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,1830.43,144.0,1306.39,0.0,1450.39,144.0,236.04,380.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-timestep-10-mins-occupancy-stochastic-10-mins.xml,1855.54,144.0,1319.31,0.0,1463.31,144.0,248.23,392.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-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1854.5,144.0,1319.03,0.0,1463.03,144.0,247.47,391.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1844.02,144.0,1314.73,0.0,1458.73,144.0,241.29,385.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-simcontrol-timestep-30-mins.xml,1840.36,144.0,1312.93,0.0,1456.93,144.0,239.43,383.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.xml,1834.55,144.0,1310.47,0.0,1454.47,144.0,236.08,380.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 +house001.xml,2408.68,144.0,1713.38,0.0,1857.38,144.0,407.3,551.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 +house002.xml,2057.81,144.0,1487.66,0.0,1631.66,144.0,282.15,426.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 +house003.xml,2049.34,144.0,1468.5,0.0,1612.5,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 +house004.xml,3688.92,144.0,2773.65,0.0,2917.65,144.0,627.27,771.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 +house005.xml,2668.68,144.0,1951.66,0.0,2095.66,144.0,429.02,573.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 +house006.xml,2268.19,144.0,1177.93,0.0,1321.93,144.0,802.26,946.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 +house007.xml,2335.01,144.0,1257.35,0.0,1401.35,144.0,789.66,933.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 +house008.xml,2817.53,144.0,1454.1,0.0,1598.1,144.0,1075.43,1219.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 +house009.xml,2454.05,144.0,1263.31,0.0,1407.31,144.0,902.74,1046.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 +house010.xml,2546.92,144.0,1393.39,0.0,1537.39,144.0,865.53,1009.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 +house011.xml,1602.84,144.0,1458.84,0.0,1602.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 +house012.xml,1299.12,144.0,1155.12,0.0,1299.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 +house013.xml,1132.54,144.0,988.54,0.0,1132.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 +house014.xml,1164.54,144.0,1020.54,0.0,1164.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 +house015.xml,1132.54,144.0,988.54,0.0,1132.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 +house016.xml,2697.33,144.0,1754.03,0.0,1898.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.3,799.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 +house017.xml,2096.74,144.0,1013.86,0.0,1157.86,144.0,794.88,938.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 +house018.xml,1734.45,144.0,1590.45,0.0,1734.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 +house019.xml,3151.56,144.0,1886.16,0.0,2030.16,144.0,977.4,1121.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 +house020.xml,4889.09,144.0,2486.43,0.0,2630.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.66,2258.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 +house021.xml,3394.09,144.0,1752.86,0.0,1896.86,144.0,1353.23,1497.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 +house022.xml,5106.63,144.0,1775.67,0.0,1919.67,0.0,0.0,0.0,0.0,3186.96,3186.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 +house023.xml,5125.06,144.0,2299.06,0.0,2443.06,0.0,0.0,0.0,0.0,2682.0,2682.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house024.xml,4793.18,144.0,1598.62,0.0,1742.62,0.0,0.0,0.0,0.0,3050.56,3050.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 +house025.xml,3023.43,144.0,2240.51,0.0,2384.51,144.0,494.92,638.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 +house026.xml,1540.23,144.0,801.94,0.0,945.94,144.0,450.29,594.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 +house027.xml,1884.67,144.0,1019.32,0.0,1163.32,144.0,577.35,721.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 +house028.xml,1785.95,144.0,962.01,0.0,1106.01,144.0,535.94,679.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 +house029.xml,2140.24,144.0,1169.99,0.0,1313.99,144.0,682.25,826.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 +house030.xml,2379.01,144.0,672.8,0.0,816.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1562.21,1562.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 +house031.xml,4400.0,144.0,1832.23,0.0,1976.23,144.0,2279.77,2423.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house032.xml,1924.9,144.0,567.7,0.0,711.7,144.0,1069.2,1213.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 +house033.xml,3982.06,144.0,536.35,0.0,680.35,0.0,0.0,0.0,0.0,3301.71,3301.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 +house034.xml,5894.17,144.0,1577.52,0.0,1721.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4172.65,4172.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 +house035.xml,1498.98,144.0,635.52,0.0,779.52,144.0,575.46,719.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 +house036.xml,1931.93,144.0,937.63,0.0,1081.63,144.0,706.3,850.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 +house037.xml,3488.99,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2380.96,2380.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 +house038.xml,3074.81,144.0,1863.06,0.0,2007.06,144.0,923.75,1067.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 +house039.xml,2109.19,144.0,877.55,0.0,1021.55,144.0,943.64,1087.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 +house040.xml,2118.23,144.0,858.63,0.0,1002.63,144.0,971.6,1115.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 +house041.xml,3632.63,144.0,1746.4,0.0,1890.4,144.0,1598.23,1742.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 +house042.xml,3216.44,144.0,1486.79,0.0,1630.79,144.0,1441.65,1585.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 +house043.xml,2368.64,144.0,1111.13,0.0,1255.13,144.0,969.51,1113.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 +house044.xml,3284.12,144.0,1614.48,0.0,1758.48,144.0,1381.64,1525.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 +house045.xml,2474.84,144.0,1302.64,0.0,1446.64,144.0,884.2,1028.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 +house046.xml,950.44,144.0,806.44,0.0,950.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 +house047.xml,990.8,144.0,636.48,0.0,780.48,144.0,66.32,210.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 +house048.xml,2271.97,144.0,1449.16,0.0,1593.16,144.0,534.81,678.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 +house049.xml,1477.13,144.0,1166.0,0.0,1310.0,144.0,23.13,167.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 +house050.xml,1238.98,144.0,652.31,0.0,796.31,144.0,298.67,442.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 From 356cca896e30124464f4c3433ad15ea0377a6f24 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 20 Feb 2024 09:48:21 -0700 Subject: [PATCH 20/35] Merge bugfix --- workflow/tests/util.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/tests/util.rb b/workflow/tests/util.rb index c859d959b..bafd4d9f5 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -884,7 +884,7 @@ def _check_reference_home_components(results, test_num, version) # Mechanical ventilation mv_kwh_yr = nil - if version == '2022' + if version == '2022C' mv_kwh_yr = { 1 => 0.0, 2 => 223.9, 3 => 288.1, 4 => 763.4 }[test_num] elsif version == '2019' mv_kwh_yr = { 1 => 0.0, 2 => 222.1, 3 => 288.1, 4 => 763.4 }[test_num] From 285f12e9e21960339f396060ebafebad5cc993fe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 20 Feb 2024 17:48:55 +0000 Subject: [PATCH 21/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 34 ++-- .../RESNET_Test_4.6_Hot_Water.csv | 4 +- workflow/tests/base_results/real_homes.csv | 178 ++++++++-------- workflow/tests/base_results/sample_files1.csv | 192 +++++++++--------- workflow/tests/base_results/sample_files2.csv | 164 +++++++-------- 5 files changed, 286 insertions(+), 286 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index f6f3fa92f..f38162bcb 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,19 +1,19 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.17,67.17 -[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.53,74.53 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.49,73.49 -[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.17,62.17 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.16,64.16 -[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.57,62.57 -[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.54,51.54 -[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.24,49.24 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.26,60.26 -[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.32,73.32 -[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.49,81.49 -[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.5,71.5 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.2,67.2 +[MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.66,74.66 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.4,73.4 +[MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.14,62.14 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.18,64.18 +[MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.55,62.55 +[MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.62,51.62 +[MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.37,49.37 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.22,60.22 +[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.41,73.41 +[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.27,81.27 +[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.51,71.51 [SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.49,64.49 -[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.29,64.29 -[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.39,58.39 -[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.8,51.8 -[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.59,50.59 -[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.58,52.58 +[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.37,64.37 +[SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.42,58.42 +[SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.91,51.91 +[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.74,50.74 +[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.65,52.65 diff --git a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv index bb8764f89..d38e736ba 100644 --- a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv +++ b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv @@ -1,8 +1,8 @@ Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD -L100AD-HW-01.xml,196.1,0.0,44 +L100AD-HW-01.xml,196.0,0.0,44 L100AD-HW-02.xml,260.8,0.0,64 L100AD-HW-03.xml,174.8,0.0,44 -L100AD-HW-04.xml,252.6,0.0,62 +L100AD-HW-04.xml,252.5,0.0,62 L100AD-HW-05.xml,551.6,439.6,55 L100AD-HW-06.xml,228.8,5.9,55 L100AD-HW-07.xml,207.8,0.0,59 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index cf1de5a7a..530328b06 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,89 +1,89 @@ -XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -house001.xml,63.0,9.08,2.02,6.49,14.51,2.16,12.48,9.39,1.2,9.83,10.06,0.79,0.0,0.21322,71.47,5794.71,7603.83,1.0663,55.93,1.0,55.93,63.0,63.0,0.0,46.6,1.0,46.6,63.0,63.0,0.0,60.2,10.53,1.94,6.49,16.82,2.14,12.5,9.33,1.2,9.83,10.06,0.79,0.0,0.21322 -house002.xml,70.3,51.25,21.35,9.54,41.41,12.27,10.56,27.07,6.36,9.45,24.05,1.85,0.0,0.18462,71.23,12496.45,17839.91,0.9834,50.83,1.0,50.83,70.3,70.3,0.0,48.4,1.0,48.4,70.3,70.3,0.0,64.71,59.54,21.44,9.54,47.97,12.8,10.56,26.68,6.3,9.45,24.05,1.79,0.0,0.18462 -house003.xml,62.86,27.3,21.76,8.83,30.61,12.45,16.04,19.04,6.92,7.24,22.14,1.18,0.0,0.24283,73.99,9388.72,12784.26,0.9925,49.05,1.0,49.05,62.86,62.86,0.0,47.15,1.0,47.15,62.86,62.86,0.0,59.47,31.03,21.55,8.83,34.230000000000004,12.9,16.05,18.700000000000003,6.84,7.24,22.14,1.13,0.0,0.24283 -house004.xml,60.94,49.7,2.79,13.08,46.2,1.44,14.34,30.08,0.31,5.38,16.12,3.1,0.0,0.32008,66.5,4917.2,7080.64,1.0443,56.26,1.0,56.26,60.94,60.94,0.0,48.58,1.0,48.58,60.94,60.94,0.0,55.32,59.55,2.4,13.08,54.8,1.28,14.34,29.99,0.31,5.39,16.12,3.1,0.0,0.32008 -house005.xml,60.62,4.67,4.06,5.79,4.1,2.31,12.12,1.26,1.66,4.06,8.94,1.79,0.0,0.2029,83.68,2689.77,2982.32,1.0778,50.07,1.0,50.07,60.62,60.62,0.0,44.93,1.0,44.93,60.62,60.62,0.0,58.73,5.57,3.98,5.79,4.74,2.32,12.14,1.26,1.65,4.06,8.94,1.79,0.0,0.2029 -house006.xml,71.64,31.58,20.72,10.54,23.74,12.02,11.82,16.18,7.5,10.52,21.3,1.46,0.0,0.2395,72.98,10130.0,13623.99,1.0188,45.76,1.0,45.76,71.64,71.64,0.0,43.89,1.0,43.89,71.64,71.64,0.0,69.47,33.74,20.6,10.54,25.46,12.26,11.82,16.08,7.46,10.52,21.3,1.46,0.0,0.2395 -house007.xml,77.04,15.31,4.62,8.85,13.16,2.61,9.87,10.98,0.61,8.48,14.96,1.35,0.0,0.23425,79.29,8887.38,10607.21,1.0567,57.11,1.0,57.11,77.04,77.04,0.0,47.97,1.0,47.97,77.04,77.04,0.0,73.99,17.6,4.48,8.85,14.94,2.59,9.88,10.98,0.61,8.48,14.96,1.35,0.0,0.23425 -house008.xml,62.84,96.27,10.33,13.22,153.4,6.79,22.26,82.13,3.56,14.81,37.43,0.33,0.0,0.20001,73.56,24303.74,33975.74,0.9724,51.47,1.0,51.47,62.84,62.84,0.0,46.48,1.0,46.48,62.84,62.84,0.0,57.38,111.27,9.99,13.22,177.3,6.79,22.27,81.86,3.53,14.81,37.43,0.33,0.0,0.20001 -house009.xml,62.4,19.29,42.09,8.99,30.91,25.18,16.38,16.93,13.6,12.35,23.29,0.64,0.0,0.28642,85.13,10003.99,11470.79,1.0245,48.61,1.0,48.61,62.4,62.4,0.0,45.53,1.0,45.53,62.4,62.4,0.0,59.37,21.82,42.49,8.99,34.96,26.18,16.38,16.36,13.43,12.35,23.29,0.59,0.0,0.28642 -house010.xml,63.1,51.870000000000005,137.72,7.12,82.98,76.4,13.58,42.150000000000006,41.44,6.14,43.24,2.39,0.0,0.28201,95.46,17151.71,19835.69,0.9059,53.99,1.0,53.99,63.1,63.1,0.0,48.67,1.0,48.67,63.1,63.1,0.0,60.44,58.45,140.94,7.12,93.49000000000001,78.31,13.58,41.58,41.24,6.14,43.24,2.39,0.0,0.28201 -house011.xml,67.08,8.34,6.55,7.89,13.34,4.53,8.9,10.65,1.72,8.21,12.64,0.17,0.0,0.26131,92.18,4042.38,4110.11,1.0669,56.67,1.0,56.67,67.08,67.08,0.0,53.1,1.0,53.1,67.08,67.08,0.0,64.88,9.75,6.43,7.89,15.6,4.54,8.9,10.57,1.71,8.21,12.64,0.17,0.0,0.26131 -house012.xml,50.17,34.31,2.68,11.63,29.25,1.52,12.68,8.52,0.52,10.73,14.75,1.29,0.0,0.31688,51.38,5425.75,10091.88,1.0463,51.78,1.0,51.78,50.17,50.17,1.0,44.13,1.0,44.13,50.17,50.17,0.0,46.25,40.35,2.52,11.63,34.16,1.49,12.68,8.48,0.51,10.73,14.75,1.29,0.0,0.31688 -house013.xml,58.99,12.03,1.85,10.35,8.85,0.88,11.96,6.65,0.19,3.38,13.97,0.66,0.0,0.16792,57.65,1705.24,2805.93,1.0542,52.88,1.0,52.88,58.99,58.99,0.0,47.61,1.0,47.61,58.99,58.99,0.0,57.69,13.02,1.75,10.35,9.47,0.84,11.96,6.54,0.19,3.38,13.97,0.64,0.0,0.16792 -house014.xml,55.13,87.78,28.229999999999997,15.51,64.9,15.43,17.2,31.259999999999998,6.99,3.68,36.46,4.19,0.0,0.25775,55.86,9453.58,17153.87,0.9866,48.19,1.0,48.19,55.13,55.13,0.0,45.84,1.0,45.84,55.13,55.13,0.0,50.59,103.21000000000001,27.79,15.51,75.98,15.95,17.2,31.11,6.960000000000001,3.68,36.46,4.19,0.0,0.25775 -house015.xml,16.85,0.2,22.14,3.31,0.27,11.99,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027,22.56,876.99,3424.1,1.1353,49.7,1.0,49.7,49.76,49.76,1.0,47.67,1.0,47.67,49.76,49.76,0.0,47.19,0.21,22.19,3.31,0.28,12.02,5.93,0.2,5.72,1.44,9.6,0.21,0.0,0.28027 -house016.xml,51.51,0.56,72.72,5.61,0.51,39.29,11.57,0.24,18.57,10.53,18.36,0.37,0.0,0.2776,72.26,6033.46,8011.42,1.0422,51.02,1.0,51.02,51.51,51.51,0.0,48.86,1.0,48.86,51.51,51.51,0.0,51.19,0.62,72.94,5.61,0.55,39.46,11.57,0.23,18.48,10.53,18.36,0.37,0.0,0.2776 -house017.xml,69.27,20.26,5.69,10.95,32.32,3.82,18.88,37.32,1.38,9.12,15.89,0.5,0.0,0.20226,178.07,8237.79,4416.32,1.0475,52.44,1.0,52.44,69.27,69.27,0.0,47.53,1.0,47.53,69.27,69.27,0.0,64.96,23.71,5.49,10.95,37.79,3.73,18.9,36.65,1.37,9.12,15.89,0.48,0.0,0.20226 -house018.xml,31.09,149.43,32.13,17.34,238.12,21.1,27.24,127.60999999999999,9.35,18.26,48.3,0.9,0.0,0.22635,98.71,24339.58,25723.6,0.9585,51.05,1.0,51.05,54.34,54.34,0.0,47.06,1.0,47.06,54.34,54.34,0.0,45.61,171.57,31.63,17.34,273.15,21.55,27.26,126.91999999999999,9.26,18.26,48.3,0.9,0.0,0.22635 -house019.xml,63.62,97.19,10.14,13.22,155.04,6.84,22.25,98.73,2.03,15.29,29.84,4.58,0.0,0.1912,76.11,25518.27,34331.59,0.9766,51.91,1.0,51.91,63.62,63.62,0.0,46.66,1.0,46.66,63.62,63.62,0.0,57.94,113.02,9.8,13.22,180.08,6.83,22.27,98.39,2.01,15.29,29.84,4.58,0.0,0.1912 -house020.xml,39.51,89.32,13.049999999999999,13.08,103.69999999999999,7.4799999999999995,14.11,92.53,5.1,13.08,33.48,3.62,0.0,0.25974,113.38,12980.85,11698.11,0.9787,56.18,1.0,56.18,82.85,82.85,0.0,51.97,1.0,51.97,82.85,82.85,0.0,71.83,101.98,12.68,13.08,117.84,7.33,14.12,92.53,5.1,13.08,33.48,3.62,0.0,0.25974 -house021.xml,59.68,54.01,8.13,15.33,86.06,5.55,24.64,49.3,4.07,17.77,19.62,2.69,0.0,0.2707,65.79,15986.19,23159.41,1.0493,53.07,1.0,53.07,59.68,59.68,0.0,47.7,1.0,47.7,59.68,59.68,0.0,55.45,61.76,7.89,15.33,98.41,5.57,24.65,49.14,4.04,17.78,19.62,2.69,0.0,0.2707 -house022.xml,54.23,0.44,54.0,4.5,0.44,29.67,5.7,0.56,13.98,2.26,15.85,2.09,0.0,0.24317,61.74,4090.31,6374.67,1.0392,50.78,1.0,50.78,54.23,54.23,0.0,48.45,1.0,48.45,54.23,54.23,0.0,53.83,0.5,54.21,4.5,0.48,29.83,5.7,0.55,13.89,2.26,15.85,2.09,0.0,0.24317 -house023.xml,72.69,16.25,39.75,6.02,11.91,22.67,7.25,7.61,14.65,5.84,18.89,4.02,0.0,0.26097,74.51,7618.19,10165.52,1.0058,45.74,1.0,45.74,72.69,72.69,0.0,43.92,1.0,43.92,72.69,72.69,0.0,70.44,17.35,39.92,6.02,12.62,23.11,7.25,7.41,14.48,5.84,18.89,3.78,0.0,0.26097 -house024.xml,68.79,21.42,45.28,8.99,34.32,27.15,16.06,23.47,14.71,12.52,23.96,4.55,0.0,0.27167,94.71,11773.36,12313.61,1.0095,52.76,1.0,52.76,68.79,68.79,0.0,49.62,1.0,49.62,68.79,68.79,0.0,64.61,24.53,45.77,8.99,39.3,28.37,16.06,22.71,14.47,12.52,23.96,3.92,0.0,0.27167 -house025.xml,9.28,106.68,19.34,12.54,78.8,10.26,13.86,38.79,5.2,2.61,36.94,2.69,0.0,0.15675,22.51,2893.83,13414.51,0.9584,51.0,1.0,51.0,56.38,56.38,0.0,45.94,1.0,45.94,56.38,56.38,0.0,49.61,120.66,19.44,12.54,88.72,10.33,13.86,38.45,5.050000000000001,2.61,36.94,2.69,0.0,0.15675 -house026.xml,65.21,11.54,29.78,7.52,18.48,18.04,14.1,10.33,10.2,14.24,19.05,0.49,0.0,0.21446,91.12,8086.82,8495.08,1.0447,47.06,1.0,47.06,65.21,65.21,0.0,44.37,1.0,44.37,65.21,65.21,0.0,62.98,12.86,29.98,7.52,20.6,18.56,14.1,10.01,10.12,14.24,19.05,0.46,0.0,0.21446 -house027.xml,66.67,15.56,37.88,7.53,24.92,22.66,14.43,16.2,12.55,11.69,19.74,3.78,0.0,0.3038,90.16,9516.03,10169.34,1.0379,51.69,1.0,51.69,66.67,66.67,0.0,48.6,1.0,48.6,66.67,66.67,0.0,64.19,16.63,38.04,7.53,26.64,23.1,14.43,15.48,12.34,11.69,19.74,3.41,0.0,0.3038 -house028.xml,65.94,22.24,48.59,10.42,16.11,28.39,11.66,9.35,16.96,8.78,25.84,0.79,0.0,0.28713,68.05,9263.86,13363.8,1.0187,44.61,1.0,44.61,65.94,65.94,0.0,42.78,1.0,42.78,65.94,65.94,0.0,62.47,25.52,49.13,10.42,18.3,29.56,11.66,9.02,16.7,8.78,25.84,0.73,0.0,0.28713 -house029.xml,61.56,21.98,47.61,8.98,35.21,28.96,16.06,22.22,14.61,9.36,26.67,0.7,0.0,0.25612,84.99,11005.88,12950.95,0.9999,49.2,1.0,49.2,61.56,61.56,0.0,46.16,1.0,46.16,61.56,61.56,0.0,58.09,25.35,48.16,8.98,40.620000000000005,30.28,16.06,21.43,14.42,9.36,26.67,0.63,0.0,0.25612 -house030.xml,59.93,28.060000000000002,57.93,10.42,44.97,35.04,17.92,28.28,19.45,9.28,27.93,0.84,0.0,0.2949,82.83,12883.16,15512.7,1.0026,50.03,1.0,50.03,59.93,59.93,0.0,46.78,1.0,46.78,59.93,59.93,0.0,56.33,32.18,58.61,10.42,51.55,36.650000000000006,17.94,27.27,19.15,9.28,27.93,0.75,0.0,0.2949 -house031.xml,55.71,120.63,19.59,14.54,89.16,10.37,17.33,43.45,7.31,3.34,36.88,2.99,0.0,-0.03578,55.29,8057.82,14472.89,1.007,49.4,1.0,49.4,55.71,55.71,0.0,44.7,1.0,44.7,55.71,55.71,0.0,51.8,135.6,19.66,14.54,99.48,10.42,17.34,43.14,7.17,3.34,36.88,2.99,0.0,-0.03578 -house032.xml,70.75,25.560000000000002,56.67,8.99,40.93,33.83,16.33,28.16,20.37,13.06,26.02,5.62,0.0,0.26822,104.55,15261.37,14331.82,1.0185,54.37,1.0,54.37,70.75,70.75,0.0,51.03,1.0,51.03,70.75,70.75,0.0,67.18,27.45,56.93,8.99,43.959999999999994,34.58,16.33,26.78,19.92,13.06,26.02,4.65,0.0,0.26822 -house033.xml,64.13,68.4,28.009999999999998,11.39,109.17,17.71,19.41,83.71000000000001,6.879999999999999,10.68,31.47,0.0,0.0,0.22328,90.66,20763.88,23623.44,0.9695,52.34,1.0,52.34,64.13,64.13,0.0,49.15,1.0,49.15,64.13,64.13,0.0,59.16,79.84,28.050000000000004,11.39,127.41,18.380000000000003,19.42,83.41,6.819999999999999,10.68,31.47,0.0,0.0,0.22328 -house034.xml,62.1,18.62,4.44,9.98,29.81,3.08,18.48,15.33,2.01,10.85,20.18,2.23,0.0,0.18697,152.23,5680.0,3627.53,1.0286,55.62,1.0,55.62,62.1,62.1,0.0,50.21,1.0,50.21,62.1,62.1,0.0,60.57,20.08,4.33,9.98,32.15,3.03,18.48,15.22,2.0,10.85,20.18,2.23,0.0,0.18697 -house035.xml,70.1,51.14,6.42,11.07,81.55,4.72,12.39,67.02,2.11,10.02,20.06,0.52,0.0,0.19233,80.22,18023.5,22552.33,0.9962,55.85,1.0,55.85,70.1,70.1,0.0,49.39,1.0,49.39,70.1,70.1,0.0,64.61,58.33,6.18,11.07,92.95,4.72,12.39,65.21,2.1,10.02,20.06,0.48,0.0,0.19233 -house036.xml,68.14,60.62,8.64,8.66,96.7,5.91,15.95,66.85,3.17,9.12,27.96,2.37,0.0,0.18716,79.37,18675.74,24004.98,0.9802,55.45,1.0,55.45,68.17,68.17,0.0,49.77,1.0,49.77,68.17,68.17,0.0,63.22,68.72,8.43,8.66,109.52,5.86,15.96,66.12,3.13,9.12,27.96,2.32,0.0,0.18716 -house037.xml,67.07,63.84,6.69,13.22,101.87,4.86,14.55,69.42,2.92,10.99,21.25,0.42,0.0,0.19298,78.29,19078.9,24109.56,1.0107,52.83,1.0,52.83,67.07,67.07,0.0,47.87,1.0,47.87,67.07,67.07,0.0,60.88,73.49,6.48,13.22,117.1,4.88,14.56,67.48,2.9,10.99,21.25,0.36,0.0,0.19298 -house038.xml,64.91,38.480000000000004,39.81,9.93,34.57,22.439999999999998,17.58,23.93,12.010000000000002,12.25,27.65,0.92,0.0,0.26786,73.16,13843.32,19459.29,0.9724,47.19,1.0,47.19,64.91,64.91,0.0,45.16,1.0,45.16,64.91,64.91,0.0,61.91,42.28,39.71,9.93,37.6,22.97,17.58,23.34,11.83,12.25,27.65,0.82,0.0,0.26786 -house039.xml,50.26,71.8,20.2,16.51,114.53,13.27,29.7,125.28,6.45,24.88,36.28,0.0,0.0,0.09297,205.89,22710.76,11058.09,0.9975,54.14,1.0,54.14,88.65,88.65,0.0,49.57,1.0,49.57,88.65,88.65,0.0,73.28,86.07,20.22,16.51,137.25,13.280000000000001,29.7,124.72,6.32,24.89,36.28,0.0,0.0,0.09297 -house040.xml,63.74,123.7,12.21,11.07,197.17,7.93,19.46,110.7,8.99,15.32,32.38,2.11,0.0,0.18417,74.87,29026.2,40512.52,0.957,52.82,1.0,52.82,63.74,63.74,0.0,49.66,1.0,49.66,63.74,63.74,0.0,58.85,139.57,11.88,11.07,222.4,7.69,19.47,110.31,8.88,15.32,32.38,2.11,0.0,0.18417 -house041.xml,83.97,24.75,8.16,12.54,39.48,5.2,20.94,33.71,3.87,20.4,23.5,0.88,0.0,0.13022,189.43,10264.34,5294.1,1.0235,52.89,1.0,52.89,83.97,83.97,0.0,46.76,1.0,46.76,83.97,83.97,0.0,74.92,27.46,8.08,12.54,43.79,5.16,20.95,27.24,3.89,20.39,23.5,0.0,0.0,0.13022 -house042.xml,90.17,49.11,21.04,11.39,78.44,12.99,19.74,80.64,10.16,15.57,27.23,0.46,0.0,0.21961,116.9,20991.91,18000.96,0.9976,49.86,1.0,49.86,90.17,90.17,0.0,46.81,1.0,46.81,90.17,90.17,0.0,81.2,56.83,21.03,11.39,90.75,13.42,19.76,76.46,9.92,15.57,27.23,0.0,0.0,0.21961 -house043.xml,-8.63,12.16,5.34,10.49,9.81,2.81,11.8,0.73,1.33,2.59,14.94,0.79,0.0,0.3014,0.04,1.58,3973.44,1.035,53.43,1.0,53.43,40.51,40.51,1.0,47.91,1.0,47.91,40.51,40.51,1.0,35.62,16.34,5.23,10.49,12.72,2.76,11.81,0.73,1.31,2.59,14.94,0.79,0.0,0.3014 -house044.xml,69.25,18.71,3.36,6.35,29.87,2.81,7.67,25.15,1.86,5.34,9.53,0.52,0.0,0.16565,77.2,7600.66,9339.61,1.0541,52.38,1.0,52.38,69.25,69.25,0.0,48.6,1.0,48.6,69.25,69.25,0.0,67.04,20.06,3.3,6.35,32.0,2.81,7.67,25.08,1.85,5.34,9.53,0.52,0.0,0.16565 -house045.xml,89.44,73.53,42.89,12.22,55.07,24.73,21.3,47.88,18.14,33.34,39.95,4.48,0.0,0.22001,100.67,25423.89,26306.02,0.96,49.56,1.0,49.56,89.44,89.44,0.0,45.7,1.0,45.7,89.44,89.44,0.0,83.41,84.24,42.36,12.22,62.94,25.65,21.3,47.43,17.99,33.34,39.95,4.48,0.0,0.22001 -house046.xml,-4.65,74.24,12.05,12.94,61.78,6.78,13.97,13.03,1.43,10.55,17.63,3.05,0.0,0.27812,9.46,2646.59,28117.48,0.9951,50.06,1.0,50.06,37.1,37.1,1.0,44.05,1.0,44.05,37.1,37.1,1.0,32.28,86.17,11.69,12.94,71.54,6.91,13.97,12.97,1.42,10.55,17.63,3.05,0.0,0.27812 -house047.xml,63.8,31.57,8.97,10.49,50.29,5.55,11.81,44.42,2.33,2.71,21.15,0.37,0.0,0.20941,169.05,10361.94,6103.19,1.0043,58.38,1.0,58.38,63.8,63.8,0.0,53.08,1.0,53.08,63.8,63.8,0.0,58.65,38.11,8.91,10.49,60.69,5.54,11.81,43.71,2.29,2.71,21.15,0.36,0.0,0.20941 -house048.xml,66.16,1.74,66.18,5.61,2.79,37.96,10.95,0.63,25.41,7.59,19.73,0.79,0.0,0.3336,82.72,6716.59,7678.16,1.0575,50.62,1.0,50.62,66.16,66.16,0.0,46.05,1.0,46.05,66.16,66.16,0.0,65.3,1.85,66.37,5.61,2.96,38.12,10.95,0.55,25.11,7.59,19.73,0.66,0.0,0.3336 -house049.xml,52.57,13.25,3.11,7.98,9.75,1.59,16.63,3.31,0.56,8.66,13.12,2.15,0.0,0.22328,90.24,2578.2,2717.62,1.0513,49.16,1.0,49.16,52.57,52.57,0.0,44.27,1.0,44.27,52.57,52.57,0.0,51.48,14.22,3.04,7.98,10.39,1.56,16.63,3.29,0.56,8.66,13.12,2.15,0.0,0.22328 -house050.xml,87.34,20.22,4.93,11.92,32.23,3.23,21.36,14.73,2.83,15.61,22.99,14.05,0.0,0.1657,176.54,7347.52,4096.47,1.016,55.68,1.0,55.68,87.34,87.34,0.0,50.42,1.0,50.42,87.34,87.34,0.0,82.63,23.87,4.67,11.92,38.05,3.12,21.36,14.58,2.79,15.61,22.99,13.97,0.0,0.1657 -house051.xml,55.49,10.49,2.82,9.98,8.01,1.45,18.47,3.95,0.23,8.31,16.7,1.14,0.0,0.17581,92.32,2720.32,2877.81,1.0239,51.67,1.0,51.67,55.49,55.49,0.0,46.42,1.0,46.42,55.49,55.49,0.0,52.96,12.96,2.61,9.98,9.67,1.37,18.47,3.91,0.23,8.31,16.7,1.14,0.0,0.17581 -house052.xml,59.17,12.31,1.71,10.35,9.03,0.82,11.96,4.14,0.12,8.08,13.11,1.26,0.0,0.19248,59.78,1788.37,2826.99,1.0581,53.33,1.0,53.33,59.17,59.17,0.0,48.23,1.0,48.23,59.17,59.17,0.0,57.53,13.74,1.59,10.35,9.96,0.76,11.96,4.11,0.12,8.08,13.11,1.26,0.0,0.19248 -house053.xml,71.1,20.36,4.77,11.92,32.46,3.16,21.32,21.31,2.04,14.94,22.57,0.96,0.0,0.16633,175.56,7262.55,4066.51,1.0173,55.53,1.0,55.53,71.1,71.1,0.0,50.3,1.0,50.3,71.1,71.1,0.0,66.72,24.16,4.52,11.92,38.51,3.05,21.32,20.6,2.03,14.94,22.57,0.9,0.0,0.16633 -house054.xml,62.32,3.2199999999999998,120.69,7.76,5.17,69.57,13.56,1.73,43.76,6.47,28.18,1.52,0.0,0.33458,71.37,9752.95,13364.6,1.0226,49.69,1.0,49.69,62.32,62.32,0.0,45.03,1.0,45.03,62.32,62.32,0.0,61.63,3.4699999999999998,121.22,7.76,5.5600000000000005,69.99,13.56,1.6,43.480000000000004,6.47,28.18,1.46,0.0,0.33458 -house055.xml,63.57,1.76,65.51,5.61,2.82,37.48,10.68,1.24,24.37,5.91,18.6,1.03,0.0,0.33869,75.82,6134.95,7633.91,1.06,48.83,1.0,48.83,63.57,63.57,0.0,44.37,1.0,44.37,63.57,63.57,0.0,63.1,1.83,65.65,5.61,2.93,37.6,10.68,1.18,24.23,5.91,18.6,1.01,0.0,0.33869 -house056.xml,62.73,24.84,5.16,11.92,39.76,3.47,20.93,21.8,1.92,11.91,24.34,2.69,0.0,0.20029,159.57,7111.23,4408.92,1.0108,54.91,1.0,54.91,62.73,62.73,0.0,49.62,1.0,49.62,62.73,62.73,0.0,58.66,29.5,4.89,11.92,47.21,3.35,20.93,21.36,1.91,11.91,24.34,2.62,0.0,0.20029 -house057.xml,82.87,17.86,4.12,9.98,28.47,2.82,11.54,16.24,2.97,3.24,19.13,12.04,0.0,0.15957,140.93,5081.88,3555.53,1.0142,57.94,1.0,57.94,82.87,82.87,0.0,53.17,1.0,53.17,82.87,82.87,0.0,77.27,20.98,3.91,9.98,33.45,2.74,11.54,16.06,2.9,3.24,19.13,11.36,0.0,0.15957 -house058.xml,64.63,3.14,82.82,6.7,5.03,47.9,12.51,1.64,29.41,10.89,21.41,0.99,0.0,0.33359,79.44,7806.61,9707.3,1.0124,50.5,1.0,50.5,64.63,64.63,0.0,45.87,1.0,45.87,64.63,64.63,0.0,63.21,3.67,83.86,6.7,5.87,48.68,12.51,1.48,29.15,10.89,21.41,0.91,0.0,0.33359 -house059.xml,55.74,7.23,2.94,7.98,5.69,1.48,15.03,2.73,0.45,6.95,14.27,0.13,0.0,0.1901,105.22,2428.26,2150.04,1.0734,50.71,1.0,50.71,55.74,55.74,0.0,46.46,1.0,46.46,55.74,55.74,0.0,54.77,7.9,2.86,7.98,6.12,1.45,15.05,2.68,0.45,6.95,14.27,0.12,0.0,0.1901 -house060.xml,73.66,30.94,33.66,11.51,49.52,20.259999999999998,19.93,43.26,12.34,13.8,27.47,0.85,0.0,0.23113,92.16,16021.78,17200.83,1.0107,49.77,1.0,49.77,73.66,73.66,0.0,46.16,1.0,46.16,73.66,73.66,0.0,67.71,33.8,33.52,11.51,54.07,20.65,19.94,38.8,11.84,13.8,27.47,0.0,0.0,0.23113 -house061.xml,66.72,4.56,3.06,5.79,7.28,1.78,6.8,9.37,0.45,4.66,9.07,0.18,0.0,0.20355,93.77,2943.07,2946.5,1.0651,60.03,1.0,60.03,66.72,66.72,0.0,51.01,1.0,51.01,66.72,66.72,0.0,64.37,5.59,2.99,5.79,8.91,1.78,6.81,9.31,0.44,4.66,9.07,0.18,0.0,0.20355 -house062.xml,74.55,9.32,8.96,5.19,7.22,5.12,6.19,7.91,3.55,4.76,9.72,0.0,0.0,0.24827,75.18,4584.65,5729.56,1.0644,49.37,1.0,49.37,74.55,74.55,0.0,45.89,1.0,45.89,74.55,74.55,0.0,73.94,9.5,8.94,5.19,7.34,5.14,6.19,7.86,3.53,4.76,9.72,0.0,0.0,0.24827 -house063.xml,78.06,16.03,40.12,6.02,25.67,23.63,12.48,21.94,15.9,9.48,20.91,4.22,0.0,0.25386,104.78,10805.27,10255.08,1.0056,49.0,1.0,49.0,78.06,78.06,0.0,46.2,1.0,46.2,78.06,78.06,0.0,75.46,17.12,40.28,6.02,27.42,24.09,12.48,21.26,15.7,9.48,20.91,3.98,0.0,0.25386 -house064.xml,70.64,14.03,32.39,6.02,22.48,19.15,12.18,17.21,12.32,8.4,16.88,2.41,0.0,0.27504,96.09,8536.24,8539.93,1.0402,53.61,1.0,53.61,70.64,70.64,0.0,50.39,1.0,50.39,70.64,70.64,0.0,67.79,14.97,32.52,6.02,23.97,19.54,12.18,16.45,12.12,8.4,16.88,2.05,0.0,0.27504 -house065.xml,76.28,15.85,42.08,8.99,25.39,25.35,16.33,23.21,16.31,12.28,24.39,4.76,0.0,0.25282,102.34,12050.35,11372.24,1.0354,47.73,1.0,47.73,76.28,76.28,0.0,45.01,1.0,45.01,76.28,76.28,0.0,74.06,17.0,42.26,8.99,27.24,25.81,16.33,22.59,16.13,12.28,24.39,4.57,0.0,0.25282 -house066.xml,74.02,11.48,30.97,7.53,8.53,18.05,8.76,5.83,12.52,6.43,17.87,3.61,0.0,0.26235,75.39,6887.25,8713.07,1.0485,43.87,1.0,43.87,74.02,74.02,0.0,42.13,1.0,42.13,74.02,74.02,0.0,72.46,12.14,31.07,7.53,8.99,18.3,8.76,5.67,12.43,6.43,17.87,3.57,0.0,0.26235 -house067.xml,60.26,14.72,37.07,7.53,23.58,22.18,14.12,15.05,12.65,7.79,19.7,0.58,0.0,0.29377,80.96,8373.28,9979.28,1.0364,48.51,1.0,48.51,60.26,60.26,0.0,45.74,1.0,45.74,60.26,60.26,0.0,58.28,15.94,37.25,7.53,25.54,22.68,14.12,14.57,12.5,7.79,19.7,0.54,0.0,0.29377 -house068.xml,74.49,24.08,51.49,7.53,38.56,30.810000000000002,14.45,27.91,17.4,10.92,26.97,6.49,0.0,0.25205,101.68,13360.83,13461.98,0.9761,50.09,1.0,50.09,74.49,74.49,0.0,46.99,1.0,46.99,74.49,74.49,0.0,69.03,27.68,52.08,7.53,44.33,32.29,14.45,26.52,16.98,10.92,26.97,5.55,0.0,0.25205 -house069.xml,72.91,25.32,46.68,7.53,40.57,27.63,14.17,30.08,16.67,10.52,23.07,3.77,0.0,0.27606,101.87,12519.44,12412.93,0.9901,55.93,1.0,55.93,72.91,72.91,0.0,52.68,1.0,52.68,72.91,72.91,0.0,69.19,28.93,47.26,7.53,46.35,29.06,14.17,29.87,16.6,10.52,23.07,3.78,0.0,0.27606 -house070.xml,47.38,86.86,24.63,11.78,64.39,13.83,13.09,22.73,3.09,8.99,35.8,0.47,0.0,0.20124,49.03,7947.4,17051.82,0.9507,52.0,1.0,52.0,47.38,47.38,1.0,46.09,1.0,46.09,47.38,47.38,0.0,43.1,101.96,24.23,11.78,75.85,14.38,13.1,22.13,3.04,8.99,35.8,0.44,0.0,0.20124 -house071.xml,75.41,19.67,8.69,9.86,15.690000000000001,4.96,11.46,17.740000000000002,2.19,8.07,12.67,0.39,0.0,0.19659,76.76,4731.24,5861.41,1.0516,51.5,1.0,51.5,75.41,75.41,0.0,46.54,1.0,46.54,75.41,75.41,0.0,71.86,22.35,8.57,9.86,17.85,5.04,11.46,17.66,2.16,8.07,12.67,0.39,0.0,0.19659 -house072.xml,60.86,87.4,1.17,10.46,136.95000000000002,1.73,18.75,87.08,0.94,11.49,21.11,0.6,0.0,0.22812,155.31,16055.81,10515.45,0.9831,56.05,1.0,56.05,60.86,60.86,0.0,49.09,1.0,49.09,60.86,60.86,0.0,54.76,101.56,0.99,10.46,158.97,1.66,18.77,86.44,0.94,11.49,21.11,0.58,0.0,0.22812 -house073.xml,32.61,116.91,26.41,11.78,96.21000000000001,14.84,26.82,25.12,13.11,32.48,44.5,3.05,0.0,0.16567,68.83,13612.25,20746.98,0.9533,50.27,1.0,50.27,54.27,54.27,0.0,47.44,1.0,47.44,54.27,54.27,0.0,46.48,133.53,26.08,11.78,110.06,15.41,26.85,24.93,12.93,32.48,44.5,3.05,0.0,0.16567 -house074.xml,72.45,14.0,33.43,7.53,10.24,19.53,8.68,6.28,13.41,6.54,21.4,0.82,0.0,0.24424,74.14,7243.84,9278.57,1.053,43.79,1.0,43.79,72.45,72.45,0.0,42.12,1.0,42.12,72.45,72.45,0.0,70.53,15.12,33.57,7.53,10.99,19.97,8.68,6.19,13.32,6.54,21.4,0.8,0.0,0.24424 -house075.xml,71.05,31.57,15.71,11.39,50.45,9.98,19.41,38.53,5.53,18.53,17.85,0.98,0.0,0.21678,95.14,12679.15,12849.2,1.0372,46.43,1.0,46.43,71.05,71.05,0.0,43.68,1.0,43.68,71.05,71.05,0.0,61.36,35.46,15.71,11.39,56.66,10.21,19.42,31.46,5.23,18.51,17.85,0.0,0.0,0.21678 -house076.xml,65.85,6.61,4.85,5.79,10.54,3.46,12.13,9.1,2.11,7.24,10.13,0.71,0.0,0.17942,109.91,3892.21,3349.01,1.0574,52.67,1.0,52.67,65.85,65.85,0.0,46.96,1.0,46.96,65.85,65.85,0.0,64.08,7.46,4.77,5.79,11.9,3.46,12.14,9.05,2.09,7.24,10.13,0.71,0.0,0.17942 -house077.xml,77.52,8.59,5.14,8.66,13.72,3.67,9.53,9.16,1.91,7.33,9.98,7.89,0.0,0.20678,82.33,7468.67,8478.23,1.0701,56.18,1.0,56.18,77.52,77.52,0.0,46.41,1.0,46.41,77.52,77.52,0.0,74.51,10.17,4.96,8.66,16.24,3.64,9.54,9.08,1.9,7.33,9.98,7.89,0.0,0.20678 -house078.xml,57.34,29.41,57.23,8.99,47.12,32.81,16.27,23.42,17.41,9.48,27.77,0.6,0.0,0.26781,79.07,11852.07,15183.26,0.9872,53.55,1.0,53.55,57.34,57.34,0.0,50.38,1.0,50.38,57.34,57.34,0.0,54.58,33.44,57.81,8.99,53.57,34.24,16.27,23.26,17.33,9.48,27.77,0.6,0.0,0.26781 -house079.xml,49.54,44.96,2.88,10.35,31.580000000000002,1.43,12.36,13.06,0.1,3.25,22.67,0.0,0.0,0.21664,49.6,2734.5,5675.52,0.9713,56.0,1.0,56.0,49.54,49.54,1.0,50.61,1.0,50.61,49.54,49.54,1.0,45.56,53.54,2.51,10.35,37.2,1.27,12.36,12.969999999999999,0.1,3.25,22.67,0.0,0.0,0.21664 -house080.xml,41.24,31.17,63.31,8.99,22.73,37.19,10.84,6.75,12.6,1.83,23.91,1.35,0.0,0.27981,43.04,7033.11,16794.21,0.973,46.3,1.0,46.3,41.24,41.24,1.0,44.55,1.0,44.55,41.24,41.24,1.0,38.94,36.209999999999994,64.2,8.99,26.15,39.28,10.84,6.7,12.53,1.83,23.91,1.35,0.0,0.27981 -house081.xml,65.41,5.01,4.37,5.6,4.46,2.55,6.34,2.83,1.1,5.53,8.87,0.3,0.0,0.16813,67.4,3203.99,4178.61,1.1376,42.03,1.0,42.03,65.41,65.41,0.0,40.64,1.0,40.64,65.41,65.41,0.0,65.04,5.14,4.36,5.6,4.56,2.56,6.34,2.82,1.1,5.53,8.87,0.3,0.0,0.16813 -house082.xml,62.98,34.42,68.68,10.42,55.16,39.95,18.41,39.84,21.450000000000003,9.12,30.37,5.41,0.0,0.26448,89.81,15912.64,17987.01,0.985,54.71,1.0,54.71,62.98,62.98,0.0,51.36,1.0,51.36,62.98,62.98,0.0,57.29,40.0,69.42,10.42,64.06,41.84,18.41,38.5,20.689999999999998,9.12,30.37,3.24,0.0,0.26448 -house083.xml,54.29,2.95,12.29,4.43,2.48,7.13,5.4,1.26,3.71,3.87,8.79,0.22,0.0,0.32015,56.41,2642.11,4160.92,1.1256,50.53,1.0,50.53,54.29,54.29,0.0,45.56,1.0,45.56,54.29,54.29,0.0,53.62,3.2,12.31,4.43,2.65,7.22,5.4,1.26,3.68,3.87,8.79,0.22,0.0,0.32015 -house084.xml,12.37,70.07,15.79,10.5,114.93,10.51,18.34,77.72,5.54,14.66,29.28,1.64,0.0,0.16348,129.07,12656.78,9996.01,0.981,55.4,1.0,55.4,64.84,64.84,0.0,51.12,1.0,51.12,64.84,64.84,0.0,55.65,78.37,15.75,10.5,128.19,10.51,18.34,77.35,5.46,14.66,29.28,1.64,0.0,0.16348 -house085.xml,-25.97,51.05,13.83,14.54,38.79,7.0200000000000005,16.31,30.58,0.79,2.81,24.8,0.0,0.0,0.22584,-7.42,-628.07,8515.15,0.9941,52.52,1.0,52.52,59.38,59.38,0.0,47.32,1.0,47.32,59.38,59.38,0.0,51.54,62.8,13.82,14.54,46.99,7.04,16.31,30.42,0.77,2.81,24.8,0.0,0.0,0.22584 -house086.xml,52.86,21.01,19.36,8.83,15.77,11.04,10.27,10.41,5.02,1.67,15.34,0.87,0.23,0.30361,53.53,6050.62,10842.83,1.0425,50.11,1.0,50.11,52.86,52.86,0.0,48.79,1.0,48.79,52.86,52.86,0.0,52.28,21.44,19.36,8.83,16.09,11.09,10.27,10.32,5.0,1.67,15.34,0.87,0.24,0.30361 -house087.xml,48.78,6.24,4.37,5.79,5.25,2.49,12.14,3.01,1.55,6.83,8.05,0.16,0.0,0.21128,78.1,2626.78,3102.41,1.0841,47.5,1.0,47.5,48.78,48.78,0.0,43.09,1.0,43.09,48.78,48.78,0.0,47.38,7.03,4.32,5.79,5.82,2.51,12.15,2.97,1.54,6.83,8.05,0.16,0.0,0.21128 -house088.xml,55.85,54.49,23.22,11.39,86.99,14.21,19.76,48.38,6.07,15.74,22.03,0.56,0.0,0.27244,98.79,13020.79,13280.44,0.9925,51.22,1.0,51.22,55.85,55.85,0.0,48.11,1.0,48.11,55.85,55.85,0.0,51.57,62.62,23.29,11.39,99.98,14.73,19.78,47.39,5.96,15.74,22.03,0.52,0.0,0.27244 +XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b +house001.xml,62.67,31.972,21.368,34.0977,0.21372,1.0795,0.9705,1.0179,1.0665,1.0,19.8646,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2473,0.8521,1.2821,0.2625,1.6393,5.5785,1.1286,4.0048,0.0,0.0,8.9126,1.198,7.7047,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5820.02,7645.45,55.81,1.0,55.81,62.67,62.67,0.0,46.55,1.0,46.55,62.67,62.67,0.0,59.89,33.338,21.2937,35.5546,0.21372,1.0795,0.9705,1.0179,1.0665,1.0,19.8366,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8027,0.2394,0.8512,1.2821,0.2625,1.6393,5.5499,1.0876,4.0011,0.0,0.0,8.8645,1.193,7.7055,9.77,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house002.xml,70.23,115.267,79.6078,113.3508,0.1847,0.9834,1.0,1.0,0.9834,1.0,69.178,0.0,0.0,52.28,21.46,9.53,42.2,12.3,10.55,30.8,1.19,0.0,0.5491,0.4579,0.982,0.4432,0.2625,1.087,34.0972,11.1707,8.5309,0.0,0.0,27.5252,6.4041,9.443,27.53,6.4,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.11,12588.72,18002.2,50.87,1.0,50.87,70.23,70.23,0.0,48.4,1.0,48.4,70.23,70.23,0.0,64.8,123.639,78.7878,121.5836,0.1847,0.9834,1.0,1.0,0.9834,1.0,68.711,0.0,0.0,60.6,21.55,9.53,48.63,12.84,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.863,10.6415,8.5293,0.0,0.0,27.1762,6.3401,9.443,27.18,6.34,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 +house003.xml,62.9,88.772,55.4224,88.1114,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.606,0.0,0.0,28.16,21.79,8.82,31.37,12.44,16.03,29.0,1.0,0.0,1.4118,0.4598,0.9324,1.7253,0.2625,1.6949,18.237000000000002,12.0957,1.9777,0.0,0.0,18.8789,6.9071,3.5952,19.68,6.91,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,73.99,9467.03,12890.49,49.12,1.0,49.12,62.9,62.9,0.0,47.17,1.0,47.17,62.9,62.9,0.0,59.42,92.28,54.4256,91.5933,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.2498,0.0,0.0,31.91,21.59,8.82,35.05,12.89,16.04,29.0,0.97,0.0,1.4139,0.4398,0.9318,1.7253,0.2625,1.6949,17.9338,11.4493,1.9765,0.0,0.0,18.5105,6.8341,3.5952,19.29,6.83,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 +house004.xml,60.97,90.446,57.5881,94.4506,0.3198,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.75,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1652,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.53,4964.51,7146.14,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.931,57.7752,104.3555,0.31979,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.38,0.5657,4.8635,0.0,0.0,30.6663,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 +house005.xml,60.31,28.25,18.363,30.4485,0.20297,1.0903,0.972,1.017,1.0778,1.0,16.793,0.0,0.0,5.0,4.04,5.78,4.32,2.29,12.12,12.72,0.72,0.0,0.5123,0.4624,0.8089,0.4432,0.2625,1.6949,1.5755,2.8814,0.8717,2.3849,0.0366,1.363,1.636,1.8264,1.36,1.64,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.34,2693.34,2998.32,49.99,1.0,49.99,60.31,60.31,0.0,44.76,1.0,44.76,60.31,60.31,0.0,58.42,29.079,18.3087,31.342,0.20297,1.0903,0.972,1.017,1.0778,1.0,16.7722,0.0,0.0,5.91,3.96,5.78,4.97,2.3,12.13,12.71,0.72,0.0,0.5274,0.4513,0.8079,0.4432,0.2625,1.6949,1.6122,2.7967,0.8706,2.3805,0.0366,1.355,1.627,1.8264,1.36,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 +house006.xml,71.74,92.124,67.3317,93.8541,0.23947,1.0022,1.0165,1.0,1.0188,1.0,57.43,0.0,0.0,32.58,20.62,10.53,24.5,11.93,11.82,27.5,0.91,0.0,1.1782,0.9073,0.9796,0.8864,0.525,1.0989,22.3326,12.8463,9.4717,0.0,0.0,16.8042,7.4350000000000005,10.6255,16.799999999999997,7.44,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.98,10225.16,13751.89,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.106,66.7521,95.8733,0.23947,1.0022,1.0165,1.0,1.0188,1.0,57.275,0.0,0.0,34.74,20.48,10.53,26.18,12.18,11.82,27.49,0.85,0.0,1.1766,0.8837999999999999,0.9796,0.8864,0.525,1.0989,22.1565,12.4419,9.4726,0.0,0.0,16.693199999999997,7.3919999999999995,10.6265,16.69,7.4,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 +house007.xml,76.93,46.881,38.1167,49.544,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,15.98,4.62,8.84,13.67,2.6,9.87,17.03,0.41,0.0,0.518,0.4673,0.9739,0.4432,0.2625,1.087,13.3149,1.0857,7.592,0.0,0.0,11.3941,0.61,8.473,11.39,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.19,8954.48,10699.46,57.1,1.0,57.1,76.93,76.93,0.0,48.03,1.0,48.03,76.93,76.93,0.0,73.89,48.983,38.2503,51.7654,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,18.29,4.49,8.84,15.46,2.58,9.87,17.02,0.35,0.0,0.5242,0.4566,0.9736,0.4432,0.2625,1.087,13.4757,1.0608,7.5897,0.0,0.0,11.3941,0.61,8.473,11.39,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 +house008.xml,62.86,161.244,98.5588,156.7856,0.20057,0.9685,1.0138,0.9903,0.9724,1.0,79.8742,0.0,0.0,97.89,10.48,13.21,155.98,6.66,22.24,38.43,1.24,0.0,0.8046,0.4128,1.0241,1.2821,0.2625,1.7241,47.6561,5.6479,7.7118,0.0,0.0,75.9384,3.592,12.9828,83.83,3.59,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.57,24536.13,34299.53,51.56,1.0,51.56,62.86,62.86,0.0,46.66,1.0,46.66,62.86,62.86,0.0,57.41,175.771,98.1128,170.9109,0.20057,0.9685,1.0138,0.9903,0.9724,1.0,79.7356,0.0,0.0,112.91,10.13,13.21,179.91,6.74,22.26,38.43,1.1,0.0,0.8046,0.3947,1.0235,1.2821,0.2625,1.7241,47.502,5.3615,7.7073,0.0,0.0,75.6929,3.566,12.9828,83.55,3.57,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 +house009.xml,62.6,99.676,63.9195,102.1122,0.28592,1.0046,1.0197,1.0,1.0244,1.0,47.5904,0.0,0.0,20.06,41.91,8.98,32.13,24.96,16.37,27.85,0.88,0.0,0.8004,0.4408,0.9454,1.2821,0.2625,1.7241,11.1098,22.6772,6.2935,0.0,0.0,17.7963,13.5061,11.4776,17.98,13.51,12.34,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.94,10152.57,11531.98,48.9,1.0,48.9,62.6,62.6,0.0,45.74,1.0,45.74,62.6,62.6,0.0,59.55,102.562,62.5688,105.0688,0.28592,1.0046,1.0197,1.0,1.0244,1.0,47.1376,0.0,0.0,22.61,42.32,8.98,36.22,25.98,16.37,27.84,0.82,0.0,0.8004,0.4277,0.9454,1.2821,0.2625,1.7241,10.7504,21.7349,6.2935,0.0,0.0,17.2203,13.3421,11.4776,17.4,13.34,12.34,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house010.xml,63.21,257.379,147.409,233.2079,0.28128,0.9061,1.0,1.0,0.9061,0.9999,104.6454,0.006,0.0,53.03,138.18,7.1,84.85,76.46,13.56,59.06,0.0,0.0,2.4049,1.4224,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.0295,75.26429999999999,1.7482,0.0,0.0,40.042100000000005,41.6464,3.3382,43.65,41.65,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.16,17425.41,20000.27,54.46,1.0,54.46,63.21,63.21,0.0,49.08,1.0,49.08,63.21,63.21,0.0,60.55,267.2143,146.6056,242.1195,0.28128,0.9061,1.0,1.0,0.9061,0.9999,104.2208,0.006,0.0,59.64,141.41,7.1,95.42,78.39,13.56,59.06,0.0,0.0,2.4049,1.4199,1.7748,3.8463000000000003,0.7875000000000001,3.3898,24.7055,74.7852,1.7478,0.0,0.0,39.522999999999996,41.4544,3.3382,43.09,41.45,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 +house011.xml,67.06,40.346,28.8645,43.0428,0.26093,1.0631,0.982,1.0219,1.0668,1.0,27.3202,0.0,0.0,8.9,6.51,7.88,14.24,4.49,8.89,16.77,0.29,0.0,0.8012,0.3804,0.9632,1.2821,0.2625,1.087,6.3975,2.4806,7.2764,0.0,0.0,10.2376,1.712,8.211,11.29,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,93.25,4126.44,4148.08,56.81,1.0,56.81,67.06,67.06,0.0,53.21,1.0,53.21,67.06,67.06,0.0,64.86,41.555,28.7539,44.3326,0.26093,1.0631,0.982,1.0219,1.0668,1.0,27.2752,0.0,0.0,10.33,6.39,7.88,16.53,4.5,8.89,16.77,0.2,0.0,0.8012,0.3727,0.9629,1.2821,0.2625,1.087,6.3544,2.4164,7.2731,0.0,0.0,10.1678,1.702,8.21,11.21,1.7,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house012.xml,49.98,70.802,37.0256,74.078,0.31657,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,44.14,1.0,44.14,49.98,49.98,0.0,46.06,76.71,36.9649,80.2594,0.31657,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.4553,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house013.xml,59.02,44.135,27.466,46.5397,0.16878,1.0398,1.0,1.0141,1.0545,1.0,24.993,0.0,0.0,12.88,1.84,10.35,9.36,0.87,11.96,18.45,0.61,0.0,0.6098,0.5556,0.9616,0.4432,0.2625,1.1111,9.7201,0.383,2.9779,0.0,0.0,7.0651,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.51,1719.33,2835.28,52.76,1.0,52.76,59.02,59.02,0.0,47.39,1.0,47.39,59.02,59.02,0.0,57.68,45.035,27.3935,47.4887,0.16878,1.0398,1.0,1.0141,1.0545,1.0,24.878,0.0,0.0,13.89,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5539,0.9616,0.4432,0.2625,1.1111,9.6581,0.384,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 +house014.xml,55.27,184.235,100.4595,181.7657,0.25794,0.9366,1.0534,1.0,0.9866,1.0,83.374,0.0,0.0,89.78,28.38,15.5,66.25,15.43,17.19,47.42,3.17,0.0,1.2,0.9649,1.0132,0.8864,0.525,1.1236,43.579299999999996,12.956600000000002,3.4267,0.0,0.0,32.1573,7.045999999999999,3.7999,32.16,7.050000000000001,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9573.41,17330.32,48.39,1.0,48.39,55.27,55.27,0.0,46.02,1.0,46.02,55.27,55.27,0.0,50.66,199.257,99.5982,196.5864,0.25794,0.9366,1.0534,1.0,0.9866,1.0,83.191,0.0,0.0,105.25,27.950000000000003,15.5,77.55000000000001,16.009999999999998,17.19,47.41,3.17,0.0,1.2027999999999999,0.9156,1.0132,0.8864,0.525,1.1236,43.4337,12.241999999999999,3.4265,0.0,0.0,32.0043,7.013999999999999,3.7999,32.0,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 +house015.xml,16.8,37.855,21.3859,42.9533,0.27911,1.1531,0.9615,1.0235,1.1347,0.3375,17.132,11.35,0.0,0.24,22.02,3.31,0.29,11.92,5.92,12.0,0.29,0.0,0.3616,0.4852,0.6894,0.4432,0.2625,1.2346,0.1778,10.5033,0.9108,0.0,0.0,0.218,5.6831,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.61,879.81,3428.92,49.73,1.0,49.73,49.79,49.79,1.0,47.69,1.0,47.69,49.79,49.79,0.0,47.21,37.917,21.3812,43.0237,0.27911,1.1531,0.9615,1.0235,1.1347,0.95,17.132,0.8566,0.0,0.26,22.07,3.31,0.3,11.95,5.92,12.0,0.29,0.0,0.3745,0.4847,0.6894,0.4432,0.2625,1.2346,0.1842,10.4922,0.9108,0.0,0.0,0.218,5.6831,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 +house016.xml,51.61,104.547,56.2246,108.944,0.27656,1.0184,1.0,1.0233,1.0421,1.0,39.2222,0.0,0.0,0.68,72.27,5.6,0.59,38.99,11.56,25.13,0.87,0.0,0.5134,0.4866,0.8215,0.4432,0.2625,1.6949,0.3127,34.2508,2.9331,0.0,0.0,0.27,18.4782,6.0515,0.27,18.48,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.32,6038.74,8013.37,51.14,1.0,51.14,51.61,51.61,0.0,48.95,1.0,48.95,51.61,51.61,0.0,51.28,104.821,56.0145,109.2295,0.27656,1.0184,1.0,1.0233,1.0421,1.0,39.1252,0.0,0.0,0.74,72.5,5.6,0.63,39.17,11.56,25.13,0.85,0.0,0.526,0.486,0.8211,0.4432,0.2625,1.6949,0.3121,34.0456,2.9318,0.0,0.0,0.263,18.3922,6.0515,0.26,18.39,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 +house017.xml,69.35,58.647,42.6049,61.4354,0.20238,1.0301,1.0,1.017,1.0475,1.0,37.1638,0.0,0.0,21.08,5.69,10.94,33.61,3.8,18.88,20.27,0.67,0.0,0.8043,0.3933,0.982,1.2821,0.2625,1.6949,22.0225,2.0628,2.3736,0.0,0.0,35.1052,1.377,4.0967,38.6,1.38,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,179.95,8406.4,4459.61,52.54,1.0,52.54,69.35,69.35,0.0,47.64,1.0,47.64,69.35,69.35,0.0,65.04,61.884,42.1634,64.8264,0.20238,1.0301,1.0,1.017,1.0475,1.0,36.8498,0.0,0.0,24.56,5.49,10.94,39.14,3.71,18.9,20.26,0.64,0.0,0.8046,0.3886,0.9811,1.2821,0.2625,1.6949,21.6501,2.019,2.3713,0.0,0.0,34.4976,1.364,4.0967,37.93,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 +house018.xml,31.37,276.4741,144.2558,265.0084,0.22629,0.9122,1.0625,0.9891,0.9585,0.5764,115.0084,48.722,0.0,152.21,32.56,17.32,242.4,21.23,27.24,72.71,1.67,0.0,2.416,1.2029,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.7886,14.4907,5.9486,0.0,0.0,119.0968,9.457,9.3478,130.58,9.46,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.57,24784.11,25968.03,51.25,1.0,51.25,54.43,54.43,0.0,47.28,1.0,47.28,54.43,54.43,0.0,45.69,297.5872,143.245,285.246,0.22629,0.9122,1.0625,0.9891,0.9585,0.9099,114.6296,10.3251,0.0,174.38,32.05,17.32,277.58,21.66,27.24,72.7,1.12,0.0,2.4171,1.1622,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.4192,13.852599999999999,5.9462,0.0,0.0,118.4519,9.366999999999999,9.3478,129.85999999999999,9.370000000000001,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 +house019.xml,63.56,163.996,101.7891,160.1462,0.19183,0.9638,1.0132,1.0,0.9765,1.0,81.2364,0.0,0.0,98.88,10.33,13.21,157.56,6.87,22.25,41.58,0.0,0.0,0.8046,0.3946,1.0241,1.2821,0.2625,1.7241,57.1556,3.107,7.3355,0.0,0.0,91.0765,2.067,12.3498,100.48,2.07,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,76.05,25761.06,34689.55,52.0,1.0,52.0,63.56,63.56,0.0,46.8,1.0,46.8,63.56,63.56,0.0,57.93,179.482,101.5343,175.2687,0.19183,0.9638,1.0132,1.0,0.9765,1.0,81.0874,0.0,0.0,114.72,9.98,13.21,182.8,6.74,22.26,41.57,0.0,0.0,0.8046,0.3888,1.0235,1.2821,0.2625,1.7241,56.966,3.0421,7.3322,0.0,0.0,90.7728,2.054,12.3515,100.14,2.05,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 +house020.xml,39.66,160.6915,130.0935,157.2596,0.26005,0.9408,1.0179,1.0219,0.9786,0.4794,108.1568,56.311,0.0,90.81,13.25,13.07,105.32000000000001,7.57,14.11,43.46,0.11,0.0,1.951,2.0204,1.0069,2.1364,1.05,1.087,72.0972,8.9743,12.112,0.0,0.0,86.9367,5.143,13.075,93.78,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,113.98,13142.48,11782.15,56.15,1.0,56.15,82.73,82.73,0.0,51.97,1.0,51.97,82.73,82.73,0.0,71.77,172.9987,130.4883,169.304,0.26005,0.9408,1.0179,1.0219,0.9786,0.9312,108.1568,7.4452,0.0,103.48,12.89,13.07,119.44,7.409999999999999,14.11,43.45,0.11,0.0,1.9662000000000002,1.9952,1.0067,2.1364,1.05,1.087,72.5498,8.9191,12.1094,0.0,0.0,86.9367,5.143,13.075,93.78,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 +house021.xml,59.6,107.633,67.3101,112.9341,0.27059,1.0115,1.0373,1.0,1.0493,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8045,0.3864,1.0544,1.2821,0.2625,1.6949,28.9014,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.52,23392.92,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.174,66.9522,120.8465,0.27059,1.0115,1.0373,1.0,1.0493,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6432,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 +house022.xml,54.56,81.06,45.9567,84.2362,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.5206,0.0,0.0,0.53,53.74,4.49,0.5,29.47,5.69,21.32,0.98,0.0,0.4736,0.4787,0.8757,0.4432,0.2625,1.1111,0.718,25.47,1.8297,0.0,0.0,0.672,13.9681,2.3215,0.67,13.97,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.08,4115.76,6380.21,50.92,1.0,50.92,54.56,54.56,0.0,48.59,1.0,48.59,54.56,54.56,0.0,54.15,81.344,45.7724,84.5313,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.4236,0.0,0.0,0.6,53.96,4.49,0.54,29.64,5.69,21.32,0.98,0.0,0.4899,0.478,0.8757,0.4432,0.2625,1.1111,0.7295,25.2731,1.8297,0.0,0.0,0.66,13.8821,2.3215,0.66,13.88,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 +house023.xml,72.64,87.952,64.2593,88.4583,0.26061,1.0022,0.982,1.0219,1.0058,1.0,51.136,0.0,0.0,16.78,39.82,6.02,12.25,22.65,7.25,24.51,0.83,0.0,0.6071,0.4616,0.9223,0.4432,0.2625,1.1111,10.6741,25.7985,4.9497,0.0,0.0,7.7931,14.6731,5.9626,7.79,14.67,5.83,18.81,4.02,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.45,7664.65,10235.93,45.83,1.0,45.83,72.64,72.64,0.0,44.01,1.0,44.01,72.64,72.64,0.0,70.38,89.172,63.1163,89.6853,0.26061,1.0022,0.982,1.0219,1.0058,1.0,50.532,0.0,0.0,17.87,39.99,6.02,12.99,23.1,7.25,24.51,0.79,0.0,0.6101,0.4545,0.9223,0.4432,0.2625,1.1111,10.4553,25.1114,4.9497,0.0,0.0,7.5961,14.5041,5.9626,7.6,14.5,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house024.xml,68.97,107.397,74.7703,108.4154,0.27108,0.9909,1.0187,1.0,1.0095,1.0,56.029,0.0,0.0,22.23,45.17,8.98,35.61,26.99,16.04,30.27,0.76,0.0,0.8002,0.4394,0.9483,1.2821,0.2625,1.6949,15.2015,24.5165,6.6383,0.0,0.0,24.3544,14.6481,11.8653,24.61,14.65,12.51,23.87,4.54,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.53,11942.64,12383.8,53.04,1.0,53.04,68.97,68.97,0.0,49.93,1.0,49.93,68.97,68.97,0.0,64.76,110.863,72.4787,111.9143,0.27108,0.9909,1.0187,1.0,1.0095,1.0,54.8552,0.0,0.0,25.36,45.66,8.98,40.63,28.21,16.04,30.27,0.6,0.0,0.8002,0.4249,0.9483,1.2821,0.2625,1.6949,14.7272,23.3232,6.6383,0.0,0.0,23.5944,14.4101,11.8653,23.84,14.41,12.51,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house025.xml,9.49,195.071,105.1155,186.9047,0.1577,0.9551,1.0109,0.9924,0.9581,0.1688,84.663,70.37,0.0,108.4,19.72,12.53,80.05000000000001,10.43,13.85,51.62,2.81,0.0,1.2003,0.9924,1.0048,0.8864,0.525,1.1111,53.3482,9.9794,2.4209,0.0,0.0,39.3994,5.28,2.6772,39.4,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.64,2936.67,13537.89,51.02,1.0,51.02,56.24,56.24,0.0,46.01,1.0,46.01,56.24,56.24,0.0,49.57,209.171,104.7136,200.4145,0.1577,0.9551,1.0109,0.9924,0.9581,0.9488,84.172,4.3088,0.0,122.4,19.82,12.53,89.8,10.5,13.86,51.62,2.81,0.0,1.2083,0.991,1.0045,0.8864,0.525,1.1111,53.2221,9.7043,2.4213,0.0,0.0,39.047399999999996,5.1419999999999995,2.6782,39.05,5.140000000000001,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 +house026.xml,65.29,72.692,49.5747,75.9344,0.21414,1.0262,1.0,1.018,1.0446,1.0,37.9924,0.0,0.0,12.09,29.63,7.52,19.37,17.88,14.1,22.79,0.66,0.0,0.8003,0.4351,1.8086,1.2821,0.2625,3.3898,6.1847,16.8638,7.0712,0.0,0.0,9.9075,10.1751,13.2534,10.92,10.18,14.24,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.71,8174.33,8532.29,47.28,1.0,47.28,65.29,65.29,0.0,44.52,1.0,44.52,65.29,65.29,0.0,63.05,74.174,48.8501,77.4825,0.21414,1.0262,1.0,1.018,1.0446,1.0,37.7436,0.0,0.0,13.43,29.83,7.52,21.51,18.41,14.1,22.78,0.62,0.0,0.8003,0.4255,1.8084,1.2821,0.2625,3.3898,6.0002,16.3597,7.0702,0.0,0.0,9.6118,10.0941,13.2534,10.6,10.09,14.24,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 +house027.xml,66.94,88.031,61.1584,91.3605,0.30313,1.012,1.0,1.0255,1.0378,1.0,45.7484,0.0,0.0,16.18,37.81,7.52,25.91,22.52,14.42,25.76,0.78,0.0,0.8004,0.4407,0.8987,1.2821,0.2625,1.7241,10.5844,21.0666,6.0924,0.0,0.0,16.9541,12.5491,11.688,17.13,12.55,11.69,19.66,3.75,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,90.95,9658.0,10232.04,51.99,1.0,51.99,66.94,66.94,0.0,48.91,1.0,48.91,66.94,66.94,0.0,64.4,89.21,59.6255,92.5841,0.30313,1.012,1.0,1.0255,1.0378,1.0,44.8458,0.0,0.0,17.26,37.96,7.52,27.65,22.97,14.42,25.76,0.71,0.0,0.8004,0.434,0.8987,1.2821,0.2625,1.7241,10.1297,20.3485,6.0924,0.0,0.0,16.2247,12.3091,11.688,16.4,12.31,11.69,19.66,3.39,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 +house028.xml,66.27,114.634,77.385,116.7731,0.28673,0.9799,1.0396,1.0,1.0187,1.0,62.182,0.0,0.0,23.18,48.38,10.4,16.74,28.16,11.65,31.53,1.14,0.0,0.6137,0.451,0.9925,0.4432,0.2625,1.1111,13.7952,29.0351,8.0136,0.0,0.0,9.9641,16.9012,8.971,9.96,16.9,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.35,9367.05,13454.01,44.76,1.0,44.76,66.27,66.27,0.0,42.92,1.0,42.92,66.27,66.27,0.0,62.89,118.383,75.8363,120.592,0.28673,0.9799,1.0396,1.0,1.0187,1.0,61.632,0.0,0.0,26.49,48.92,10.4,18.95,29.35,11.65,31.52,1.05,0.0,0.6196,0.4376,0.9925,0.4432,0.2625,1.1111,13.6185,27.7242,8.0136,0.0,0.0,9.7431,16.6331,8.971,9.74,16.63,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house029.xml,61.75,112.579,69.5147,112.5719,0.25561,0.9826,1.0176,1.0,0.9999,1.0,53.0776,0.0,0.0,22.82,47.540000000000006,8.98,36.55,28.81,16.04,32.24,1.0,0.0,1.6003,0.8656999999999999,1.8964,2.5642,0.525,3.3898,14.448699999999999,24.023600000000002,3.7594,0.0,0.0,23.151,14.5532,6.7198,23.4,14.55,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.8,11184.12,13035.19,49.51,1.0,49.51,61.75,61.75,0.0,46.38,1.0,46.38,61.75,61.75,0.0,58.27,116.429,67.8362,116.4217,0.25561,0.9826,1.0176,1.0,0.9999,1.0,52.4834,0.0,0.0,26.22,48.099999999999994,8.98,42.01,30.14,16.04,32.24,0.9,0.0,1.6003,0.8369,1.8962,2.5642,0.525,3.3898,13.9537,22.9155,3.7592,0.0,0.0,22.3574,14.3592,6.7198,22.59,14.36,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 +house030.xml,60.18,135.662,81.8528,136.0146,0.2944,0.9635,1.0406,1.0,1.0026,1.0,61.6752,0.0,0.0,29.1,57.83,10.4,46.629999999999995,34.83,17.92,37.11,1.21,0.0,1.6004,0.8689,1.9686,2.5642,0.525,3.3898,18.4107,32.0944,2.6776,0.0,0.0,29.4974,19.3552,4.6108,29.81,19.35,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.77,13111.86,15612.29,50.34,1.0,50.34,60.18,60.18,0.0,47.0,1.0,47.0,60.18,60.18,0.0,56.56,140.354,79.592,140.7188,0.2944,0.9635,1.0406,1.0,1.0026,1.0,60.8784,0.0,0.0,33.25,58.510000000000005,10.4,53.269999999999996,36.47,17.92,37.11,1.08,0.0,1.6004,0.8399000000000001,1.9686,2.5642,0.525,3.3898,17.7738,30.559600000000003,2.6776,0.0,0.0,28.4762,19.0672,4.6108,28.78,19.07,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 +house031.xml,55.7,208.0281,116.6199,209.3736,-0.03297,1.0094,0.9955,1.0016,1.0065,1.0,94.163,0.0,0.0,122.38,19.91,14.53,89.77,10.53,17.32,50.05,1.16,0.0,2.4167,1.988,1.0353,1.7728,1.05,1.2346,60.1884,13.9424,3.186,0.0,0.0,44.1514,7.366,3.7993,44.14,7.38,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8084.35,14528.15,49.49,1.0,49.49,55.7,55.7,0.0,44.76,1.0,44.76,55.7,55.7,0.0,51.78,223.019,116.2216,224.4615,-0.03297,1.0094,0.9955,1.0016,1.0065,1.0,93.706,0.0,0.0,137.31,19.98,14.53,100.16,10.58,17.33,50.04,1.16,0.0,2.4321,1.9839,1.035,1.7728,1.05,1.2346,60.1121,13.6235,3.1861,0.0,0.0,43.8464,7.212,3.8004,43.849999999999994,7.22,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 +house032.xml,70.9,126.088,91.0522,128.4227,0.26786,0.978,1.0185,1.0225,1.0185,1.0,67.0224,0.0,0.0,26.43,56.61,8.98,42.31,33.650000000000006,16.32,33.12,0.96,0.0,1.6019999999999999,0.8779,0.9483,2.5642,0.525,1.7241,18.128,34.1864,7.1818,0.0,0.0,29.022399999999998,20.3232,13.0577,29.33,20.32,13.06,25.94,5.62,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.39,15479.67,14420.56,54.66,1.0,54.66,70.9,70.9,0.0,51.34,1.0,51.34,70.9,70.9,0.0,67.33,128.12,87.8669,130.4923,0.26786,0.978,1.0185,1.0225,1.0185,1.0,65.0334,0.0,0.0,28.33,56.870000000000005,8.98,45.36,34.42,16.32,33.12,0.82,0.0,1.6021,0.8623000000000001,0.9482,2.5642,0.525,1.7241,17.2773,32.8303,7.1803,0.0,0.0,27.6588,19.8692,13.0557,27.950000000000003,19.869999999999997,13.06,25.94,4.64,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house033.xml,64.17,151.368,94.1718,146.755,0.22298,0.9548,1.0154,1.0,0.9695,1.0,78.1458,0.0,0.0,69.79,28.19,11.38,111.36,17.630000000000003,19.4,42.0,0.0,0.0,1.6073,0.8362,0.9947,2.5642,0.525,1.6949,48.3344,11.1167,3.4067,0.0,0.0,77.11699999999999,6.946,5.8048,85.27000000000001,6.95,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,90.89,21007.8,23841.19,52.58,1.0,52.58,64.17,64.17,0.0,49.36,1.0,49.36,64.17,64.17,0.0,59.22,162.881,93.5146,157.9171,0.22298,0.9548,1.0154,1.0,0.9695,1.0,77.9596,0.0,0.0,81.27,28.24,11.38,129.67,18.310000000000002,19.41,41.99,0.0,0.0,1.6072,0.8069999999999999,0.994,2.5642,0.525,1.6949,48.1556,10.6415,3.4044,0.0,0.0,76.8349,6.891,5.8048,84.96000000000001,6.890000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 +house034.xml,62.02,60.583,38.6513,62.3207,0.18765,1.0128,1.0,1.0157,1.0287,1.0,33.4918,0.0,0.0,19.58,4.48,9.97,31.34,3.09,18.48,24.53,2.03,0.0,0.8008,0.381,0.9149,1.2821,0.2625,1.6949,9.3149,2.9152,4.2021,0.0,0.0,14.913,2.009,7.7844,16.44,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.45,5829.24,3668.85,55.61,1.0,55.61,62.02,62.02,0.0,50.23,1.0,50.23,62.02,62.02,0.0,60.49,61.944,38.5465,63.7207,0.18765,1.0128,1.0,1.0157,1.0287,1.0,33.4346,0.0,0.0,21.05,4.37,9.97,33.7,3.04,18.48,24.53,2.03,0.0,0.8008,0.3776,0.9149,1.2821,0.2625,1.6949,9.2495,2.8769,4.2021,0.0,0.0,14.8078,2.0,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house035.xml,70.11,103.364,72.1908,102.9729,0.19292,0.9804,1.0,1.0162,0.9962,1.0,61.001,0.0,0.0,52.39,6.55,11.06,83.48,4.7,12.38,32.3,1.06,0.0,0.8046,0.3661,0.9925,1.2821,0.2625,1.1111,39.6115,2.9817,9.1447,0.0,0.0,63.1204,2.138,10.2376,68.43,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.28,18229.84,22794.26,55.9,1.0,55.9,70.11,70.11,0.0,49.5,1.0,49.5,70.11,70.11,0.0,64.67,110.236,71.0196,109.8189,0.19292,0.9804,1.0,1.0162,0.9962,1.0,60.188,0.0,0.0,59.6,6.31,11.06,94.97,4.61,12.39,32.3,0.97,0.0,0.8046,0.3593,0.9922,1.2821,0.2625,1.1111,38.5611,2.9126,9.1408,0.0,0.0,61.4462,2.128,10.2365,66.61,2.13,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house036.xml,68.18,113.99,76.214,111.727,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.905,0.035,0.0,61.66,8.83,8.65,98.26,5.93,15.94,33.62,1.24,0.0,0.8044,0.3911,0.9197,1.2821,0.2625,1.6949,38.8911,4.847,2.3779,0.0,0.0,61.981,3.254,4.3819,68.15,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.33,18848.36,24240.36,55.48,1.0,55.48,68.21,68.21,0.0,49.86,1.0,49.86,68.21,68.21,0.0,63.29,121.857,75.6338,119.4378,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.485,0.035,0.0,69.77,8.62,8.65,111.19,5.8,15.96,33.61,1.21,0.0,0.8045,0.3899,0.9191,1.2821,0.2625,1.6949,38.4675,4.7402,2.3761,0.0,0.0,61.3052,3.192,4.3819,67.4,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 +house037.xml,67.03,113.264,76.7388,114.4854,0.19359,0.9975,1.0134,1.0,1.0108,1.0,64.809,0.0,0.0,65.19,6.71,13.21,103.96,4.85,14.55,27.32,0.84,0.0,0.8039,0.3629,1.0094,1.2821,0.2625,1.1111,41.1071,3.9738,10.1998,0.0,0.0,65.5566,2.875,11.2281,71.07,2.88,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.28,19279.43,24366.03,52.89,1.0,52.89,67.03,67.03,0.0,47.96,1.0,47.96,67.03,67.03,0.0,60.87,122.6,75.4307,123.922,0.19359,0.9975,1.0134,1.0,1.0108,1.0,63.9068,0.0,0.0,74.86,6.49,13.21,119.28,4.82,14.55,27.32,0.73,0.0,0.8046,0.3533,1.0091,1.2821,0.2625,1.1111,40.0171,3.8136,10.197,0.0,0.0,63.7661,2.834,11.2281,69.13,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house038.xml,65.16,130.352,82.595,126.7642,0.26729,0.9549,1.0184,1.0,0.9725,1.0,62.9464,0.0,0.0,39.57,39.980000000000004,9.92,35.14,22.46,17.56,39.59,1.29,0.0,1.8868,0.9345000000000001,0.9569,2.1685,0.525,1.6949,27.552400000000002,21.529,5.0676,0.0,0.0,24.7247,12.094100000000001,8.9761,24.83,12.100000000000001,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14042.28,19637.82,47.37,1.0,47.37,65.16,65.16,0.0,45.3,1.0,45.3,65.16,65.16,0.0,61.99,133.927,80.7367,130.2408,0.26729,0.9549,1.0184,1.0,0.9725,1.0,62.0528,0.0,0.0,43.4,39.88,9.92,38.13,22.990000000000002,17.57,39.59,1.14,0.0,1.8883,0.9105000000000001,0.9568,2.1685,0.525,1.6949,26.674400000000002,20.649,5.0673,0.0,0.0,24.0051,11.906099999999999,8.9761,24.1,11.899999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house039.xml,50.5,157.861,139.3403,157.4619,0.09402,0.9784,1.0195,1.0,0.9975,0.5707,103.2286,44.319,0.0,73.75,20.45,16.5,117.62,13.350000000000001,29.68,47.17,0.0,0.0,2.4121,1.1928,1.0486,3.8463000000000003,0.7875000000000001,1.8868,78.2297,10.0108,15.1278,0.0,0.0,124.7819,6.527,27.2203,127.95,6.52,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,207.25,23085.08,11167.12,54.26,1.0,54.26,88.49,88.49,0.0,49.73,1.0,49.73,88.49,88.49,0.0,73.19,172.184,138.833,171.7487,0.09402,0.9784,1.0195,1.0,0.9975,0.9054,102.8722,9.7324,0.0,88.05,20.47,16.5,140.41,13.36,29.69,47.16,0.0,0.0,2.4126,1.1935,1.0486,3.8463000000000003,0.7875000000000001,1.8868,77.9178,9.818,15.1273,0.0,0.0,124.24249999999999,6.4030000000000005,27.2203,127.39999999999999,6.4,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 +house040.xml,63.7,195.693,119.2781,187.2378,0.18489,0.9568,1.0,1.0,0.9568,1.0,92.5418,0.0,0.0,125.3,12.49,11.06,199.67,8.01,19.45,44.92,1.91,0.0,0.8046,0.4096,0.9804,1.2821,0.2625,1.7241,63.6821,14.1094,7.1827,0.0,0.0,101.4752,9.0441,12.6309,112.21,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.84,29247.8,40845.03,52.87,1.0,52.87,63.7,63.7,0.0,49.74,1.0,49.74,63.7,63.7,0.0,58.84,211.231,118.9239,202.1045,0.18489,0.9568,1.0,1.0,0.9568,1.0,92.2726,0.0,0.0,141.19,12.15,11.06,224.97,7.77,19.46,44.92,1.91,0.0,0.8046,0.4108,0.9799,1.2821,0.2625,1.7241,63.4612,13.9803,7.1795,0.0,0.0,101.1234,8.9341,12.6317,111.82,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house041.xml,83.68,72.738,62.3049,74.4594,0.13117,1.0035,1.0091,1.011,1.0237,1.0,50.4792,0.0,0.0,25.92,8.19,12.53,41.33,5.19,20.93,26.11,0.0,0.0,0.8039,0.4141,1.0143,1.2821,0.2625,1.6949,20.4199,6.0879,11.5781,0.0,0.0,32.5639,3.86,19.3465,35.11,3.86,20.4,23.34,0.88,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,190.86,10461.47,5354.42,52.96,1.0,52.96,83.68,83.68,0.0,46.88,1.0,46.88,83.68,83.68,0.0,74.72,75.378,57.6537,77.1619,0.13117,1.0035,1.0091,1.011,1.0237,1.0,46.9652,0.0,0.0,28.64,8.11,12.53,45.66,5.16,20.94,26.11,0.0,0.0,0.8041,0.4127,1.014,1.2821,0.2625,1.6949,16.641,6.0979,11.5658,0.0,0.0,26.5335,3.879,19.3332,28.6,3.88,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house042.xml,90.07,114.928,103.2686,114.6487,0.21957,0.9827,1.0152,1.0,0.9976,1.0,77.7858,0.0,0.0,50.29,21.03,11.38,80.27,12.92,19.73,32.22,0.0,0.0,0.8033,0.4273,0.9946,1.2821,0.2625,1.7241,51.012,16.3799,8.3466,0.0,0.0,81.4176,10.0641,14.4693,82.27,10.06,15.56,27.07,0.46,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.01,21210.6,18171.93,50.09,1.0,50.09,90.07,90.07,0.0,47.02,1.0,47.02,90.07,90.07,0.0,81.22,122.663,99.3858,122.3649,0.21957,0.9827,1.0152,1.0,0.9976,1.0,75.4212,0.0,0.0,58.04,21.03,11.38,92.63,13.36,19.75,32.22,0.0,0.0,0.8032,0.4132,0.9939,1.2821,0.2625,1.7241,48.4055,15.5642,8.3401,0.0,0.0,77.2622,9.8881,14.4675,78.07,9.89,15.56,27.08,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house043.xml,-8.08,52.037,21.8607,53.8614,0.30155,1.0351,1.0,1.0,1.0351,-0.199,20.625,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.3623,2.5103,2.3731,0.0,0.0,1.086,1.314,2.669,1.09,1.31,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.55,22.8,4017.57,53.46,1.0,53.46,40.59,40.59,1.0,47.88,1.0,47.88,40.59,40.59,1.0,35.7,56.147,21.8413,58.1155,0.30155,1.0351,1.0,1.0,1.0351,0.95,20.596,1.0298,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4992,0.9875,0.4432,0.2625,1.1111,1.392,2.4623,2.373,0.0,0.0,1.077,1.295,2.67,1.08,1.3,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 +house044.xml,69.13,42.882,31.2523,45.2065,0.16593,1.0641,0.9771,1.0139,1.0542,1.0,27.7514,0.0,0.0,19.12,3.37,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3154,0.9207,1.2821,0.2625,1.1111,14.5642,2.232,4.5241,0.0,0.0,23.2576,1.858,5.4597,25.57,1.86,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.24,7639.14,9381.31,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.93,44.164,31.1595,46.558,0.16593,1.0641,0.9771,1.0139,1.0542,1.0,27.7094,0.0,0.0,20.47,3.3,6.35,32.67,2.81,7.66,13.7,0.34,0.0,0.8034,0.3088,0.9205,1.2821,0.2625,1.1111,14.5342,2.1713,4.5229,0.0,0.0,23.1922,1.846,5.4597,25.5,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +house045.xml,88.78,180.531,153.8671,173.3069,0.22005,0.9417,1.0304,0.9894,0.96,1.0,124.813,0.0,0.0,75.15,43.12,12.22,56.3,24.77,21.3,50.05,0.0,0.0,0.5917,0.4571,1.9438,0.4432,0.2625,3.3898,64.2722,31.5783,13.7026,0.0,0.0,48.1494,18.1382,23.895,48.15,18.14,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,99.92,25490.35,26573.39,49.69,1.0,49.69,88.78,88.78,0.0,45.77,1.0,45.77,88.78,88.78,0.0,82.81,190.749,151.6455,183.1161,0.22005,0.9417,1.0304,0.9894,0.96,1.0,124.234,0.0,0.0,85.89,42.6,12.22,64.22,25.71,21.3,50.05,0.0,0.0,0.5929,0.4349,1.9438,0.4432,0.2625,3.3898,63.8183,29.8107,13.7026,0.0,0.0,47.7134,17.9942,23.895,47.71,17.99,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 +house046.xml,-4.26,132.826,49.2382,132.171,0.27773,0.9896,1.0192,0.9866,0.9951,-0.1142,46.131,51.401,0.0,75.54,12.03,12.93,62.72,6.75,13.96,29.19,3.15,0.0,0.5338,0.4681,1.0064,0.4432,0.2625,1.087,16.3339,2.5406,9.7587,0.0,0.0,13.5621,1.425,10.54,13.56,1.43,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.85,2776.7,28324.69,50.16,1.0,50.16,37.25,37.25,1.0,44.16,1.0,44.16,37.25,37.25,1.0,32.41,144.436,49.0355,143.7238,0.27773,0.9896,1.0192,0.9866,0.9951,0.95,46.056,2.3028,0.0,87.5,11.68,12.93,72.57,6.88,13.97,29.18,3.15,0.0,0.5344,0.4458,1.0062,0.4432,0.2625,1.087,16.273,2.4008,9.7566,0.0,0.0,13.4971,1.414,10.54,13.5,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 +house047.xml,63.74,84.064,53.8099,84.4245,0.20922,0.987,1.0,1.0176,1.0043,1.0,42.9956,0.0,0.0,32.66,9.13,10.49,52.01,5.62,11.8,30.7,1.09,0.0,0.805,0.4266,0.9872,1.2821,0.2625,1.1111,26.1557,3.8609,2.4723,0.0,0.0,41.6572,2.376,2.7825,45.67,2.38,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.63,10572.93,6170.05,58.44,1.0,58.44,63.74,63.74,0.0,53.2,1.0,53.2,63.74,63.74,0.0,58.63,90.518,53.3022,90.9061,0.20922,0.987,1.0,1.0176,1.0043,1.0,42.6386,0.0,0.0,39.21,9.07,10.49,62.45,5.6,11.81,30.69,1.05,0.0,0.805,0.425,0.9868,1.2821,0.2625,1.1111,25.7526,3.7722,2.4703,0.0,0.0,41.0142,2.33,2.7815,44.97,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 +house048.xml,66.15,98.507,68.9125,104.1765,0.33387,1.0286,1.0,1.0282,1.0576,1.0,46.4668,0.0,0.0,1.98,65.92,5.6,3.18,37.74,10.94,24.41,0.6,0.0,0.8005,0.4586,0.883,1.2821,0.2625,1.7241,0.4974,44.1587,3.7454,0.0,0.0,0.7966,25.2822,7.313,0.81,25.28,7.58,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.97,6735.91,7677.02,50.84,1.0,50.84,66.15,66.15,0.0,46.29,1.0,46.29,66.15,66.15,0.0,65.27,98.719,68.1465,104.4007,0.33387,1.0286,1.0,1.0282,1.0576,1.0,46.0002,0.0,0.0,2.1,66.11,5.6,3.36,37.9,10.94,24.4,0.51,0.0,0.8005,0.458,0.883,1.2821,0.2625,1.7241,0.4362,43.5749,3.7454,0.0,0.0,0.6987,24.9792,7.313,0.71,24.98,7.58,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house049.xml,52.33,43.646,24.0168,45.8939,0.22435,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.6,16.62,17.28,1.37,0.0,0.6061,0.5152,0.813,0.4432,0.2625,1.6949,4.7911,1.1048,2.9789,0.0,0.0,3.504,0.563,6.2103,3.5,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.65,2584.1,2741.11,49.1,1.0,49.1,52.33,52.33,0.0,44.14,1.0,44.14,52.33,52.33,0.0,51.23,44.555,24.003,46.8497,0.22435,1.0483,0.9845,1.0188,1.0515,1.0,22.6408,0.0,0.0,14.88,3.06,7.97,10.81,1.57,16.62,17.27,1.37,0.0,0.6101,0.5127,0.813,0.4432,0.2625,1.6949,4.7876,1.0955,2.9789,0.0,0.0,3.478,0.561,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 +house050.xml,86.65,66.541,58.5864,67.6106,0.16655,1.0045,1.0115,1.0,1.0161,1.0,50.4372,0.0,0.0,21.39,4.93,11.91,34.1,3.21,21.35,27.26,1.05,0.0,0.8043,0.4029,0.9618,1.2821,0.2625,1.7241,9.0996,4.2665,8.3984,0.0,0.0,14.5054,2.78,15.0553,15.9,2.78,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.05,7503.1,4147.46,55.71,1.0,55.71,86.65,86.65,0.0,50.46,1.0,50.46,86.65,86.65,0.0,82.0,69.965,58.291,71.0897,0.16655,1.0045,1.0115,1.0,1.0161,1.0,50.2676,0.0,0.0,25.08,4.69,11.91,39.98,3.11,21.36,27.25,1.04,0.0,0.8043,0.3952,0.9617,1.2821,0.2625,1.7241,9.0149,4.1295,8.3976,0.0,0.0,14.3704,2.743,15.0553,15.76,2.74,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house051.xml,55.16,45.503,25.705,46.5984,0.17687,1.0241,1.0,1.0,1.0241,1.0,25.4118,0.0,0.0,11.33,2.82,9.97,8.55,1.45,18.47,20.61,0.77,0.0,0.5871,0.5109,0.9155,0.4432,0.2625,1.6949,5.6268,0.4515,2.0157,0.0,0.0,4.248,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.42,2727.33,2913.04,51.65,1.0,51.65,55.16,55.16,0.0,46.33,1.0,46.33,55.16,55.16,0.0,52.63,47.812,25.7713,48.9629,0.17687,1.0241,1.0,1.0,1.0241,1.0,25.3738,0.0,0.0,13.85,2.62,9.97,10.23,1.37,18.47,20.6,0.77,0.0,0.6001,0.5039,0.9154,0.4432,0.2625,1.6949,5.7024,0.4434,2.0155,0.0,0.0,4.212,0.231,3.7319,4.21,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 +house052.xml,58.75,44.431,27.6268,47.0278,0.19344,1.0416,1.0,1.0162,1.0584,1.0,26.762,0.0,0.0,13.17,1.71,10.35,9.56,0.81,11.95,18.54,0.66,0.0,0.6107,0.5522,0.9621,0.4432,0.2625,1.1111,6.0765,0.2419,7.1483,0.0,0.0,4.41,0.115,8.2555,4.41,0.12,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.36,1794.7,2856.64,53.21,1.0,53.21,58.75,58.75,0.0,48.04,1.0,48.04,58.75,58.75,0.0,57.08,45.755,27.6443,48.4292,0.19344,1.0416,1.0,1.0162,1.0584,1.0,26.734,0.0,0.0,14.63,1.59,10.35,10.52,0.76,11.95,18.53,0.65,0.0,0.6167,0.5493,0.9621,0.4432,0.2625,1.1111,6.0984,0.2385,7.1483,0.0,0.0,4.383,0.114,8.2555,4.38,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 +house053.xml,70.9,66.045,47.6372,67.1925,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.706,0.0,0.0,21.53,4.78,11.91,34.32,3.14,21.31,26.94,0.88,0.0,0.8042,0.3994,0.9639,1.2821,0.2625,1.7241,13.1841,3.0701,8.0599,0.0,0.0,21.017,2.018,14.4175,22.66,2.02,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.75,7445.68,4117.35,55.57,1.0,55.57,70.9,70.9,0.0,50.34,1.0,50.34,70.9,70.9,0.0,66.53,69.574,47.0908,70.7828,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.344,0.0,0.0,25.36,4.53,11.91,40.43,3.04,21.31,26.93,0.83,0.0,0.8043,0.3917,0.9638,1.2821,0.2625,1.7241,12.7643,3.0033,8.0592,0.0,0.0,20.3472,2.013,14.4175,21.94,2.01,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house054.xml,62.35,170.343,108.6091,174.1905,0.3349,0.9506,1.0462,1.0282,1.0226,1.0,76.7508,0.0,0.0,3.6599999999999997,120.34,7.75,5.85,69.25,13.54,37.12,1.49,0.0,1.601,0.9113,0.9696,2.5642,0.525,1.6949,1.334,75.7431,1.836,0.0,0.0,2.1365,43.5914,3.2093,2.16,43.6,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.76,9823.58,13386.28,49.91,1.0,49.91,62.35,62.35,0.0,45.26,1.0,45.26,62.35,62.35,0.0,61.65,171.074,107.8479,174.938,0.3349,0.9506,1.0462,1.0282,1.0226,1.0,76.3522,0.0,0.0,3.92,120.88,7.75,6.27,69.68,13.54,37.11,1.42,0.0,1.6007,0.9097999999999999,0.9696,2.5642,0.525,1.6949,1.246,75.1329,1.836,0.0,0.0,1.9961,43.3124,3.2093,2.02,43.31,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house055.xml,63.65,95.907,64.7064,101.6572,0.33855,1.0305,1.0,1.0286,1.06,1.0,46.8598,0.0,0.0,2.0,65.22,5.6,3.2,37.26,10.67,22.28,0.81,0.0,0.8005,0.4595,0.8897,1.2821,0.2625,1.6949,0.9448,42.4581,1.6855,0.0,0.0,1.5131,24.2562,3.2109,1.53,24.26,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.32,6177.35,7636.62,48.98,1.0,48.98,63.65,63.65,0.0,44.55,1.0,44.55,63.65,63.65,0.0,63.18,96.117,64.3697,101.8797,0.33855,1.0305,1.0,1.0286,1.06,1.0,46.681,0.0,0.0,2.07,65.37,5.6,3.32,37.38,10.67,22.28,0.8,0.0,0.8004,0.4591,0.8897,1.2821,0.2625,1.6949,0.9058,42.1785,1.6855,0.0,0.0,1.4508,24.1192,3.2109,1.47,24.12,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 +house056.xml,62.74,73.46,46.5882,74.2554,0.20102,0.997,1.0139,1.0,1.0108,1.0,41.0022,0.0,0.0,26.08,5.19,11.91,41.74,3.46,20.92,29.21,1.07,0.0,1.6099999999999999,0.394,0.9649,2.5642,0.2625,1.6949,13.5076,2.8964,3.3671,0.0,0.0,21.6055,1.93,5.9145,23.27,1.93,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.2,7314.9,4461.47,54.95,1.0,54.95,62.74,62.74,0.0,49.69,1.0,49.69,62.74,62.74,0.0,58.69,77.843,46.1778,78.6858,0.20102,0.997,1.0139,1.0,1.0108,1.0,40.7364,0.0,0.0,30.770000000000003,4.92,11.91,49.230000000000004,3.35,20.93,29.2,1.04,0.0,1.6084,0.3862,0.9648,2.5642,0.2625,1.6949,13.2434,2.8217,3.3668,0.0,0.0,21.183,1.918,5.9145,22.82,1.92,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 +house057.xml,82.27,57.398,47.8961,58.2191,0.16054,1.0143,1.0,1.0,1.0143,1.0,42.4148,0.0,0.0,18.79,4.14,9.97,29.96,2.81,11.53,23.76,0.74,0.0,0.8043,0.3859,0.9612,1.2821,0.2625,1.1111,9.7872,4.2757,2.8562,0.0,0.0,15.6013,2.909,3.3018,17.2,2.91,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.8,5205.6,3593.99,57.91,1.0,57.91,82.27,82.27,0.0,53.16,1.0,53.16,82.27,82.27,0.0,76.75,60.298,46.9394,61.1606,0.16054,1.0143,1.0,1.0,1.0143,1.0,41.5958,0.0,0.0,21.95,3.94,9.97,34.98,2.73,11.53,23.75,0.69,0.0,0.8043,0.3783,0.9611,1.2821,0.2625,1.1111,9.6849,4.1065,2.8559,0.0,0.0,15.4381,2.85,3.3018,17.02,2.85,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 +house058.xml,64.67,122.076,79.9278,123.5861,0.33378,0.9896,1.023,1.0,1.0124,1.0,56.8062,0.0,0.0,3.5,82.49,6.68,5.61,47.61,12.49,28.44,0.97,0.0,0.8004,0.4549,0.9226,1.2821,0.2625,1.7241,1.2468,50.6799,5.6171,0.0,0.0,1.997,29.2513,10.4971,2.02,29.25,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.94,7859.71,9712.32,50.79,1.0,50.79,64.67,64.67,0.0,46.18,1.0,46.18,64.67,64.67,0.0,63.22,123.585,79.0928,125.1138,0.33378,0.9896,1.023,1.0,1.0124,1.0,56.3918,0.0,0.0,4.05,83.53,6.68,6.48,48.4,12.49,28.43,0.89,0.0,0.8002,0.4531,0.9225,1.2821,0.2625,1.7241,1.1303,50.0422,5.6162,0.0,0.0,1.811,28.9933,10.4971,1.83,28.99,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house059.xml,55.25,35.115,20.8325,37.7062,0.19106,1.071,0.9868,1.016,1.0738,1.0,18.6486,0.0,0.0,7.78,2.94,7.97,6.04,1.48,15.04,16.0,0.42,0.0,0.5709,0.5221,0.8987,0.4432,0.2625,1.6949,3.7302,0.8929,2.0045,0.0,0.0,2.896,0.449,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.3,2428.54,2168.39,50.59,1.0,50.59,55.25,55.25,0.0,46.25,1.0,46.25,55.25,55.25,0.0,54.28,35.707,20.8118,38.3419,0.19106,1.071,0.9868,1.016,1.0738,1.0,18.5946,0.0,0.0,8.47,2.86,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5794,0.5203,0.8981,0.4432,0.2625,1.6949,3.7216,0.886,2.0031,0.0,0.0,2.847,0.447,3.7805,2.85,0.45,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 +house060.xml,73.73,113.169,84.3393,114.3841,0.23111,0.9795,1.0319,1.0,1.0107,1.0,62.3128,0.0,0.0,32.08,33.58,11.5,51.32,20.1,19.92,36.01,0.0,0.0,1.6028,0.8773,0.995,2.5642,0.525,1.7241,27.7984,20.3841,7.9589,0.0,0.0,44.4703,12.2012,13.7916,44.94,12.2,13.79,27.35,0.85,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,92.58,16224.51,17337.82,50.12,1.0,50.12,73.73,73.73,0.0,46.41,1.0,46.41,73.73,73.73,0.0,67.84,115.918,79.4825,117.1627,0.23111,0.9795,1.0319,1.0,1.0107,1.0,59.1526,0.0,0.0,34.96,33.46,11.5,55.9,20.52,19.92,36.01,0.0,0.0,1.6037,0.8559,0.9949,2.5642,0.525,1.7241,25.0297,19.1404,7.9585,0.0,0.0,40.0201,11.7422,13.7916,40.44,11.74,13.79,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house061.xml,66.68,27.402,19.4607,29.1873,0.20357,1.0775,0.9719,1.0171,1.0652,1.0,18.2968,0.0,0.0,4.91,3.05,5.78,7.83,1.77,6.8,13.47,0.19,0.0,0.804,0.4531,0.9248,1.2821,0.2625,1.087,5.6096,0.7645,3.9607,0.0,0.0,8.9451,0.443,4.655,9.81,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,94.78,2994.11,2965.73,59.98,1.0,59.98,66.68,66.68,0.0,50.96,1.0,50.96,66.68,66.68,0.0,64.31,28.31,19.3936,30.1544,0.20357,1.0775,0.9719,1.0171,1.0652,1.0,18.2622,0.0,0.0,5.95,2.98,5.78,9.48,1.77,6.8,13.46,0.13,0.0,0.8041,0.4426,0.9243,1.2821,0.2625,1.087,5.5759,0.7333,3.9583,0.0,0.0,8.8904,0.435,4.655,9.75,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 +house062.xml,74.71,38.176,30.3589,40.6337,0.24834,1.0796,0.9657,1.0209,1.0644,1.0,26.032,0.0,0.0,9.63,8.95,5.18,7.42,5.1,6.18,14.41,0.0,0.0,0.5754,0.4607,0.911,0.4432,0.2625,1.087,10.5363,6.2161,3.9835,0.0,0.0,8.1161,3.542,4.753,8.12,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.25,4609.9,5755.22,49.38,1.0,49.38,74.71,74.71,0.0,45.89,1.0,45.89,74.71,74.71,0.0,74.09,38.339,30.2356,40.8072,0.24834,1.0796,0.9657,1.0209,1.0644,1.0,25.96,0.0,0.0,9.81,8.94,5.18,7.55,5.12,6.18,14.41,0.0,0.0,0.5764,0.4581,0.911,0.4432,0.2625,1.087,10.483,6.146,3.9835,0.0,0.0,8.0621,3.522,4.753,8.06,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house063.xml,78.22,89.608,70.4861,90.1099,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,52.3548,0.0,0.0,16.56,40.19,6.02,26.52,23.58,12.48,26.01,0.83,0.0,0.8005,0.4475,0.8313,1.2821,0.2625,1.7241,14.0448,27.1462,4.2481,0.0,0.0,22.494,15.9251,8.8105,22.73,15.93,9.47,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.34,10938.09,10325.45,49.31,1.0,49.31,78.22,78.22,0.0,46.44,1.0,46.44,78.22,78.22,0.0,75.63,90.818,69.0732,91.3267,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,51.6382,0.0,0.0,17.65,40.35,6.02,28.27,24.04,12.47,26.01,0.79,0.0,0.8005,0.4406,0.8314,1.2821,0.2625,1.7241,13.6265,26.3912,4.2484,0.0,0.0,21.823,15.7261,8.8105,22.05,15.73,9.47,20.83,3.97,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house064.xml,71.05,74.796,55.2751,77.7972,0.27453,1.0363,0.9811,1.0231,1.0401,1.0,40.5016,0.0,0.0,14.49,32.36,6.02,23.2,19.04,12.17,21.4,0.53,0.0,0.8005,0.4462,0.8378,1.2821,0.2625,1.6949,11.067,21.0934,3.9388,0.0,0.0,17.725,12.4121,7.9687,17.91,12.41,8.4,16.81,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,96.97,8655.31,8581.84,53.93,1.0,53.93,71.05,71.05,0.0,50.71,1.0,50.71,71.05,71.05,0.0,68.21,75.798,53.7786,78.8394,0.27453,1.0363,0.9811,1.0231,1.0401,1.0,39.6366,0.0,0.0,15.43,32.49,6.02,24.71,19.43,12.17,21.4,0.47,0.0,0.8006,0.439,0.8377,1.2821,0.2625,1.6949,10.5984,20.4266,3.9385,0.0,0.0,16.9729,12.2151,7.9687,17.15,12.22,8.4,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house065.xml,76.49,97.824,77.4717,101.2802,0.25234,0.9965,1.0174,1.0212,1.0353,1.0,58.1176,0.0,0.0,16.6,41.93,8.98,26.59,25.15,16.31,29.28,1.05,0.0,0.8003,0.4377,0.9485,1.2821,0.2625,1.7241,15.0361,27.078,6.2816,0.0,0.0,24.0872,16.2411,11.4181,24.34,16.24,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.12,12217.48,11443.76,47.97,1.0,47.97,76.49,76.49,0.0,45.18,1.0,45.18,76.49,76.49,0.0,74.26,99.133,76.2207,102.6355,0.25234,0.9965,1.0174,1.0212,1.0353,1.0,57.4956,0.0,0.0,17.77,42.11,8.98,28.46,25.62,16.31,29.27,1.01,0.0,0.8003,0.4315,0.9485,1.2821,0.2625,1.7241,14.6524,26.4018,6.2816,0.0,0.0,23.4717,16.0621,11.4181,23.72,16.06,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house066.xml,74.11,73.08,56.7816,76.6175,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.394,0.0,0.0,12.03,30.82,7.52,8.88,17.9,8.75,21.92,0.79,0.0,0.6004,0.452,0.9549,0.4432,0.2625,1.1111,8.316,21.4501,5.6426,0.0,0.0,6.1391,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.14,8758.25,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.831,56.1715,77.4048,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.105,0.0,0.0,12.7,30.92,7.52,9.35,18.15,8.75,21.91,0.78,0.0,0.602,0.4472,0.9549,0.4432,0.2625,1.1111,8.1906,21.0414,5.6426,0.0,0.0,6.0311,12.3541,6.5657,6.03,12.35,6.42,17.79,3.51,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house067.xml,60.48,86.432,54.1759,89.5739,0.29327,1.0114,1.0,1.0247,1.0364,1.0,40.5484,0.0,0.0,15.33,36.99,7.52,24.56,22.05,14.11,25.79,0.8,0.0,0.8003,0.4405,0.9034,1.2821,0.2625,1.6949,9.863,21.1379,2.9799,0.0,0.0,15.7992,12.5991,5.5908,15.97,12.6,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.81,8507.31,10034.12,48.76,1.0,48.76,60.48,60.48,0.0,45.91,1.0,45.91,60.48,60.48,0.0,58.49,87.796,53.2145,90.9875,0.29327,1.0114,1.0,1.0247,1.0364,1.0,40.1628,0.0,0.0,16.57,37.18,7.52,26.54,22.56,14.11,25.79,0.75,0.0,0.8004,0.4326,0.9034,1.2821,0.2625,1.6949,9.5611,20.5155,2.9799,0.0,0.0,15.3153,12.4491,5.5908,15.48,12.45,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house068.xml,74.6,117.763,85.7515,114.9538,0.25155,0.9761,1.0,1.0,0.9761,1.0,65.0516,0.0,0.0,24.83,51.58,7.52,39.769999999999996,30.76,14.44,32.85,0.98,0.0,1.6014,0.8729,0.898,2.5642,0.525,1.7241,17.904400000000003,29.1914,5.2856,0.0,0.0,28.6761,17.4021,10.1487,28.979999999999997,17.4,10.91,26.89,6.48,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.26,13537.37,13561.25,50.42,1.0,50.42,74.6,74.6,0.0,47.24,1.0,47.24,74.6,74.6,0.0,69.14,121.865,82.246,118.9579,0.25155,0.9761,1.0,1.0,0.9761,1.0,63.1312,0.0,0.0,28.46,52.190000000000005,7.52,45.58,32.239999999999995,14.44,32.84,0.86,0.0,1.6014,0.8422000000000001,0.8979,2.5642,0.525,1.7241,17.043,27.4808,5.2853,0.0,0.0,27.296599999999998,16.9811,10.1487,27.58,16.98,10.91,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 +house069.xml,73.17,109.905,79.6239,108.8156,0.2756,0.9901,1.0,1.0,0.9901,1.0,58.4106,0.0,0.0,26.04,46.7,7.52,41.72,27.55,14.16,29.32,0.33,0.0,0.8003,0.4451,0.8997,1.2821,0.2625,1.6949,19.2227,28.3878,5.2964,0.0,0.0,30.7949,16.7452,9.9777,31.12,16.75,10.52,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.66,12693.47,12488.7,56.18,1.0,56.18,73.17,73.17,0.0,52.95,1.0,52.95,73.17,73.17,0.0,69.43,113.927,78.3145,112.7978,0.2756,0.9901,1.0,1.0,0.9901,1.0,58.2668,0.0,0.0,29.67,47.28,7.52,47.53,28.99,14.16,29.31,0.15,0.0,0.8003,0.4282,0.8997,1.2821,0.2625,1.6949,19.0925,27.1996,5.2954,0.0,0.0,30.5841,16.6782,9.9758,30.9,16.68,10.52,22.98,3.75,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house070.xml,47.27,181.205,81.4375,172.2652,0.20124,0.9376,1.0139,1.0,0.9507,1.0,71.51,0.0,0.0,88.69,25.04,11.77,65.75,14.03,13.08,53.58,2.13,0.0,0.5978,0.4686,0.9994,0.4432,0.2625,1.1111,31.522,5.6831,8.2403,0.0,0.0,23.3712,3.184,9.1612,23.37,3.18,8.96,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8021.14,17265.59,52.08,1.0,52.08,47.27,47.27,1.0,46.09,1.0,46.09,47.27,47.27,0.0,43.15,195.801,80.3248,186.1411,0.20124,0.9376,1.0139,1.0,0.9507,1.0,71.009,0.0,0.0,103.81,24.64,11.77,77.29,14.58,13.09,53.57,2.01,0.0,0.5953,0.4437,0.9992,0.4432,0.2625,1.1111,30.8227,5.3014,8.2357,0.0,0.0,22.9492,3.137,9.1581,22.95,3.14,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house071.xml,75.59,58.726,46.6824,61.7558,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.317,0.0,0.0,20.49,8.6,9.85,16.29,4.89,11.46,19.19,0.58,0.0,1.4445999999999999,0.4621,0.9555,1.7253,0.2625,1.1111,22.8428,3.7986,7.0929,0.0,0.0,18.185299999999998,2.158,8.2483,18.240000000000002,2.16,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.93,4782.47,5911.95,51.53,1.0,51.53,75.59,75.59,0.0,46.49,1.0,46.49,75.59,75.59,0.0,72.01,61.249,46.3832,64.409,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.2112,0.0,0.0,23.19,8.49,9.85,18.470000000000002,4.97,11.46,19.19,0.53,0.0,1.4311,0.4481,0.9555,1.7253,0.2625,1.1111,22.7004,3.642,7.0929,0.0,0.0,18.099500000000003,2.134,8.2483,18.15,2.13,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 +house072.xml,61.3,132.313,79.7365,130.0764,0.228,0.98,0.9843,1.0191,0.9831,1.0,64.519,0.0,0.0,88.36,1.24,10.45,138.71,1.75,18.75,31.12,1.14,0.0,1.3274,0.1866,0.9613,1.7253,0.2625,1.7241,52.3525,0.6725,5.2854,0.0,0.0,80.3276,0.946,9.4796,88.24000000000001,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.14,16205.13,10556.75,55.89,1.0,55.89,61.3,61.3,0.0,49.01,1.0,49.01,61.3,61.3,0.0,55.28,146.193,79.4474,143.7218,0.228,0.98,0.9843,1.0191,0.9831,1.0,64.2202,0.0,0.0,102.46000000000001,1.05,10.45,160.72,1.67,18.77,31.11,1.11,0.0,1.3484,0.1651,0.96,1.7253,0.2625,1.7241,52.161100000000005,0.5949,5.2784,0.0,0.0,79.7403,0.946,9.4796,87.59,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 +house073.xml,32.73,221.348,114.3861,210.9364,0.16689,0.9421,1.0115,1.0,0.953,0.6036,90.8886,36.031,0.0,118.89,26.94,11.77,97.69999999999999,15.079999999999998,26.81,61.14,2.62,0.0,1.9848,0.9383,0.9976,2.1364,0.525,2.2727,28.4122,23.7307,14.8433,0.0,0.0,25.023500000000002,13.2821,33.8161,25.830000000000002,13.28,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.81,13740.36,20952.93,50.58,1.0,50.58,54.23,54.23,0.0,47.77,1.0,47.77,54.23,54.23,0.0,46.36,237.646,112.3444,226.4678,0.16689,0.9421,1.0115,1.0,0.953,0.9345,90.5474,5.9301,0.0,135.53,26.6,11.77,112.08,15.76,26.83,61.13,2.62,0.0,1.9764,0.8861,0.9967,2.1364,0.525,2.2727,28.0027,22.1113,14.8305,0.0,0.0,24.8293,13.107099999999999,33.8172,25.630000000000003,13.11,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house074.xml,72.32,78.283,59.6104,82.424,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.478,0.0,0.0,14.56,33.26,7.52,10.62,19.37,8.67,22.21,0.73,0.0,0.6076,0.4508,0.9528,0.4432,0.2625,1.0989,8.9211,22.8098,5.7265,0.0,0.0,6.5081,13.2851,6.6048,6.51,13.29,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.02,7266.11,9323.58,43.82,1.0,43.82,72.32,72.32,0.0,42.15,1.0,42.15,72.32,72.32,0.0,70.46,79.528,58.9975,83.7349,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.298,0.0,0.0,15.68,33.41,7.52,11.35,19.82,8.67,22.21,0.71,0.0,0.6126,0.4424,0.9528,0.4432,0.2625,1.0989,8.9,22.244,5.7265,0.0,0.0,6.4401,13.1991,6.6048,6.44,13.2,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house075.xml,71.02,82.174,60.5263,85.2269,0.21668,1.0219,1.015,1.0,1.0372,1.0,47.9968,0.0,0.0,32.55,15.53,11.38,52.0,9.82,19.4,22.71,0.0,0.0,0.8026,0.4151,0.9943,1.2821,0.2625,1.6949,22.9206,8.651,10.3037,0.0,0.0,36.6148,5.471,17.5642,39.69,5.47,18.52,17.68,0.98,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.27,12814.78,12969.57,46.66,1.0,46.66,71.02,71.02,0.0,43.88,1.0,43.88,71.02,71.02,0.0,61.28,86.1,54.7189,89.2988,0.21668,1.0219,1.015,1.0,1.0372,1.0,43.7354,0.0,0.0,36.47,15.55,11.38,58.26,10.06,19.41,22.7,0.0,0.0,0.8026,0.4056,0.9938,1.2821,0.2625,1.6949,18.8128,7.933,10.2912,0.0,0.0,30.0525,5.135,17.5518,32.58,5.14,18.5,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house076.xml,65.66,31.484,21.8604,33.2933,0.17959,1.0683,0.9752,1.015,1.0575,1.0,19.1096,0.0,0.0,6.97,4.85,5.78,11.12,3.45,12.13,13.69,0.19,0.0,0.8042,0.3688,0.8083,1.2821,0.2625,1.6949,5.4157,2.9472,2.7976,0.0,0.0,8.6342,2.098,5.8665,9.52,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,110.51,3938.29,3370.1,52.65,1.0,52.65,65.66,65.66,0.0,46.98,1.0,46.98,65.66,65.66,0.0,63.9,32.2,21.7577,34.0505,0.17959,1.0683,0.9752,1.015,1.0575,1.0,19.0722,0.0,0.0,7.83,4.77,5.78,12.48,3.45,12.14,13.68,0.13,0.0,0.8042,0.3628,0.8075,1.2821,0.2625,1.6949,5.3856,2.8783,2.7948,0.0,0.0,8.5861,2.083,5.8665,9.47,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house077.xml,77.39,39.288,32.5331,42.0367,0.20652,1.0669,0.9858,1.0173,1.07,1.0,31.0468,0.0,0.0,9.12,5.06,8.65,14.57,3.62,9.53,15.25,1.21,0.0,0.8024,0.3673,0.9764,1.2821,0.2625,1.0753,5.5271,2.6356,6.5863,0.0,0.0,8.8314,1.884,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.34,7529.68,8547.17,56.2,1.0,56.2,77.39,77.39,0.0,46.41,1.0,46.41,77.39,77.39,0.0,74.37,40.715,32.3999,43.5636,0.20652,1.0669,0.9858,1.0173,1.07,1.0,31.0006,0.0,0.0,10.72,4.89,8.65,17.12,3.59,9.53,15.24,1.22,0.0,0.8026,0.3577,0.976,1.2821,0.2625,1.0753,5.4805,2.5518,6.5835,0.0,0.0,8.7543,1.873,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house078.xml,57.41,134.788,76.387,133.0612,0.26735,0.9693,1.0184,1.0,0.9872,1.0,57.3592,0.0,0.0,30.33,57.23,8.98,48.58,32.68,16.25,36.97,1.29,0.0,0.8004,0.4598,0.9359,1.2821,0.2625,1.6949,13.9211,30.4257,3.7552,0.0,0.0,22.2976,17.3722,6.8003,24.45,17.37,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.57,12015.59,15297.07,53.89,1.0,53.89,57.41,57.41,0.0,50.74,1.0,50.74,57.41,57.41,0.0,54.65,139.367,75.1901,137.5815,0.26735,0.9693,1.0184,1.0,0.9872,1.0,57.2196,0.0,0.0,34.39,57.81,8.98,55.08,34.11,16.25,36.97,1.23,0.0,0.8004,0.445,0.9359,1.2821,0.2625,1.6949,13.8299,29.32,3.7552,0.0,0.0,22.1516,17.2972,6.8003,24.29,17.3,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house079.xml,49.27,93.28,44.636,90.5885,0.21789,0.9711,1.0,1.0,0.9711,1.0,39.198,0.0,0.0,46.24,2.96,10.35,32.44,1.47,12.36,33.73,0.0,0.0,1.2599,1.0585,0.9517,0.8864,0.525,1.1364,19.144,0.2339,2.8421,0.0,0.0,13.4191,0.116,3.3935,13.42,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,49.25,2743.87,5736.7,55.84,1.0,55.84,49.27,49.27,1.0,50.45,1.0,50.45,49.27,49.27,1.0,45.34,101.502,44.6979,98.5733,0.21789,0.9711,1.0,1.0,0.9711,1.0,39.105,0.0,0.0,54.85,2.58,10.35,38.08,1.3,12.36,33.72,0.0,0.0,1.2734,1.0387,0.9516,0.8864,0.525,1.1364,19.215400000000002,0.22560000000000002,2.8419,0.0,0.0,13.331100000000001,0.114,3.3935,13.329999999999998,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house080.xml,41.24,144.486,57.968,140.5774,0.27986,0.9545,1.0193,1.0,0.9729,1.0,46.636,0.0,0.0,32.14,63.38,8.98,23.36,37.129999999999995,10.83,37.29,2.7,0.0,1.2187000000000001,0.8961,0.9641,0.8864,0.525,1.1628,9.675699999999999,21.4744,1.6249,0.0,0.0,7.036,12.5781,1.9598,7.04,12.58,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.11,7098.27,16923.7,46.45,1.0,46.45,41.24,41.24,1.0,44.68,1.0,44.68,41.24,41.24,1.0,38.96,150.44,57.0231,146.3703,0.27986,0.9545,1.0193,1.0,0.9729,1.0,46.514,0.0,0.0,37.2,64.28,8.98,26.75,39.230000000000004,10.83,37.29,2.7,0.0,1.2328000000000001,0.8599,0.9636,0.8864,0.525,1.1628,9.7045,20.5006,1.625,0.0,0.0,6.978,12.513100000000001,1.9609,6.98,12.51,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house081.xml,65.16,25.582,18.9708,29.1137,0.16865,1.1489,0.9767,1.0141,1.1381,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5026,0.4514,0.9399,0.4432,0.2625,1.0638,3.3198,1.8586,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.13,3195.08,4182.44,41.98,1.0,41.98,65.16,65.16,0.0,40.6,1.0,40.6,65.16,65.16,0.0,64.78,25.709,18.9543,29.2582,0.16865,1.1489,0.9767,1.0141,1.1381,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house082.xml,63.08,159.502,99.1116,157.1164,0.26392,0.9504,1.0364,1.0,0.985,1.0,75.2902,0.0,0.0,35.56,68.7,10.4,56.96,39.85,18.4,44.06,0.79,0.0,1.6006,0.9053,0.9584,2.5642,0.525,1.6949,23.964,36.903999999999996,2.5587,0.0,0.0,38.390299999999996,21.4052,4.5249,41.38,21.41,9.11,30.29,5.39,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.47,16155.88,18128.3,54.93,1.0,54.93,63.08,63.08,0.0,51.61,1.0,51.61,63.08,63.08,0.0,57.4,165.55,93.6078,163.0739,0.26392,0.9504,1.0364,1.0,0.985,1.0,71.8246,0.0,0.0,41.14,69.46,10.4,65.92,41.76,18.4,44.05,0.48,0.0,1.6006,0.8734,0.9584,2.5642,0.525,1.6949,23.1931,34.3401,2.5587,0.0,0.0,37.153800000000004,20.644199999999998,4.5249,40.06,20.65,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house083.xml,54.38,32.894,20.1355,37.0256,0.32012,1.1467,0.9558,1.027,1.1256,1.0,17.879,0.0,0.0,3.14,12.23,4.42,2.61,7.08,5.4,12.77,0.34,0.0,0.5335,0.4537,0.8905,0.4432,0.2625,1.087,1.6454,6.3565,3.1696,0.0,0.0,1.367,3.678,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.51,2655.34,4174.59,50.52,1.0,50.52,54.38,54.38,0.0,45.55,1.0,45.55,54.38,54.38,0.0,53.65,33.166,20.0281,37.3318,0.32012,1.1467,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4486,0.8903,0.4432,0.2625,1.087,1.6524,6.2436,3.1682,0.0,0.0,1.352,3.654,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house084.xml,12.32,139.751,88.6655,137.0862,0.1644,0.9676,1.0,1.0138,0.9809,0.1904,73.0452,59.137,0.0,71.38,16.04,10.48,116.88,10.61,18.32,39.52,2.32,0.0,0.7634,1.1803,1.9404,1.25,0.7875000000000001,3.3898,43.0046,8.4329,6.6602,0.0,0.0,70.4131,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12881.39,10080.01,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.49,148.019,88.4403,145.1966,0.1644,0.9676,1.0,1.0138,0.9809,0.9111,72.822,6.4772,0.0,79.7,16.0,10.48,130.14,10.61,18.34,39.52,2.32,0.0,0.7655,1.1764000000000001,1.9394,1.25,0.7875000000000001,3.3898,42.9217,8.2927,6.66,0.0,0.0,70.0849,5.509,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 +house085.xml,-25.28,118.946,70.182,118.249,0.2259,0.9641,1.0312,1.0,0.9941,-0.4259,59.453,84.775,0.0,52.64,14.0,14.53,39.81,7.09,16.3,37.79,0.0,0.0,1.1657,1.0367,1.0245,0.8864,0.525,1.1494,41.334,1.6152,2.6597,0.0,0.0,31.2393,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.81,8607.59,52.58,1.0,52.58,59.35,59.35,0.0,47.34,1.0,47.34,59.35,59.35,0.0,51.59,130.711,70.5645,129.9451,0.2259,0.9641,1.0312,1.0,0.9941,0.95,59.271,2.9636,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.0314,1.0241,0.8864,0.525,1.1494,41.7725,1.5602,2.6599,0.0,0.0,31.0813,0.794,2.9852,31.080000000000002,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 +house086.xml,52.91,74.196,40.9202,77.3411,0.30318,1.0164,1.0,1.0255,1.0424,1.0,33.686,0.0,0.0,21.8,19.27,8.82,16.29,10.93,10.26,23.15,0.93,0.23,0.593,0.4629,0.9554,0.4432,0.2625,1.1111,14.4405,8.7534,1.4643,0.0,0.0,10.7941,4.964,1.703,10.79,4.96,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0,53.57,6093.41,10911.39,50.03,1.0,50.03,52.91,52.91,0.0,48.62,1.0,48.62,52.91,52.91,0.0,52.31,74.617,40.685,77.78,0.30318,1.0164,1.0,1.0255,1.0424,1.0,33.569,0.0,0.0,22.22,19.26,8.82,16.62,11.0,10.26,23.15,0.93,0.24,0.5927,0.4598,0.9554,0.4432,0.2625,1.1111,14.3109,8.6479,1.4643,0.0,0.0,10.7021,4.938,1.703,10.7,4.94,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0 +house087.xml,48.82,29.58,15.6556,32.0689,0.21133,1.0973,0.9708,1.0177,1.0841,1.0,15.5404,0.0,0.0,6.57,4.35,5.78,5.47,2.47,12.14,12.56,0.32,0.0,0.5323,0.4631,0.8078,0.4432,0.2625,3.3898,3.7686,2.7167,1.0493,0.0,0.0,3.138,1.54,2.2016,3.14,1.54,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026,77.94,2633.54,3116.88,47.4,1.0,47.4,48.82,48.82,0.0,42.95,1.0,42.95,48.82,48.82,0.0,47.41,30.323,15.5849,32.8744,0.21133,1.0973,0.9708,1.0177,1.0841,1.0,15.4904,0.0,0.0,7.37,4.3,5.78,6.05,2.49,12.15,12.55,0.31,0.0,0.5399,0.4535,0.8071,0.4432,0.2625,3.3898,3.7824,2.6342,1.0483,0.0,0.0,3.105,1.525,2.2016,3.11,1.53,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026 +house088.xml,55.92,125.436,69.6151,124.4973,0.27196,0.9742,1.0188,1.0,0.9925,1.0,54.5306,0.0,0.0,55.73,23.27,11.38,88.93,14.17,19.75,33.88,1.18,0.0,0.8034,0.431,0.9936,1.2821,0.2625,1.7241,28.7666,10.0054,8.4341,0.0,0.0,45.9075,6.0941,14.6358,49.77,6.09,15.74,21.85,0.56,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,99.45,13216.11,13388.99,51.4,1.0,51.4,55.92,55.92,0.0,48.26,1.0,48.26,55.92,55.92,0.0,51.64,133.593,68.4683,132.5933,0.27196,0.9742,1.0188,1.0,0.9925,1.0,53.9388,0.0,0.0,63.89,23.35,11.38,101.96,14.71,19.77,33.87,1.11,0.0,0.8033,0.4166,0.993,1.2821,0.2625,1.7241,28.1888,9.4765,8.429,0.0,0.0,44.9869,5.9721,14.6358,48.77,5.97,15.74,21.85,0.52,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 diff --git a/workflow/tests/base_results/sample_files1.csv b/workflow/tests/base_results/sample_files1.csv index 4419b44c1..66c03f1be 100644 --- a/workflow/tests/base_results/sample_files1.csv +++ b/workflow/tests/base_results/sample_files1.csv @@ -1,97 +1,97 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-appliances-dehumidifier-ief-portable.xml,66.61,63.464,45.3762,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4514,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,2.5719,21.7189,5.9375,0.0,0.0,4.0861,12.8161,6.713,4.41,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.56,5756.76,7601.73,48.25,1.0,48.25,66.61,66.61,0.0,46.49,1.0,46.49,66.61,66.61,0.0,65.68,64.054,45.1559,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4514,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5646,21.5066,5.9368,0.0,0.0,4.0861,12.8161,6.713,4.41,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,66.61,63.435,45.3554,68.0869,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4504,0.0,0.0,9.87,26.58,7.52,15.71,15.69,8.5,19.22,0.0,0.25,0.8058,0.4446,0.9614,1.2821,0.2625,1.087,2.5653,21.7026,5.9375,0.0,0.0,4.0815,12.8151,6.713,4.4,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.54,5756.24,7602.44,48.31,1.0,48.31,66.61,66.61,0.0,46.66,1.0,46.66,66.61,66.61,0.0,65.68,64.015,45.1259,68.7095,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4504,0.0,0.0,10.35,26.65,7.52,16.53,15.9,8.5,19.22,0.0,0.28,0.8029,0.4401,0.9613,1.2821,0.2625,1.087,2.5562,21.4829,5.9368,0.0,0.0,4.0815,12.8151,6.713,4.4,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-multiple.xml,66.61,63.502,45.3976,68.1589,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4462,0.0,0.0,9.93,26.62,7.52,15.73,15.69,8.5,19.22,0.0,0.21,0.8092,0.4453,0.9613,1.2821,0.2625,1.087,2.5803,21.7366,5.9368,0.0,0.0,4.088,12.8141,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.55,5756.01,7601.1,48.11,1.0,48.11,66.61,66.61,0.0,46.17,1.0,46.17,66.61,66.61,0.0,65.68,64.075,45.1676,68.7739,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4462,0.0,0.0,10.41,26.69,7.52,16.56,15.89,8.5,19.22,0.0,0.24,0.806,0.4409,0.9612,1.2821,0.2625,1.087,2.57,21.5176,5.9361,0.0,0.0,4.088,12.8141,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier.xml,66.6,63.464,45.3649,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4414,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,2.5689,21.7155,5.9375,0.0,0.0,4.0815,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.54,5755.21,7601.73,48.25,1.0,48.25,66.6,66.6,0.0,46.49,1.0,46.49,66.6,66.6,0.0,65.66,64.054,45.1447,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4414,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5617,21.5033,5.9368,0.0,0.0,4.0815,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-gas.xml,78.59,78.469,62.3026,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7383,8.1667,8.2127,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.96,9043.98,5561.77,57.31,1.0,57.31,78.59,78.59,0.0,51.99,1.0,51.99,78.59,78.59,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-modified.xml,78.87,76.706,61.1332,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.231,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0538,7.9492,8.6872,0.0,0.0,36.728,4.916,9.542,39.59,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.56,8686.99,5561.77,56.74,1.0,56.74,78.87,78.87,0.0,51.28,1.0,51.28,78.87,78.87,0.0,74.9,80.736,61.1108,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.231,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0589,7.9232,8.6857,0.0,0.0,36.728,4.916,9.542,39.59,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-none.xml,79.89,76.706,61.9286,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.026,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.9851,7.9864,8.6071,0.0,0.0,36.6185,4.939,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.4,8734.29,5561.77,56.49,1.0,56.49,79.89,79.89,0.0,51.05,1.0,51.05,79.89,79.89,0.0,75.88,80.736,61.906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.026,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.9902,7.9603,8.6056,0.0,0.0,36.6185,4.939,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-oil.xml,78.59,78.469,62.3026,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7383,8.1667,8.2127,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.17,9280.52,5561.77,57.31,1.0,57.31,78.59,78.59,0.0,51.99,1.0,51.99,78.59,78.59,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-propane.xml,78.59,78.469,62.3026,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7383,8.1667,8.2127,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.6,9192.43,5561.77,57.31,1.0,57.31,78.59,78.59,0.0,51.99,1.0,51.99,78.59,78.59,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-wood.xml,78.59,78.469,62.3026,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7383,8.1667,8.2127,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.31,1.0,57.31,78.59,78.59,0.0,51.99,1.0,51.99,78.59,78.59,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-cathedral.xml,71.71,79.68,57.6831,80.4342,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.4214,0.0,0.0,33.37,8.6,10.49,53.14,5.22,11.52,27.23,0.0,0.0,0.805,0.4325,0.9896,1.2821,0.2625,1.087,20.9513,7.4029,8.212,0.0,0.0,33.3663,4.494,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.8,8061.27,5753.39,55.48,1.0,55.48,71.71,71.71,0.0,51.47,1.0,51.47,71.71,71.71,0.0,66.91,85.427,57.704,86.2356,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.4214,0.0,0.0,39.18,8.54,10.49,62.4,5.17,11.52,27.22,0.0,0.0,0.805,0.4338,0.9893,1.2821,0.2625,1.087,20.9515,7.4257,8.2098,0.0,0.0,33.3663,4.494,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-conditioned.xml,74.41,92.434,66.994,90.0293,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,38.38,10.94,10.49,61.13,6.46,11.52,32.63,0.0,0.0,0.8049,0.4443,0.9897,1.2821,0.2625,1.087,24.7767,8.8731,8.1262,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,9396.09,6666.56,57.37,1.0,57.37,74.41,74.41,0.0,51.62,1.0,51.62,74.41,74.41,0.0,68.31,100.681,66.9902,98.0618,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,46.71,10.86,10.49,74.38,6.42,11.52,32.62,0.0,0.0,0.805,0.4441,0.9894,1.2821,0.2625,1.087,24.7785,8.8696,8.1241,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-flat.xml,71.3,76.728,55.2203,77.4527,0.19844,0.9929,1.0,1.0166,1.0094,1.0,47.7388,0.0,0.0,30.34,8.67,10.49,48.32,5.22,11.52,27.23,0.0,0.0,0.805,0.4359,0.9897,1.2821,0.2625,1.087,19.3576,6.533,8.2127,0.0,0.0,30.8284,3.935,9.02,33.23,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,135.85,7622.45,5558.3,56.47,1.0,56.47,71.3,71.3,0.0,51.04,1.0,51.04,71.3,71.3,0.0,67.72,80.74,55.1958,81.5026,0.19844,0.9929,1.0,1.0166,1.0094,1.0,47.7388,0.0,0.0,34.43,8.6,10.49,54.83,5.2,11.52,27.22,0.0,0.0,0.805,0.4343,0.9895,1.2821,0.2625,1.087,19.3578,6.5097,8.2112,0.0,0.0,30.8284,3.935,9.02,33.23,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-radiant-barrier.xml,72.66,63.07,48.6155,66.9081,0.2289,1.0408,1.0,1.0192,1.0609,1.0,38.59,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,4.2924,23.3034,5.9387,0.0,0.0,6.8764,13.8091,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.04,6353.59,7577.77,47.22,1.0,47.22,72.66,72.66,0.0,44.3,1.0,44.3,72.66,72.66,0.0,71.67,63.66,48.4033,67.534,0.2289,1.0408,1.0,1.0192,1.0609,1.0,38.59,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,4.2924,23.0919,5.938,0.0,0.0,6.8764,13.8091,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-unvented-insulated-roof.xml,73.92,76.706,57.2068,77.3894,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.2486,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,21.1091,6.7688,8.2129,0.0,0.0,33.6298,4.186,9.021,36.25,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.97,8078.73,5561.77,56.49,1.0,56.49,73.92,73.92,0.0,51.05,1.0,51.05,73.92,73.92,0.0,70.21,80.736,57.1878,81.4553,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.2486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.1137,6.7467,8.2114,0.0,0.0,33.6298,4.186,9.021,36.25,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-vented.xml,76.37,77.043,59.4607,77.8576,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2046,0.0,0.0,31.1,8.24,10.49,49.54,5.12,11.82,27.23,0.0,0.0,0.8047,0.4224,0.9644,1.2821,0.2625,1.087,23.1509,7.0444,8.1484,0.0,0.0,36.8829,4.378,9.184,39.76,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.74,8607.89,5613.45,57.26,1.0,57.26,76.37,76.37,0.0,51.95,1.0,51.95,76.37,76.37,0.0,72.54,81.09,59.4409,81.9474,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2046,0.0,0.0,35.21,8.17,10.49,56.08,5.1,11.82,27.22,0.0,0.0,0.8049,0.4209,0.9644,1.2821,0.2625,1.087,23.1559,7.0196,8.1484,0.0,0.0,36.8829,4.378,9.184,39.76,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-battery.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,68.33,43.006,32.0813,46.9518,0.23018,1.071,1.0,1.0193,1.0917,1.0,29.7806,0.0,0.0,11.05,5.03,10.49,17.67,3.47,11.51,16.43,0.0,0.0,0.8019,0.3812,0.9903,1.2821,0.2625,1.087,6.9754,3.4677,8.7142,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,105.84,3776.2,3268.07,65.48,1.0,65.48,68.33,68.33,0.0,55.68,1.0,55.68,68.33,68.33,0.0,70.83,41.508,32.0967,45.3163,0.23018,1.071,1.0,1.0193,1.0917,1.0,29.7806,0.0,0.0,9.49,5.09,10.49,15.18,3.49,11.51,16.44,0.0,0.0,0.8017,0.3829,0.9905,1.2821,0.2625,1.087,6.9738,3.4824,8.7165,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-location-portland-or.xml,67.24,35.219,25.5441,37.987,0.1984,1.0609,1.0,1.0166,1.0786,1.0,25.1802,0.0,0.0,5.72,3.09,9.97,9.16,2.25,11.0,16.43,0.0,0.0,0.8004,0.3602,0.9858,1.2821,0.2625,1.087,1.2937,3.0101,8.2563,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,76.37,2293.67,2784.69,61.93,1.0,61.93,67.24,67.24,0.0,49.5,1.0,49.5,67.24,67.24,0.0,69.51,34.211,25.6474,36.8998,0.1984,1.0609,1.0,1.0166,1.0786,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.36,10.99,16.45,0.0,0.0,0.8003,0.3719,0.9864,1.2821,0.2625,1.087,1.2937,3.1081,8.2616,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,65.18,40.964,29.2464,44.8714,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.7334,0.0,0.0,8.36,5.66,10.49,13.62,3.77,11.5,16.45,0.0,0.0,0.767,0.3949,0.991,1.25,0.2625,1.087,2.0079,5.5407,8.7019,0.0,0.0,3.2722,3.684,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.77,2639.54,3222.81,58.12,1.0,58.12,65.18,65.18,0.0,48.65,1.0,48.65,65.18,65.18,0.0,67.45,39.644,29.2917,43.4255,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.7334,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0028,5.5879,8.7049,0.0,0.0,3.2722,3.684,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,65.48,40.964,29.3837,44.8714,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.8952,0.0,0.0,8.36,5.66,10.49,13.62,3.77,11.5,16.45,0.0,0.0,0.767,0.3949,0.991,1.25,0.2625,1.087,2.1466,5.5392,8.7019,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,75.66,2670.8,3222.81,58.27,1.0,58.27,65.48,65.48,0.0,48.76,1.0,48.76,65.48,65.48,0.0,67.77,39.644,29.4285,43.4255,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.8952,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.1412,5.5864,8.7049,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,65.22,40.964,29.2664,44.8714,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.839,0.0,0.0,8.36,5.66,10.49,13.62,3.77,11.5,16.45,0.0,0.0,0.767,0.3949,0.991,1.25,0.2625,1.087,2.0278,5.5407,8.7019,0.0,0.0,3.3048,3.684,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.68,2636.54,3222.81,58.27,1.0,58.27,65.22,65.22,0.0,48.76,1.0,48.76,65.22,65.22,0.0,67.5,39.644,29.3116,43.4255,0.23891,1.0738,1.0,1.0201,1.0954,1.0,27.839,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0228,5.5879,8.7049,0.0,0.0,3.3048,3.684,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,64.68,40.961,28.9758,44.7962,0.2347,1.0725,1.0,1.0197,1.0936,1.0,27.6032,0.0,0.0,8.36,5.66,10.49,12.639999999999999,3.77,11.5,16.45,0.0,0.0,1.165,0.3949,0.991,1.6932,0.2625,1.087,1.7387000000000001,5.5392,8.7019,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,72.15,2543.13,3222.81,57.28,1.0,57.28,64.68,66.9,0.0,48.28,1.0,48.28,64.68,66.9,0.0,66.91,39.642,29.0101,43.3537,0.2347,1.0725,1.0,1.0197,1.0936,1.0,27.6032,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3982,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5864,8.7049,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,64.96,40.963,29.0567,44.7276,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.4198,0.0,0.0,8.36,5.66,10.49,13.31,3.77,11.5,16.45,0.0,0.0,0.8048,0.3949,0.991,1.2821,0.2625,1.087,3.1266,4.2322,8.7019,0.0,0.0,4.9807,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,78.83,2773.99,3222.81,63.44,1.0,63.44,64.96,64.96,0.0,50.22,1.0,50.22,64.96,64.96,0.0,67.21,39.644,29.0956,43.2874,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.4198,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.2683,8.7049,0.0,0.0,4.9807,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,66.67,40.963,29.8186,44.7276,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.9264,0.0,0.0,8.36,5.66,10.49,13.31,3.77,11.5,16.45,0.0,0.0,0.8048,0.3949,0.991,1.2821,0.2625,1.087,3.1259,4.9948,8.7019,0.0,0.0,4.9797,3.321,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.89,2811.31,3222.81,63.89,1.0,63.89,66.67,66.67,0.0,50.64,1.0,50.64,66.67,66.67,0.0,68.99,39.644,29.8639,43.2874,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.9264,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,5.0373,8.7049,0.0,0.0,4.9797,3.321,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,65.47,40.963,29.2853,44.7276,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.5718,0.0,0.0,8.36,5.66,10.49,13.31,3.77,11.5,16.45,0.0,0.0,0.8048,0.3949,0.991,1.2821,0.2625,1.087,3.1266,4.4609,8.7019,0.0,0.0,4.9807,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.14,2784.96,3222.81,63.89,1.0,63.89,65.47,65.47,0.0,50.64,1.0,50.64,65.47,65.47,0.0,67.75,39.644,29.3261,43.2874,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.5718,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.4989,8.7049,0.0,0.0,4.9807,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,74.94,40.963,33.5169,44.7276,0.23056,1.0712,1.0,1.0194,1.0919,1.0,30.3864,0.0,0.0,8.36,5.66,10.49,13.31,3.77,11.5,16.45,0.0,0.0,0.8048,0.3949,0.991,1.2821,0.2625,1.087,3.1259,8.6931,8.7019,0.0,0.0,4.9797,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,84.96,2989.62,3222.81,66.9,1.0,66.9,74.94,74.94,0.0,53.38,1.0,53.38,74.94,74.94,0.0,77.61,39.644,33.5938,43.2874,0.23056,1.0712,1.0,1.0194,1.0919,1.0,30.3864,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,8.7672,8.7049,0.0,0.0,4.9797,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,66.3,40.963,29.6546,44.7276,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.8184,0.0,0.0,8.36,5.66,10.49,13.31,3.77,11.5,16.45,0.0,0.0,0.8048,0.3949,0.991,1.2821,0.2625,1.087,3.1259,4.8308,8.7019,0.0,0.0,4.9797,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.67,2803.45,3222.81,63.56,1.0,63.56,66.3,66.3,0.0,50.33,1.0,50.33,66.3,66.3,0.0,68.61,39.644,29.6986,43.2874,0.23056,1.0712,1.0,1.0194,1.0919,1.0,27.8184,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,4.872,8.7049,0.0,0.0,4.9797,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-generator.xml,60.67,40.963,28.1336,44.7213,0.23018,1.071,1.0,1.0193,1.0917,0.9644,32.5332,1.1572,0.0,8.36,5.66,10.49,13.36,3.75,11.5,16.45,0.0,0.0,0.8018,0.3971,0.991,1.2821,0.2625,1.087,1.9725,4.4632,8.7019,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,132.16,4504.73,3122.05,56.55,1.0,56.55,62.91,62.91,0.0,47.11,1.0,47.11,62.91,62.91,0.0,62.78,39.645,28.1745,43.2824,0.23018,1.071,1.0,1.0193,1.0917,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,71.53,40.968,31.9655,44.686,0.22779,1.0703,1.0,1.0191,1.0908,1.0,28.747,0.0,0.0,8.36,5.67,10.49,6.92,2.89,11.5,16.45,0.0,0.0,0.5352,0.5142,0.991,0.4432,0.2625,1.087,3.0464,7.2212,8.7019,0.0,0.0,2.523,3.687,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.62,2336.61,3122.05,64.42,1.0,64.42,71.53,71.53,0.0,54.28,1.0,54.28,71.53,71.53,0.0,73.78,39.65,31.9105,43.2484,0.22779,1.0703,1.0,1.0191,1.0908,1.0,28.747,0.0,0.0,6.92,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.518,0.517,0.9914,0.4432,0.2625,1.087,2.9486,7.2611,8.7049,0.0,0.0,2.523,3.687,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,62.51,40.737,27.7958,44.4688,0.22984,1.0709,1.0,1.0193,1.0916,1.0,23.1036,0.0,0.0,7.96,5.83,10.48,12.72,3.82,18.22,16.46,0.0,0.0,0.8018,0.4009,1.9508,1.2821,0.2625,3.3898,1.8548,4.5916,8.3494,0.0,0.0,2.9656,3.007,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,114.23,3901.31,3128.77,50.3,1.0,50.3,62.51,62.51,0.0,42.29,1.0,42.29,62.51,62.51,0.0,64.66,39.451,27.8448,43.065,0.22984,1.0709,1.0,1.0193,1.0916,1.0,23.1036,0.0,0.0,6.54,5.96,10.48,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,1.953,1.2821,0.2625,3.3898,1.854,4.6318,8.359,0.0,0.0,2.9656,3.007,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 -base-bldgtype-mf-unit-shared-laundry-room.xml,59.69,40.737,26.544,44.4688,0.22984,1.0709,1.0,1.0193,1.0916,1.0,22.2402,0.0,0.0,7.96,5.83,10.49,12.72,3.82,18.23,16.46,0.0,0.0,0.8018,0.4009,0.9754,1.2821,0.2625,1.6949,2.0857,4.3687,7.0977,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,106.22,3628.08,3129.06,50.3,1.0,50.3,59.69,59.69,0.0,42.29,1.0,42.29,59.69,59.69,0.0,61.74,39.451,26.5896,43.065,0.22984,1.0709,1.0,1.0193,1.0916,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,0.9765,1.2821,0.2625,1.6949,2.0848,4.4069,7.1059,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,68.84,41.511,31.1989,45.3196,0.23018,1.071,1.0,1.0193,1.0917,1.0,29.3638,0.0,0.0,8.23,5.75,10.49,13.16,3.78,11.5,16.46,0.59,0.0,0.8019,0.3989,0.9911,1.2821,0.2625,1.087,0.5633,4.9666,8.6944,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,85.07,2940.72,3166.3,56.55,1.0,56.55,68.84,68.84,0.0,47.11,1.0,47.11,68.84,68.84,0.0,71.18,40.204,31.2445,43.8927,0.23018,1.071,1.0,1.0193,1.0917,1.0,29.3638,0.0,0.0,6.79,5.87,10.49,10.87,3.83,11.5,16.46,0.59,0.0,0.8016,0.4023,0.9915,1.2821,0.2625,1.087,0.5631,5.0094,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,65.23,41.511,29.5635,45.3196,0.23018,1.071,1.0,1.0193,1.0917,1.0,28.2992,0.0,0.0,8.23,5.75,10.49,13.16,3.78,11.5,16.46,0.59,0.0,0.8019,0.3989,0.9911,1.2821,0.2625,1.087,1.845,4.526,8.7035,0.0,0.0,2.9498,2.979,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,76.65,2649.68,3166.3,56.55,1.0,56.55,65.23,65.23,0.0,47.11,1.0,47.11,65.23,65.23,0.0,67.45,40.204,29.6048,43.8927,0.23018,1.071,1.0,1.0193,1.0917,1.0,28.2992,0.0,0.0,6.79,5.87,10.49,10.87,3.83,11.5,16.46,0.59,0.0,0.8016,0.4023,0.9915,1.2821,0.2625,1.087,1.8443,4.565,8.7066,0.0,0.0,2.9498,2.979,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,9.43,40.963,28.1336,44.7213,0.23018,1.071,1.0,1.0193,1.0917,0.1499,27.7364,24.448,0.87,8.36,5.66,10.49,13.36,3.75,11.5,16.45,0.0,0.0,0.8018,0.3971,0.991,1.2821,0.2625,1.087,1.9725,4.4632,8.7019,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,21.36,728.0,3122.05,56.55,1.0,56.55,62.91,62.91,0.0,47.11,1.0,47.11,62.91,62.91,0.0,61.59,39.645,28.1745,43.2824,0.23018,1.071,1.0,1.0193,1.0917,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv.xml,5.66,40.963,28.1336,44.7213,0.23018,1.071,1.0,1.0193,1.0917,0.09,26.8664,24.448,0.0,8.36,5.66,10.49,13.36,3.75,11.5,16.45,0.0,0.0,0.8018,0.3971,0.991,1.2821,0.2625,1.087,1.9725,4.4632,8.7019,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,25.83,880.51,3122.05,56.55,1.0,56.55,62.91,62.91,0.0,47.11,1.0,47.11,62.91,62.91,0.0,61.59,39.645,28.1745,43.2824,0.23018,1.071,1.0,1.0193,1.0917,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,61.3,40.713,27.2422,44.4426,0.22984,1.0709,1.0,1.0193,1.0916,1.0,23.3522,0.0,0.0,7.74,6.02,10.49,12.38,3.91,18.22,16.46,0.0,0.0,0.8018,0.4045,0.9757,1.2821,0.2625,1.6949,2.0159,4.5019,7.7304,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,108.76,3706.57,3122.05,51.13,1.0,51.13,61.3,61.3,0.0,43.06,1.0,43.06,61.3,61.3,0.0,63.37,39.453,27.2915,43.0671,0.22984,1.0709,1.0,1.0193,1.0916,1.0,23.3522,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-water-heater.xml,59.88,40.713,26.6112,44.4426,0.22984,1.0709,1.0,1.0193,1.0916,1.0,22.2562,0.0,0.0,7.74,6.02,10.49,12.38,3.91,18.22,16.46,0.0,0.0,0.8018,0.4045,0.9757,1.2821,0.2625,1.6949,2.0159,4.5019,7.0994,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,106.07,3615.03,3122.05,50.3,1.0,50.3,59.88,59.88,0.0,42.37,1.0,42.37,59.88,59.88,0.0,61.9,39.453,26.6598,43.0671,0.22984,1.0709,1.0,1.0193,1.0916,1.0,22.2562,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit.xml,62.91,40.963,28.1336,44.7213,0.23018,1.071,1.0,1.0193,1.0917,1.0,26.8664,0.0,0.0,8.36,5.66,10.49,13.36,3.75,11.5,16.45,0.0,0.0,0.8018,0.3971,0.991,1.2821,0.2625,1.087,1.9725,4.4632,8.7019,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.99,2555.89,3122.05,56.55,1.0,56.55,62.91,62.91,0.0,47.11,1.0,47.11,62.91,62.91,0.0,65.09,39.645,28.1745,43.2824,0.23018,1.071,1.0,1.0193,1.0917,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-sfa-unit.xml,74.56,57.943,44.867,60.1769,0.2217,1.0196,1.0,1.0186,1.0386,1.0,39.7326,0.0,0.0,19.89,5.74,10.49,31.71,3.84,11.52,21.82,0.0,0.0,0.8041,0.3921,0.9897,1.2821,0.2625,1.087,14.576,4.8087,8.4603,0.0,0.0,23.2386,3.22,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,135.66,6070.27,4308.36,55.29,1.0,55.29,74.56,74.56,0.0,50.08,1.0,50.08,74.56,74.56,0.0,72.7,59.408,44.8566,61.6984,0.2217,1.0196,1.0,1.0186,1.0386,1.0,39.7326,0.0,0.0,21.4,5.7,10.49,34.11,3.83,11.52,21.82,0.0,0.0,0.8043,0.3911,0.9896,1.2821,0.2625,1.087,14.5782,4.7968,8.4596,0.0,0.0,23.2386,3.22,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-combi-tankless.xml,64.42,76.245,49.6542,77.0829,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.3712,0.0,0.0,29.83,8.7,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.4249,0.9711,1.25,0.2625,1.6949,18.3981,7.5829,2.5552,0.0,0.0,30.1219,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,147.22,8503.5,5713.08,55.17,1.0,55.17,64.42,64.42,0.0,49.88,1.0,49.88,64.42,64.42,0.0,61.23,80.249,49.6788,81.1309,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.3712,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4234,0.9706,1.25,0.2625,1.6949,18.4514,7.5554,2.5539,0.0,0.0,30.1219,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-desuperheater.xml,83.27,76.706,64.5514,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.2722,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.8089,8.288,6.3365,0.0,0.0,45.8796,5.156,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.47,9380.25,5713.08,71.77,1.0,71.77,83.27,83.27,0.0,62.69,1.0,62.69,83.27,83.27,0.0,79.08,80.736,64.5197,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.2722,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.8087,8.2576,6.3354,0.0,0.0,45.8796,5.156,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-dwhr.xml,75.19,76.706,58.2826,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.1276,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,6.1444,0.0,0.0,36.7837,4.905,6.749,39.65,4.91,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.24,8444.22,5561.77,56.49,1.0,56.49,75.19,75.19,0.0,51.05,1.0,51.05,75.19,75.19,0.0,71.41,80.736,58.2607,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.1276,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,6.1433,0.0,0.0,36.7837,4.905,6.749,39.65,4.91,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-indirect-standbyloss.xml,68.22,76.193,52.5354,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4762,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,17.4612,8.0342,5.9191,0.0,0.0,28.5907,4.96,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,152.5,8831.68,5729.65,55.17,1.0,55.17,68.22,68.22,0.0,49.88,1.0,49.88,68.22,68.22,0.0,64.84,80.194,52.5541,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4762,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.5115,8.0058,5.9159,0.0,0.0,28.5907,4.96,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-gas.xml,77.99,76.194,60.0354,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,47.8354,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.5893,8.184,8.1421,0.0,0.0,35.9896,5.021,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,175.32,9881.77,5578.83,54.22,1.0,54.22,77.99,77.99,0.0,48.57,1.0,48.57,77.99,77.99,0.0,74.06,80.195,60.0048,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,47.8354,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.5948,8.1523,8.1377,0.0,0.0,35.9896,5.021,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-hpwh.xml,73.91,76.404,57.0403,77.1744,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.1256,0.0,0.0,30.08,8.61,10.49,47.92,5.3,12.41,27.23,0.0,0.0,0.8047,0.4265,0.9824,1.2821,0.2625,1.1628,25.845,7.0267,3.0566,0.0,0.0,41.175,4.325,3.618,44.39,4.33,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,155.58,8824.51,5615.29,56.81,1.0,56.81,73.91,73.91,0.0,51.34,1.0,51.34,73.91,73.91,0.0,70.2,80.416,57.0203,81.2268,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.1256,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.8049,0.425,0.9821,1.2821,0.2625,1.1628,25.8508,7.0019,3.0557,0.0,0.0,41.175,4.325,3.618,44.39,4.33,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-jacket-indirect.xml,67.14,76.193,51.7042,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,17.7318,7.9046,4.9477,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,151.16,8754.0,5729.65,55.17,1.0,55.17,67.14,67.14,0.0,49.88,1.0,49.88,67.14,67.14,0.0,63.81,80.194,51.7246,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.7829,7.8766,4.9451,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-low-flow-fixtures.xml,77.59,76.706,60.148,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1766,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.0098,0.0,0.0,36.7837,4.905,8.798,39.65,4.91,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.16,8608.47,5561.77,56.49,1.0,56.49,77.59,77.59,0.0,51.05,1.0,51.05,77.59,77.59,0.0,73.69,80.736,60.1258,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1766,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.0085,0.0,0.0,36.7837,4.905,8.798,39.65,4.91,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-multiple.xml,67.37,76.706,52.245,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,42.5986,0.0,0.0,30.56,8.43,10.5,49.99,5.25,11.5,27.23,0.0,0.0,0.7641,0.422,5.9382,1.25,0.2625,6.522,17.8517,7.7993,5.4738,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,131.7,7606.88,5712.89,61.52,1.0,61.52,67.37,67.37,0.0,56.1,1.0,56.1,67.37,67.37,0.0,64.03,80.737,52.2656,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,42.5986,0.0,0.0,34.66,8.37,10.5,56.54,5.23,11.5,27.22,0.0,0.0,0.7663,0.4205,5.9364,1.25,0.2625,6.522,17.9024,7.7707,5.4725,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 -base-dhw-none.xml,82.15,76.246,63.2995,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.4304,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,22.2865,8.3049,10.4851,0.0,0.0,35.5063,5.099,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,186.77,10497.1,5561.77,61.41,1.0,61.41,82.15,82.15,0.0,56.57,1.0,56.57,82.15,82.15,0.0,78.02,80.248,63.2686,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.4304,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,22.2916,8.2741,10.4799,0.0,0.0,35.5063,5.099,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-recirc-demand.xml,77.8,76.706,60.3055,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3486,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.1673,0.0,0.0,36.7837,4.905,8.971,39.65,4.91,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.41,8622.29,5561.77,56.49,1.0,56.49,77.8,77.8,0.0,51.05,1.0,51.05,77.8,77.8,0.0,73.89,80.736,60.2833,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.1659,0.0,0.0,36.7837,4.905,8.971,39.65,4.91,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-fraction.xml,71.11,76.706,55.1182,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,45.6168,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.2599,7.8651,2.8751,0.0,0.0,37.0564,4.864,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.82,8195.63,5561.77,56.49,1.0,56.49,71.11,71.11,0.0,51.05,1.0,51.05,71.11,71.11,0.0,67.53,80.736,55.0971,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,45.6168,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.265,7.8394,2.8746,0.0,0.0,37.0564,4.864,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-indirect-flat-plate.xml,69.3,76.706,53.7157,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.0862,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.8471,8.1772,1.5714,0.0,0.0,36.3987,5.057,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.28,7996.84,5561.77,56.49,1.0,56.49,69.3,69.3,0.0,51.05,1.0,51.05,69.3,69.3,0.0,65.81,80.736,53.6937,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.0862,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.8521,8.1505,1.5711,0.0,0.0,36.3987,5.057,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-elec-uef.xml,77.87,76.753,60.4004,77.5688,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.4542,0.0,0.0,30.64,8.4,10.49,48.81,5.2,11.38,27.23,0.0,0.0,0.8047,0.4243,0.9908,1.2821,0.2625,1.0753,23.055,7.9386,8.2878,0.0,0.0,36.7308,4.912,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,153.67,8624.37,5553.21,56.74,1.0,56.74,77.87,77.87,0.0,51.25,1.0,51.25,77.87,77.87,0.0,73.95,80.786,60.3773,81.6447,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.4542,0.0,0.0,34.74,8.34,10.49,55.33,5.18,11.38,27.22,0.0,0.0,0.8049,0.4228,0.9906,1.2821,0.2625,1.0753,23.0609,7.9111,8.2863,0.0,0.0,36.7308,4.912,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-gas-uef.xml,77.83,76.344,60.0688,77.1829,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.0056,0.0,0.0,29.99,8.64,10.49,47.78,5.31,17.66,27.23,0.0,0.0,0.8047,0.427,0.9737,1.2821,0.2625,1.6393,22.5138,8.1954,8.2396,0.0,0.0,35.869,5.039,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,177.05,9940.04,5553.21,54.22,1.0,54.22,77.83,77.83,0.0,48.57,1.0,48.57,77.83,77.83,0.0,73.91,80.354,60.0383,81.237,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.0056,0.0,0.0,34.07,8.58,10.49,54.27,5.29,17.67,27.22,0.0,0.0,0.8049,0.4253,0.9733,1.2821,0.2625,1.6393,22.5189,8.1636,8.2359,0.0,0.0,35.869,5.039,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-heat-pump-uef.xml,73.03,76.61,56.532,77.4073,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.436,0.0,0.0,30.41,8.49,10.49,48.45,5.24,11.81,27.23,0.0,0.0,0.8047,0.4252,0.9872,1.2821,0.2625,1.1111,26.3682,6.8669,2.1869,0.0,0.0,42.0089,4.24,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,157.39,8871.97,5578.83,56.55,1.0,56.55,73.03,73.03,0.0,51.11,1.0,51.11,73.03,73.03,0.0,69.36,80.634,56.5131,81.4732,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.436,0.0,0.0,34.5,8.42,10.49,54.95,5.22,11.81,27.22,0.0,0.0,0.8049,0.4237,0.987,1.2821,0.2625,1.1111,26.3741,6.8425,2.1865,0.0,0.0,42.0089,4.24,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-oil.xml,78.6,76.194,60.5086,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3383,8.2818,8.7675,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,190.35,10728.99,5578.83,54.22,1.0,54.22,78.6,78.6,0.0,48.57,1.0,48.57,78.6,78.6,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-wood.xml,78.6,76.194,60.5086,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3383,8.2818,8.7675,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.22,1.0,54.22,78.6,78.6,0.0,48.57,1.0,48.57,78.6,78.6,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-electric-uef.xml,78.23,76.706,60.6442,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.6658,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.3519,7.8312,8.3431,0.0,0.0,37.2029,4.843,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,154.74,8697.21,5561.77,56.64,1.0,56.64,78.23,78.23,0.0,51.19,1.0,51.19,78.23,78.23,0.0,74.3,80.736,60.6222,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.6658,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.3571,7.8056,8.3416,0.0,0.0,37.2029,4.843,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tankless-gas-uef.xml,71.63,76.246,55.1907,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.3646,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.3514,7.888,2.8333,0.0,0.0,37.2029,4.843,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,167.0,9385.95,5561.77,54.22,1.0,54.22,71.63,71.63,0.0,48.57,1.0,48.57,71.63,71.63,0.0,68.03,80.248,55.1653,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.3646,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,2.8319,0.0,0.0,37.2029,4.843,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-propane.xml,73.92,76.246,56.9592,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.9778,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.3514,7.888,4.6018,0.0,0.0,37.2029,4.843,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,177.09,9953.13,5561.77,54.22,1.0,54.22,73.92,73.92,0.0,48.57,1.0,48.57,73.92,73.92,0.0,70.21,80.248,56.9329,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.9778,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,4.5995,0.0,0.0,37.2029,4.843,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-enclosure-2stories-garage.xml,76.88,92.009,69.3027,90.148,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,40.03,10.63,10.49,63.76,6.24,11.52,30.87,0.0,0.0,0.8049,0.4467,0.9896,1.2821,0.2625,1.087,25.3051,12.0508,8.1737,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.48,6613.03,56.31,1.0,56.31,76.88,76.88,0.0,51.54,1.0,51.54,76.88,76.88,0.0,70.45,100.556,69.4126,98.5222,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,48.62,10.59,10.49,77.43,6.17,11.52,30.86,0.0,0.0,0.805,0.4508,0.9892,1.2821,0.2625,1.087,25.3065,12.1622,8.1709,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-2stories.xml,76.8,104.694,77.621,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,30.5132,11.7682,8.0706,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,11119.81,7501.77,56.01,1.0,56.01,76.8,76.8,0.0,51.2,1.0,51.2,76.8,76.8,0.0,70.42,114.3,77.7037,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,30.5147,11.8522,8.0678,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-1.xml,82.55,69.215,55.9746,67.8046,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,29.82,7.9,6.15,47.49,4.93,7.18,25.34,0.0,0.0,0.805,0.4209,0.931,1.2821,0.2625,1.087,24.1297,7.467,4.6918,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.11,8466.05,4992.31,57.98,1.0,57.98,82.55,82.55,0.0,53.07,1.0,53.07,82.55,82.55,0.0,78.02,73.247,55.985,71.7544,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,33.92,7.84,6.15,54.01,4.89,7.19,25.33,0.0,0.0,0.805,0.4214,0.9307,1.2821,0.2625,1.087,24.132,7.4765,4.6905,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-2.xml,80.08,73.023,58.1936,72.665,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,30.19,8.17,8.39,48.09,5.07,9.42,26.28,0.0,0.0,0.8048,0.4227,0.9679,1.2821,0.2625,1.087,23.6058,7.6976,6.4882,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.64,8548.6,5281.97,57.22,1.0,57.22,80.08,80.08,0.0,52.01,1.0,52.01,80.08,80.08,0.0,75.8,77.056,58.1246,76.6782,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,34.29,8.11,8.39,54.6,5.08,9.42,26.28,0.0,0.0,0.8051,0.4186,0.9677,1.2821,0.2625,1.087,23.6122,7.6235,6.4868,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-4.xml,75.8,80.327,62.4727,82.4157,0.22158,0.9921,1.0153,1.0186,1.026,1.0,53.559,0.0,0.0,30.93,8.7,12.53,49.29,5.36,13.56,28.17,0.0,0.0,0.8046,0.4264,1.0042,1.2821,0.2625,1.087,22.5741,8.168,9.8985,0.0,0.0,35.9711,5.029,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.32,8701.71,5836.33,55.72,1.0,55.72,75.8,75.8,0.0,50.09,1.0,50.09,75.8,75.8,0.0,72.15,84.356,62.4478,86.5495,0.22158,0.9921,1.0153,1.0186,1.026,1.0,53.559,0.0,0.0,35.03,8.63,12.53,55.81,5.33,13.56,28.17,0.0,0.0,0.8048,0.4249,1.0041,1.2821,0.2625,1.087,22.5792,8.1394,9.8971,0.0,0.0,35.9711,5.029,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-5.xml,73.91,83.91,64.5867,87.3877,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,55.7096,0.0,0.0,31.3,8.97,14.53,49.89,5.5,15.56,29.11,0.0,0.0,0.8045,0.4281,1.0148,1.2821,0.2625,1.087,22.0709,8.4061,11.5627,0.0,0.0,35.1742,5.155,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.12,8778.14,6102.48,54.96,1.0,54.96,73.91,73.91,0.0,49.16,1.0,49.16,73.91,73.91,0.0,70.5,87.938,64.563,91.5826,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,55.7096,0.0,0.0,35.4,8.9,14.53,56.41,5.48,15.56,29.11,0.0,0.0,0.8047,0.4267,1.0147,1.2821,0.2625,1.087,22.0764,8.3784,11.5612,0.0,0.0,35.1742,5.155,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-ceilingtypes.xml,88.09,76.706,67.8241,76.9934,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,30.452,8.0462,8.2129,0.0,0.0,48.5143,4.976,9.021,52.3,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.13,10502.81,5561.77,56.38,1.0,56.38,88.09,88.09,0.0,50.95,1.0,50.95,88.09,88.09,0.0,83.67,80.736,67.803,81.0385,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,30.4586,8.0199,8.2114,0.0,0.0,48.5143,4.976,9.021,52.3,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-floortypes.xml,96.19,56.885,57.9423,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,48.1844,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,27.5579,7.0361,8.3944,0.0,0.0,44.0024,4.468,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,208.95,9234.91,4173.95,54.87,1.0,54.87,96.19,96.19,0.0,49.58,1.0,49.58,96.19,96.19,0.0,93.59,58.457,57.9333,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,48.1844,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,27.5626,7.023,8.3937,0.0,0.0,44.0024,4.468,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-garage.xml,77.49,75.021,58.7452,75.813,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.7564,0.0,0.0,30.44,6.97,10.49,48.49,4.5,11.73,27.12,0.0,0.0,0.8048,0.4068,0.9721,1.2821,0.2625,1.087,24.5442,5.1113,8.1457,0.0,0.0,39.0999,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.55,8865.59,5498.43,57.11,1.0,57.11,77.49,77.49,0.0,51.49,1.0,51.49,77.49,77.49,0.0,73.46,79.12,58.7364,79.9553,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.7564,0.0,0.0,34.58,6.93,10.49,55.07,4.49,11.73,27.12,0.0,0.0,0.805,0.4056,0.9721,1.2821,0.2625,1.087,24.5503,5.0964,8.1457,0.0,0.0,39.0999,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ach-house-pressure.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm-house-pressure.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm50.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ela.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-ach.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-cfm.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-overhangs.xml,77.71,76.706,60.2368,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3456,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.2821,7.6258,8.212,0.0,0.0,37.0916,4.716,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.11,8661.47,5561.77,56.49,1.0,56.49,77.71,77.71,0.0,51.05,1.0,51.05,77.71,77.71,0.0,73.8,80.736,60.2156,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3456,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.2872,7.6009,8.2105,0.0,0.0,37.0916,4.716,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-skylights.xml,78.42,76.706,60.7323,77.4444,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.454,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.2055,9.1927,8.2101,0.0,0.0,35.3765,5.6851,9.018,38.14,5.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.82,8468.84,5561.77,56.49,1.0,56.49,78.42,78.42,0.0,51.05,1.0,51.05,78.42,78.42,0.0,74.47,80.736,60.7057,81.5132,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.454,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2103,9.1627,8.2087,0.0,0.0,35.3765,5.6851,9.018,38.14,5.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-walltypes.xml,91.75,76.661,70.2028,76.5127,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.809,0.0,0.0,30.52,8.42,10.49,48.63,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,34.4134,6.4677,8.2147,0.0,0.0,54.8276,3.999,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,205.23,11387.07,5559.26,56.61,1.0,56.61,91.75,91.75,0.0,51.16,1.0,51.16,91.75,91.75,0.0,87.15,80.692,70.1859,80.5359,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.809,0.0,0.0,34.62,8.36,10.49,55.15,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,34.4215,6.4441,8.2133,0.0,0.0,54.8276,3.999,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-ambient.xml,79.5,56.885,47.8847,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.8378,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,15.498,9.0124,8.3844,0.0,0.0,24.746,5.7231,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.49,6297.6,4173.95,55.06,1.0,55.06,79.5,79.5,0.0,49.78,1.0,49.78,79.5,79.5,0.0,77.34,58.457,47.87,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.8378,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,15.5006,8.9957,8.3837,0.0,0.0,24.746,5.7231,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-basement-garage.xml,75.71,68.04,53.3032,70.4061,0.2217,1.0159,1.0,1.0186,1.0348,1.0,45.4954,0.0,0.0,27.7,7.1,10.49,44.11,4.46,11.52,22.76,0.0,0.0,0.805,0.4176,0.9895,1.2821,0.2625,1.087,19.2737,7.9853,8.4243,0.0,0.0,30.6939,5.02,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.22,7407.04,4929.0,55.39,1.0,55.39,75.71,75.71,0.0,50.35,1.0,50.35,75.71,75.71,0.0,72.68,70.9,53.3211,73.3656,0.2217,1.0159,1.0,1.0186,1.0348,1.0,45.4954,0.0,0.0,30.61,7.05,10.49,48.74,4.42,11.52,22.76,0.0,0.0,0.8051,0.4186,0.9893,1.2821,0.2625,1.087,19.2747,8.0037,8.4228,0.0,0.0,30.6939,5.02,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,77.34,76.706,59.9527,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0684,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.3254,8.2952,8.211,0.0,0.0,35.5676,5.13,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.38,8452.32,5561.77,56.49,1.0,56.49,77.34,77.34,0.0,51.05,1.0,51.05,77.34,77.34,0.0,73.45,80.736,59.9291,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0684,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.3303,8.2681,8.2096,0.0,0.0,35.5676,5.13,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,77.9,74.913,58.9697,75.7039,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6008,0.0,0.0,29.13,8.07,10.49,46.41,5.04,11.52,27.23,0.0,0.0,0.8047,0.4205,0.9896,1.2821,0.2625,1.087,22.4157,7.2261,8.212,0.0,0.0,35.7132,4.512,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.62,8422.69,5460.9,57.42,1.0,57.42,77.9,77.9,0.0,51.82,1.0,51.82,77.9,77.9,0.0,73.9,78.939,58.9491,79.7724,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6008,0.0,0.0,33.22,8.01,10.49,52.91,5.02,11.52,27.22,0.0,0.0,0.8049,0.419,0.9894,1.2821,0.2625,1.087,22.4211,7.2015,8.2105,0.0,0.0,35.7132,4.512,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-multiple.xml,73.13,55.64,43.0852,58.9164,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7048,0.0,0.0,19.82,6.53,10.49,31.66,4.25,11.67,18.8,0.0,0.0,0.8027,0.4038,0.9769,1.2821,0.2625,1.087,12.3829,7.7011,8.2412,0.0,0.0,19.7786,5.007,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.01,5436.85,4107.42,54.46,1.0,54.46,73.13,73.13,0.0,49.0,1.0,49.0,73.13,73.13,0.0,71.08,57.233,43.0757,60.6032,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7048,0.0,0.0,21.44,6.5,10.49,34.24,4.24,11.67,18.8,0.0,0.0,0.8028,0.4032,0.9769,1.2821,0.2625,1.087,12.3848,7.6897,8.2412,0.0,0.0,19.7786,5.007,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-slab.xml,65.57,57.803,40.1329,61.2068,0.2217,1.0395,1.0,1.0186,1.0589,1.0,35.6438,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.804,0.4053,0.9896,1.2821,0.2625,1.087,9.9908,6.7679,8.3822,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,108.02,4809.09,4204.44,54.18,1.0,54.18,65.57,65.57,0.0,49.11,1.0,49.11,65.57,65.57,0.0,63.8,59.388,40.1238,62.8851,0.2217,1.0395,1.0,1.0186,1.0589,1.0,35.6438,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8041,0.4047,0.9895,1.2821,0.2625,1.087,9.9922,6.7581,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,70.56,55.744,41.6473,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.6806,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,11.6593,7.0312,8.2618,0.0,0.0,18.6228,4.541,9.189,20.08,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,119.99,5218.63,4107.52,53.91,1.0,53.91,70.56,70.56,0.0,48.5,1.0,48.5,70.56,70.56,0.0,68.58,57.335,41.6382,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.6806,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,11.6612,7.0202,8.2618,0.0,0.0,18.6228,4.541,9.189,20.08,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,77.8,55.744,45.9249,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,16.3169,6.4877,8.2052,0.0,0.0,26.0623,4.19,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.68,6379.75,4107.52,53.91,1.0,53.91,77.8,77.8,0.0,48.5,1.0,48.5,77.8,77.8,0.0,75.63,57.335,45.9174,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,16.3197,6.4775,8.2052,0.0,0.0,26.0623,4.19,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement.xml,73.32,55.744,43.2786,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7898,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,12.495,7.8132,8.2564,0.0,0.0,19.9576,5.046,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.66,5465.57,4107.52,53.91,1.0,53.91,73.32,73.32,0.0,48.5,1.0,48.5,73.32,73.32,0.0,71.27,57.335,43.2684,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7898,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,12.4971,7.8009,8.2564,0.0,0.0,19.9576,5.046,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unvented-crawlspace.xml,71.3,55.446,41.8592,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.8244,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,10.6537,7.9279,8.2756,0.0,0.0,17.0171,4.99,9.288,18.35,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.91,5030.14,4098.46,55.77,1.0,55.77,71.3,71.3,0.0,50.41,1.0,50.41,71.3,71.3,0.0,69.34,56.992,41.8432,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.8244,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,10.655,7.9106,8.2756,0.0,0.0,17.0171,4.99,9.288,18.35,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace-above-grade.xml,73.52,55.377,43.1089,58.6379,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,18.41,7.35,10.49,29.41,4.64,11.79,19.13,0.0,0.0,0.8026,0.4158,0.9672,1.2821,0.2625,1.087,11.7637,8.0197,8.3265,0.0,0.0,18.7907,5.064,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,122.66,5320.46,4096.41,55.91,1.0,55.91,73.52,73.52,0.0,50.56,1.0,50.56,73.52,73.52,0.0,71.49,56.928,43.0944,60.2802,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.31,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8027,0.415,0.9672,1.2821,0.2625,1.087,11.7648,8.0041,8.3265,0.0,0.0,18.7907,5.064,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace.xml,73.15,55.446,42.9469,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.632,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,11.8245,7.7801,8.3442,0.0,0.0,18.8872,4.897,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,122.69,5324.57,4098.46,55.77,1.0,55.77,73.15,73.15,0.0,50.41,1.0,50.41,73.15,73.15,0.0,71.14,56.992,42.9313,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.632,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,11.8259,7.7632,8.3442,0.0,0.0,18.8872,4.897,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-walkout-basement.xml,79.39,81.34,64.0631,80.6969,0.2217,0.9921,1.0,1.0,0.9921,1.0,53.9078,0.0,0.0,34.15,9.48,10.49,54.41,5.76,11.52,27.23,0.0,0.0,0.8047,0.4323,0.9896,1.2821,0.2625,1.087,26.2907,8.4446,8.2129,0.0,0.0,41.8865,5.128,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.45,9442.93,5859.04,56.11,1.0,56.11,79.39,79.39,0.0,51.25,1.0,51.25,79.39,79.39,0.0,73.42,87.92,64.0413,87.2249,0.2217,0.9921,1.0,1.0,0.9921,1.0,53.9078,0.0,0.0,40.78,9.43,10.49,64.95,5.75,11.52,27.22,0.0,0.0,0.805,0.4308,0.9893,1.2821,0.2625,1.087,26.3005,8.415,8.2107,0.0,0.0,41.8865,5.128,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.54,76.676,65.5044,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.8842,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5053,7.6684,8.2127,0.0,0.0,45.3977,3.909,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.74,9371.82,5629.63,70.31,1.0,70.31,84.54,84.54,0.0,61.27,1.0,61.27,84.54,84.54,0.0,80.29,80.71,65.4822,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.8842,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,7.6476,8.2105,0.0,0.0,45.3977,3.909,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.67,76.706,66.404,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.675,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4451,7.629,8.212,0.0,0.0,22.7922,4.746,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.73,4891.27,5713.08,56.0,1.0,56.0,85.67,85.67,0.0,50.29,1.0,50.29,85.67,85.67,0.0,81.65,80.737,66.6081,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.675,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.6009,8.2105,0.0,0.0,22.7922,4.746,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.0,76.714,65.1181,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.262,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.7195,7.0687,8.212,0.0,0.0,21.4292,3.696,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.26,4679.16,5561.77,53.17,1.0,53.17,84.0,84.0,0.0,47.33,1.0,47.33,84.0,84.0,0.0,80.15,80.744,65.3937,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.262,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0157,7.0495,8.2105,0.0,0.0,21.4292,3.696,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,83.99,76.714,65.1051,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.7275,7.0477,8.212,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.22,4677.23,5561.77,53.17,1.0,53.17,83.99,83.99,0.0,47.33,1.0,47.33,83.99,83.99,0.0,80.13,80.744,65.3808,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0238,7.0285,8.2105,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-portable.xml,71.47,63.464,48.6822,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8638,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,3.7915,22.9916,5.9401,0.0,0.0,6.0239,13.5671,6.716,6.49,13.57,6.72,15.09,0.78,0.09,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6305.76,7601.73,48.3,1.0,48.3,71.47,71.47,0.0,46.52,1.0,46.52,71.47,71.47,0.0,65.68,64.054,45.1559,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4514,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5646,21.5066,5.9368,0.0,0.0,4.0861,12.8161,6.713,4.41,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,71.48,63.435,48.6655,68.0869,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.869,0.0,0.0,9.87,26.58,7.52,15.71,15.69,8.5,19.22,0.0,0.25,0.8058,0.4446,0.9614,1.2821,0.2625,1.087,3.785,22.9744,5.9401,0.0,0.0,6.0221,13.5661,6.716,6.49,13.57,6.72,15.09,0.78,0.1,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6306.18,7602.44,48.36,1.0,48.36,71.48,71.48,0.0,46.69,1.0,46.69,71.48,71.48,0.0,65.68,64.015,45.1259,68.7095,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4504,0.0,0.0,10.35,26.65,7.52,16.53,15.9,8.5,19.22,0.0,0.28,0.8029,0.4401,0.9613,1.2821,0.2625,1.087,2.5562,21.4829,5.9368,0.0,0.0,4.0815,12.8151,6.713,4.4,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-multiple.xml,71.46,63.502,48.7039,68.1589,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8556,0.0,0.0,9.93,26.62,7.52,15.73,15.69,8.5,19.22,0.0,0.21,0.8092,0.4453,0.9613,1.2821,0.2625,1.087,3.8034,23.0071,5.9394,0.0,0.0,6.0258,13.5631,6.716,6.5,13.56,6.72,15.09,0.78,0.09,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6305.25,7601.1,48.16,1.0,48.16,71.46,71.46,0.0,46.2,1.0,46.2,71.46,71.46,0.0,65.68,64.075,45.1676,68.7739,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4462,0.0,0.0,10.41,26.69,7.52,16.56,15.89,8.5,19.22,0.0,0.24,0.806,0.4409,0.9612,1.2821,0.2625,1.087,2.57,21.5176,5.9361,0.0,0.0,4.088,12.8141,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier.xml,71.45,63.464,48.6678,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8524,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,3.7909,22.9848,5.9401,0.0,0.0,6.023,13.5631,6.716,6.49,13.56,6.72,15.09,0.78,0.08,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.27,6304.53,7601.73,48.3,1.0,48.3,71.45,71.45,0.0,46.52,1.0,46.52,71.45,71.45,0.0,65.66,64.054,45.1447,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4414,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5617,21.5033,5.9368,0.0,0.0,4.0815,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-gas.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9112,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.52,9187.82,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-modified.xml,79.7,76.706,61.7833,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.7282,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.5924,7.9427,8.6881,0.0,0.0,37.586,4.912,9.543,40.52,4.91,9.54,21.44,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.12,8831.02,5561.77,56.97,1.0,56.97,79.7,79.7,0.0,51.28,1.0,51.28,79.7,79.7,0.0,74.9,80.736,61.1108,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.231,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0589,7.9232,8.6857,0.0,0.0,36.728,4.916,9.542,39.59,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-none.xml,80.73,76.706,62.5786,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.5228,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.5237,7.9799,8.608,0.0,0.0,37.4766,4.935,9.455,40.4,4.94,9.46,22.35,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.97,8878.58,5561.77,56.72,1.0,56.72,80.73,80.73,0.0,51.05,1.0,51.05,80.73,80.73,0.0,75.88,80.736,61.906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.026,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.9902,7.9603,8.6056,0.0,0.0,36.6185,4.939,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-oil.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.73,9424.37,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-propane.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.16,9336.27,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-wood.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-cathedral.xml,72.44,79.68,58.2652,80.4342,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.8718,0.0,0.0,33.37,8.6,10.49,53.14,5.22,11.52,27.23,0.0,0.0,0.805,0.4325,0.9896,1.2821,0.2625,1.087,21.4138,7.4045,8.212,0.0,0.0,34.1029,4.495,9.02,36.76,4.5,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.96,8186.79,5753.39,56.19,1.0,56.19,72.44,72.44,0.0,51.47,1.0,51.47,72.44,72.44,0.0,66.91,85.427,57.704,86.2356,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.4214,0.0,0.0,39.18,8.54,10.49,62.4,5.17,11.52,27.22,0.0,0.0,0.805,0.4338,0.9893,1.2821,0.2625,1.087,20.9515,7.4257,8.2098,0.0,0.0,33.3663,4.494,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-conditioned.xml,74.41,92.434,66.994,90.0293,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,38.38,10.94,10.49,61.13,6.46,11.52,32.63,0.0,0.0,0.8049,0.4443,0.9897,1.2821,0.2625,1.087,24.7767,8.8731,8.1262,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,9396.09,6666.56,57.65,1.0,57.65,74.41,74.41,0.0,51.62,1.0,51.62,74.41,74.41,0.0,68.31,100.681,66.9902,98.0618,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,46.71,10.86,10.49,74.38,6.42,11.52,32.62,0.0,0.0,0.805,0.4441,0.9894,1.2821,0.2625,1.087,24.7785,8.8696,8.1241,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-flat.xml,72.05,76.728,55.802,77.4527,0.19844,0.9929,1.0,1.0166,1.0094,1.0,48.1822,0.0,0.0,30.34,8.67,10.49,48.32,5.22,11.52,27.23,0.0,0.0,0.805,0.4359,0.9897,1.2821,0.2625,1.087,19.8213,6.533,8.2127,0.0,0.0,31.5668,3.935,9.02,34.03,3.94,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.1,7748.36,5558.3,56.7,1.0,56.7,72.05,72.05,0.0,51.04,1.0,51.04,72.05,72.05,0.0,67.72,80.74,55.1958,81.5026,0.19844,0.9929,1.0,1.0166,1.0094,1.0,47.7388,0.0,0.0,34.43,8.6,10.49,54.83,5.2,11.52,27.22,0.0,0.0,0.805,0.4343,0.9895,1.2821,0.2625,1.087,19.3578,6.5097,8.2112,0.0,0.0,30.8284,3.935,9.02,33.23,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-radiant-barrier.xml,78.01,63.07,52.1975,66.9081,0.2289,1.0408,1.0,1.0192,1.0609,1.0,41.1706,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,5.6612,24.7379,5.9414,0.0,0.0,9.0693,14.6591,6.719,9.78,14.66,6.72,15.07,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,86.51,6954.43,7577.77,47.26,1.0,47.26,78.01,78.01,0.0,44.31,1.0,44.31,78.01,78.01,0.0,71.67,63.66,48.4049,67.534,0.2289,1.0408,1.0,1.0192,1.0609,1.0,38.591,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,4.2924,23.0935,5.938,0.0,0.0,6.8764,13.8101,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-unvented-insulated-roof.xml,74.69,76.706,57.7995,77.3894,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.7066,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,21.5848,6.7688,8.2129,0.0,0.0,34.3876,4.186,9.021,37.07,4.19,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.27,8207.61,5561.77,56.72,1.0,56.72,74.69,74.69,0.0,51.05,1.0,51.05,74.69,74.69,0.0,70.21,80.736,57.1878,81.4553,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.2486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.1137,6.7467,8.2114,0.0,0.0,33.6298,4.186,9.021,36.25,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-vented.xml,77.23,77.043,60.1304,77.8576,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.7242,0.0,0.0,31.1,8.24,10.49,49.54,5.12,11.82,27.23,0.0,0.0,0.8047,0.4224,0.9644,1.2821,0.2625,1.087,23.7029,7.046,8.1475,0.0,0.0,37.7623,4.379,9.183,40.71,4.38,9.18,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.33,8754.75,5613.45,57.48,1.0,57.48,77.23,77.23,0.0,51.95,1.0,51.95,77.23,77.23,0.0,72.54,81.09,59.4482,81.9474,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2092,0.0,0.0,35.21,8.17,10.49,56.08,5.1,11.82,27.22,0.0,0.0,0.8049,0.4209,0.9644,1.2821,0.2625,1.087,23.16,7.0228,8.1484,0.0,0.0,36.8894,4.38,9.184,39.77,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-battery.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.94,40.543,36.9193,43.981,0.21344,1.0657,1.0,1.0179,1.0848,1.0,33.4254,0.0,0.0,8.48,5.13,10.49,13.56,3.51,11.51,16.45,0.0,0.0,0.8014,0.3843,0.9907,1.2821,0.2625,1.087,10.9321,3.5405,8.7216,0.0,0.0,17.4883,2.419,9.569,18.85,2.42,9.57,12.91,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.6,4843.41,3109.17,67.82,1.0,67.82,83.94,83.94,0.0,58.9,1.0,58.9,83.94,83.94,0.0,71.28,41.508,32.0967,45.0278,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.7806,0.0,0.0,9.49,5.09,10.49,15.18,3.49,11.51,16.44,0.0,0.0,0.8017,0.3829,0.9905,1.2821,0.2625,1.087,6.9738,3.4824,8.7165,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-location-portland-or.xml,77.52,33.869,28.1518,36.3143,0.1828,1.056,1.0,1.0153,1.0722,1.0,27.1314,0.0,0.0,3.99,3.46,9.97,6.39,2.41,10.99,16.45,0.0,0.0,0.8002,0.377,0.9866,1.2821,0.2625,1.087,3.4885,2.6376,8.2767,0.0,0.0,5.5889,1.837,9.119,6.03,1.84,9.12,12.93,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,100.27,2891.65,2689.59,62.67,1.0,62.67,77.52,77.52,0.0,51.43,1.0,51.43,77.52,77.52,0.0,69.92,34.211,25.6474,36.681,0.1828,1.056,1.0,1.0153,1.0722,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.36,10.99,16.45,0.0,0.0,0.8003,0.3719,0.9864,1.2821,0.2625,1.087,1.2937,3.1081,8.2616,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,76.9,38.803,32.479,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.3124,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.6608,5.3263,8.7189,0.0,0.0,7.6261,3.488,9.556,8.43,3.49,9.56,12.96,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.63,3394.3,3068.67,59.93,1.0,59.93,76.9,76.9,0.0,51.25,1.0,51.25,76.9,76.9,0.0,67.89,39.644,29.2917,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.7334,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0028,5.5879,8.7049,0.0,0.0,3.2722,3.684,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.53,38.803,32.7433,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.633,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.9261,5.3263,8.7189,0.0,0.0,8.0602,3.488,9.556,8.91,3.49,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,103.38,3452.94,3068.67,60.07,1.0,60.07,77.53,77.53,0.0,51.35,1.0,51.35,77.53,77.53,0.0,68.2,39.644,29.4285,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.8952,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.1412,5.5864,8.7049,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.0,38.803,32.5205,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.5222,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.7034,5.3263,8.7189,0.0,0.0,7.6958,3.488,9.556,8.51,3.49,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.47,3388.93,3068.67,60.07,1.0,60.07,77.0,77.0,0.0,51.35,1.0,51.35,77.0,77.0,0.0,67.93,39.644,29.3116,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.839,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0228,5.5879,8.7049,0.0,0.0,3.3048,3.684,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.43,38.801,31.8076,42.1705,0.21837,1.0673,1.0,1.0183,1.0868,1.0,30.0146,0.0,0.0,5.970000000000001,5.88,10.49,9.3,3.85,11.5,16.47,0.0,0.0,1.1058,0.4009,0.9917,1.6932,0.2625,1.087,3.9905,5.3263,8.7189,0.0,0.0,6.4251,3.488,9.556,7.06,3.49,9.56,12.95,0.82,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,95.02,3168.99,3068.67,59.05,1.0,59.05,75.43,75.93,0.0,50.8,1.0,50.8,75.43,75.93,0.0,67.33,39.642,29.0101,43.0845,0.21837,1.0673,1.0,1.0183,1.0868,1.0,27.6032,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3982,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5864,8.7049,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.62,38.802,33.9407,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,30.8742,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3773,4.0726,8.7189,0.0,0.0,11.7564,2.667,9.556,11.76,2.67,9.56,12.95,0.82,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,114.66,3817.41,3068.67,64.39,1.0,64.39,80.62,80.62,0.0,52.75,1.0,52.75,80.62,80.62,0.0,67.65,39.644,29.0956,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.4198,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.2683,8.7049,0.0,0.0,4.9807,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.3,38.802,34.6451,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.3338,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,4.7766,8.7189,0.0,0.0,11.7554,3.128,9.556,11.76,3.13,9.56,12.96,0.82,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.67,3851.25,3068.67,64.88,1.0,64.88,82.3,82.3,0.0,53.19,1.0,53.19,82.3,82.3,0.0,69.43,39.644,29.8639,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.9264,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,5.0373,8.7049,0.0,0.0,4.9797,3.321,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,81.14,38.802,34.1576,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.0162,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3773,4.2895,8.7189,0.0,0.0,11.7564,2.809,9.556,11.76,2.81,9.56,12.95,0.82,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,114.97,3827.63,3068.67,64.88,1.0,64.88,81.14,81.14,0.0,53.19,1.0,53.19,81.14,81.14,0.0,68.18,39.644,29.3261,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.5718,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.4989,8.7049,0.0,0.0,4.9807,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,38.802,38.1374,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,33.6208,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,8.2689,8.7189,0.0,0.0,11.7554,5.415,9.556,11.76,5.42,9.56,12.96,0.82,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,120.64,4016.58,3068.67,68.15,1.0,68.15,90.59,90.59,0.0,56.14,1.0,56.14,90.59,90.59,0.0,78.1,39.644,33.5938,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,30.3864,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,8.7672,8.7049,0.0,0.0,4.9797,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.93,38.802,34.4909,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.2328,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,4.6224,8.7189,0.0,0.0,11.7554,3.027,9.556,11.76,3.03,9.56,12.96,0.82,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.46,3843.96,3068.67,64.52,1.0,64.52,81.93,81.93,0.0,52.86,1.0,52.86,81.93,81.93,0.0,69.05,39.644,29.6986,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.8184,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,4.872,8.7049,0.0,0.0,4.9797,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-generator.xml,72.19,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.967,35.0336,1.1572,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.28,5237.47,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,63.18,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.0,38.806,34.08,42.074,0.21203,1.0653,1.0,1.0178,1.0842,1.0,31.211,0.0,0.0,5.97,5.88,10.49,5.25,2.97,11.5,16.47,0.0,0.0,0.504,0.5192,0.9917,0.4432,0.2625,1.087,5.4143,6.1747,8.7189,0.0,0.0,4.762,3.122,9.556,4.76,3.12,9.56,12.95,0.82,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,79.48,2563.81,2975.19,65.77,1.0,65.77,81.0,81.0,0.0,56.55,1.0,56.55,81.0,81.0,0.0,74.23,39.65,31.9105,42.9891,0.21203,1.0653,1.0,1.0178,1.0842,1.0,28.747,0.0,0.0,6.92,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.518,0.517,0.9914,0.4432,0.2625,1.087,2.9486,7.2611,8.7049,0.0,0.0,2.523,3.687,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.09,38.638,31.0528,41.9103,0.21318,1.0656,1.0,1.0179,1.0847,1.0,25.5648,0.0,0.0,5.61,6.06,10.48,8.98,3.91,18.18,16.47,0.0,0.0,0.8014,0.4073,1.9548,1.2821,0.2625,3.3898,4.4792,4.3952,8.4032,0.0,0.0,7.1658,2.833,14.5728,7.73,2.83,14.58,12.96,0.82,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,143.13,4627.37,2980.53,51.66,1.0,51.66,74.09,74.09,0.0,44.53,1.0,44.53,74.09,74.09,0.0,65.07,39.451,27.8448,42.7921,0.21318,1.0656,1.0,1.0179,1.0847,1.0,23.1036,0.0,0.0,6.54,5.96,10.48,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,1.953,1.2821,0.2625,3.3898,1.854,4.6318,8.359,0.0,0.0,2.9656,3.007,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 +base-bldgtype-mf-unit-shared-laundry-room.xml,71.38,38.638,29.9169,41.9103,0.21318,1.0656,1.0,1.0179,1.0847,1.0,24.7864,0.0,0.0,5.61,6.06,10.49,8.98,3.91,18.19,16.47,0.0,0.0,0.8014,0.4073,0.9774,1.2821,0.2625,1.6949,4.8161,4.2122,7.1196,0.0,0.0,7.7048,2.715,12.3466,8.31,2.72,12.35,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,135.35,4375.76,2980.48,51.66,1.0,51.66,71.38,71.38,0.0,44.53,1.0,44.53,71.38,71.38,0.0,62.14,39.451,26.5896,42.7921,0.21318,1.0656,1.0,1.0179,1.0847,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,0.9765,1.2821,0.2625,1.6949,2.0848,4.4069,7.1059,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,73.35,39.368,31.3241,42.7063,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.389,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,0.4795,5.1637,8.6979,2.3159,0.1371,0.7671,3.347,9.533,0.83,3.35,9.53,13.04,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.32,2926.25,3020.04,58.21,1.0,58.21,73.35,73.35,0.0,49.6,1.0,49.6,73.35,73.35,0.0,71.67,40.184,31.2433,43.5915,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.3638,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4022,0.9915,1.2821,0.2625,1.087,0.5632,5.0081,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,69.14,39.368,29.5264,42.7063,0.21344,1.0657,1.0,1.0179,1.0848,1.0,28.2198,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,1.7059,4.6207,8.7079,0.0,0.0,2.729,2.995,9.544,2.94,2.99,9.54,13.0,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.85,2615.86,3020.04,58.21,1.0,58.21,69.14,69.14,0.0,49.6,1.0,49.6,69.14,69.14,0.0,67.91,40.184,29.6037,43.5915,0.21344,1.0657,1.0,1.0179,1.0848,1.0,28.2992,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4022,0.9915,1.2821,0.2625,1.087,1.8443,4.5638,8.7066,0.0,0.0,2.9498,2.979,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,16.45,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.2204,30.2398,24.448,0.873,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,45.24,1459.98,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,61.99,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv.xml,12.5,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.1675,29.3668,24.448,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,49.98,1613.25,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,61.99,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,72.91,38.658,30.5725,41.932,0.21318,1.0656,1.0,1.0179,1.0847,1.0,25.8658,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8012,0.4111,0.9777,1.2821,0.2625,1.6949,4.7159,4.3314,7.7542,0.0,0.0,7.5462,2.766,13.4427,8.14,2.77,13.44,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,137.77,4446.04,2975.19,52.5,1.0,52.5,72.91,72.91,0.0,45.31,1.0,45.31,72.91,72.91,0.0,63.77,39.453,27.2915,42.7943,0.21318,1.0656,1.0,1.0179,1.0847,1.0,23.3522,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-water-heater.xml,71.4,38.658,29.9403,41.932,0.21318,1.0656,1.0,1.0179,1.0847,1.0,24.7698,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8012,0.4111,0.9777,1.2821,0.2625,1.6949,4.7159,4.3314,7.122,0.0,0.0,7.5462,2.766,12.3466,8.14,2.77,12.35,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,134.93,4354.5,2975.19,51.62,1.0,51.62,71.4,71.4,0.0,44.58,1.0,44.58,71.4,71.4,0.0,62.3,39.453,26.6598,42.7943,0.21318,1.0656,1.0,1.0179,1.0847,1.0,22.2562,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit.xml,74.66,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.3668,0.0,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.89,3288.63,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,65.51,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-sfa-unit.xml,82.95,56.763,48.9021,58.9514,0.2217,1.0196,1.0,1.0186,1.0386,1.0,42.7902,0.0,0.0,18.68,5.77,10.49,29.79,3.86,11.52,21.83,0.0,0.0,0.804,0.3928,0.9898,1.2821,0.2625,1.087,17.972,4.7632,8.4629,0.0,0.0,28.6568,3.184,9.294,30.89,3.18,9.29,17.01,0.69,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.78,6976.5,4230.64,56.43,1.0,56.43,82.95,82.95,0.0,50.86,1.0,50.86,82.95,82.95,0.0,72.7,59.408,44.8531,61.6984,0.2217,1.0196,1.0,1.0186,1.0386,1.0,39.7286,0.0,0.0,21.4,5.7,10.49,34.11,3.83,11.52,21.82,0.0,0.0,0.8043,0.3911,0.9896,1.2821,0.2625,1.087,14.5747,4.7968,8.4596,0.0,0.0,23.2331,3.22,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-combi-tankless.xml,65.13,76.245,50.2032,77.0829,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.804,0.0,0.0,29.83,8.7,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.4249,0.9711,1.25,0.2625,1.6949,18.8301,7.5829,2.5552,0.0,0.0,30.8291,4.685,4.4598,34.09,4.69,10.29,21.12,0.12,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,149.38,8628.01,5713.08,55.38,1.0,55.38,65.13,65.13,0.0,49.88,1.0,49.88,65.13,65.13,0.0,61.23,80.249,49.6788,81.1309,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.3712,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4234,0.9706,1.25,0.2625,1.6949,18.4514,7.5554,2.5539,0.0,0.0,30.1219,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-desuperheater.xml,84.35,76.706,65.3889,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8666,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.5335,8.2784,6.3411,0.0,0.0,47.0336,5.15,6.965,47.04,5.15,6.97,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.55,9558.21,5713.08,72.13,1.0,72.13,84.35,84.35,0.0,62.69,1.0,62.69,84.35,84.35,0.0,79.08,80.736,64.5197,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.2722,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.8087,8.2576,6.3354,0.0,0.0,45.8796,5.156,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-dwhr.xml,76.02,76.706,58.9305,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.623,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,6.1444,0.0,0.0,37.6408,4.9,6.749,40.58,4.9,6.75,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.8,8588.37,5561.77,56.72,1.0,56.72,76.02,76.02,0.0,51.05,1.0,51.05,76.02,76.02,0.0,71.41,80.736,58.2607,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.1276,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,6.1433,0.0,0.0,36.7837,4.905,6.749,39.65,4.91,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-indirect-standbyloss.xml,68.93,76.193,53.0815,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.9082,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,17.8914,8.0326,5.9195,0.0,0.0,29.2952,4.959,10.5245,32.39,4.96,14.07,21.12,0.12,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,154.64,8955.7,5729.65,55.38,1.0,55.38,68.93,68.93,0.0,49.88,1.0,49.88,68.93,68.93,0.0,64.84,80.194,52.5541,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4762,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.5115,8.0058,5.9159,0.0,0.0,28.5907,4.96,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-gas.xml,78.83,76.194,60.6816,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.3304,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,23.1255,8.1759,8.1432,0.0,0.0,36.844,5.016,14.4781,39.72,5.02,14.23,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,177.88,10025.69,5578.83,54.44,1.0,54.44,78.83,78.83,0.0,48.57,1.0,48.57,78.83,78.83,0.0,74.06,80.195,60.0048,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,47.8354,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.5948,8.1523,8.1377,0.0,0.0,35.9896,5.021,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-hpwh.xml,74.77,76.404,57.7009,77.1744,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.6316,0.0,0.0,30.08,8.61,10.49,47.92,5.3,12.41,27.23,0.0,0.0,0.8047,0.4265,0.9824,1.2821,0.2625,1.1628,26.3882,7.0234,3.0603,0.0,0.0,42.0405,4.323,3.6222,45.32,4.32,3.39,21.11,0.12,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,158.16,8970.48,5615.29,57.04,1.0,57.04,74.77,74.77,0.0,51.34,1.0,51.34,74.77,74.77,0.0,70.2,80.416,57.0203,81.2268,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.1256,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.8049,0.425,0.9821,1.2821,0.2625,1.1628,25.8508,7.0019,3.0557,0.0,0.0,41.175,4.325,3.618,44.39,4.33,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-jacket-indirect.xml,67.85,76.193,52.2518,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.6356,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,18.1621,7.9046,4.9481,0.0,0.0,29.7384,4.88,8.7974,32.88,4.88,13.09,21.12,0.12,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,153.3,8878.15,5729.65,55.38,1.0,55.38,67.85,67.85,0.0,49.88,1.0,49.88,67.85,67.85,0.0,63.81,80.194,51.7246,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.7829,7.8766,4.9451,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-low-flow-fixtures.xml,78.43,76.706,60.7959,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.672,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.0098,0.0,0.0,37.6408,4.9,8.798,40.58,4.9,8.8,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.73,8752.62,5561.77,56.72,1.0,56.72,78.43,78.43,0.0,51.05,1.0,51.05,78.43,78.43,0.0,73.69,80.736,60.1258,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1766,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.0085,0.0,0.0,36.7837,4.905,8.798,39.65,4.91,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-multiple.xml,68.07,76.706,52.7895,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,43.0294,0.0,0.0,30.56,8.43,10.5,49.99,5.25,11.5,27.23,0.0,0.0,0.7641,0.422,5.9382,1.25,0.2625,6.522,18.2841,7.7945,5.4738,0.0,0.0,29.9093,4.849,6.0120000000000005,33.07,4.85,6.0200000000000005,21.12,0.12,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,133.86,7731.54,5712.89,61.74,1.0,61.74,68.07,68.07,0.0,56.1,1.0,56.1,68.07,68.07,0.0,64.03,80.737,52.2656,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,42.5986,0.0,0.0,34.66,8.37,10.5,56.54,5.23,11.5,27.22,0.0,0.0,0.7663,0.4205,5.9364,1.25,0.2625,6.522,17.9024,7.7707,5.4725,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 +base-dhw-none.xml,82.99,76.246,63.9452,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.924,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,22.8222,8.2968,10.4862,0.0,0.0,36.3597,5.094,18.3029,39.2,5.09,18.3,22.22,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,189.32,10640.75,5561.77,61.63,1.0,61.63,82.99,82.99,0.0,56.57,1.0,56.57,82.99,82.99,0.0,78.02,80.248,63.2686,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.4304,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,22.2916,8.2741,10.4799,0.0,0.0,35.5063,5.099,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-recirc-demand.xml,78.63,76.706,60.9544,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.845,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.1683,0.0,0.0,37.6408,4.9,8.972,40.58,4.9,8.97,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.97,8766.4,5561.77,56.72,1.0,56.72,78.63,78.63,0.0,51.05,1.0,51.05,78.63,78.63,0.0,73.89,80.736,60.2833,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.1659,0.0,0.0,36.7837,4.905,8.971,39.65,4.91,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-fraction.xml,71.94,76.706,55.7667,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,46.1122,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.7979,7.8587,2.8751,0.0,0.0,37.9135,4.86,3.158,40.87,4.86,3.16,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.38,8339.62,5561.77,56.72,1.0,56.72,71.94,71.94,0.0,51.05,1.0,51.05,71.94,71.94,0.0,67.53,80.736,55.0971,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,45.6168,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.265,7.8394,2.8746,0.0,0.0,37.0564,4.864,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-indirect-flat-plate.xml,70.13,76.706,54.3635,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.5816,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.3851,8.1691,1.5723,0.0,0.0,37.2558,5.052,1.727,40.16,5.05,1.73,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.84,8140.67,5561.77,56.72,1.0,56.72,70.13,70.13,0.0,51.05,1.0,51.05,70.13,70.13,0.0,65.81,80.736,53.6937,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.0862,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.8521,8.1505,1.5711,0.0,0.0,36.3987,5.057,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-elec-uef.xml,78.7,76.753,61.049,77.5688,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.951,0.0,0.0,30.64,8.4,10.49,48.81,5.2,11.38,27.23,0.0,0.0,0.8047,0.4243,0.9908,1.2821,0.2625,1.0753,23.593,7.9322,8.2878,0.0,0.0,37.5879,4.908,8.9942,40.52,4.91,9.09,21.12,0.12,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,156.24,8768.62,5553.21,56.97,1.0,56.97,78.7,78.7,0.0,51.25,1.0,51.25,78.7,78.7,0.0,73.95,80.786,60.3773,81.6447,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.4542,0.0,0.0,34.74,8.34,10.49,55.33,5.18,11.38,27.22,0.0,0.0,0.8049,0.4228,0.9906,1.2821,0.2625,1.0753,23.0609,7.9111,8.2863,0.0,0.0,36.7308,4.912,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-gas-uef.xml,78.66,76.344,60.7128,77.1829,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.4998,0.0,0.0,29.99,8.64,10.49,47.78,5.31,17.66,27.23,0.0,0.0,0.8047,0.427,0.9737,1.2821,0.2625,1.6393,23.0488,8.1873,8.2396,0.0,0.0,36.7215,5.034,13.8725,39.59,5.03,14.75,21.12,0.12,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,179.61,10083.55,5553.21,54.44,1.0,54.44,78.66,78.66,0.0,48.57,1.0,48.57,78.66,78.66,0.0,73.91,80.354,60.0383,81.237,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.0056,0.0,0.0,34.07,8.58,10.49,54.27,5.29,17.67,27.22,0.0,0.0,0.8049,0.4253,0.9733,1.2821,0.2625,1.6393,22.5189,8.1636,8.2359,0.0,0.0,35.869,5.039,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-heat-pump-uef.xml,73.89,76.61,57.1937,77.4073,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.9426,0.0,0.0,30.41,8.49,10.49,48.45,5.24,11.81,27.23,0.0,0.0,0.8047,0.4252,0.9872,1.2821,0.2625,1.1111,26.9143,6.8637,2.1887,0.0,0.0,42.879,4.238,2.4636,46.23,4.24,2.41,21.11,0.12,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,159.99,9018.25,5578.83,56.78,1.0,56.78,73.89,73.89,0.0,51.11,1.0,51.11,73.89,73.89,0.0,69.36,80.634,56.5131,81.4732,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.436,0.0,0.0,34.5,8.42,10.49,54.95,5.22,11.81,27.22,0.0,0.0,0.8049,0.4237,0.987,1.2821,0.2625,1.1111,26.3741,6.8425,2.1865,0.0,0.0,42.0089,4.24,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-oil.xml,79.44,76.194,61.1537,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.649,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.874,8.2737,8.768,0.0,0.0,36.4432,5.076,15.589,39.29,5.08,15.32,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,192.9,10872.57,5578.83,54.44,1.0,54.44,79.44,79.44,0.0,48.57,1.0,48.57,79.44,79.44,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-wood.xml,79.44,76.194,61.1537,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.649,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.874,8.2737,8.768,0.0,0.0,36.4432,5.076,15.589,39.29,5.08,15.32,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.44,1.0,54.44,79.44,79.44,0.0,48.57,1.0,48.57,79.44,79.44,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-electric-uef.xml,79.07,76.706,61.2927,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.1622,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.8899,7.8247,8.3431,0.0,0.0,38.0601,4.839,9.164,41.03,4.84,9.16,21.12,0.12,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,157.31,8841.33,5561.77,56.86,1.0,56.86,79.07,79.07,0.0,51.19,1.0,51.19,79.07,79.07,0.0,74.3,80.736,60.6222,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.6658,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.3571,7.8056,8.3416,0.0,0.0,37.2029,4.843,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tankless-gas-uef.xml,72.47,76.246,55.8392,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.861,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.8894,7.8815,2.8333,0.0,0.0,38.0601,4.839,4.9453,41.03,4.84,9.66,21.12,0.12,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,169.56,9530.07,5561.77,54.44,1.0,54.44,72.47,72.47,0.0,48.57,1.0,48.57,72.47,72.47,0.0,68.03,80.248,55.1653,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.3646,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,2.8319,0.0,0.0,37.2029,4.843,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-propane.xml,74.77,76.246,57.6076,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,47.4742,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.8894,7.8815,4.6018,0.0,0.0,38.0601,4.839,8.032,41.03,4.84,11.19,21.12,0.12,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,179.65,10097.25,5561.77,54.44,1.0,54.44,74.77,74.77,0.0,48.57,1.0,48.57,74.77,74.77,0.0,70.21,80.248,56.9329,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.9778,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,4.5995,0.0,0.0,37.2029,4.843,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-enclosure-2stories-garage.xml,76.88,92.009,69.3027,90.148,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,40.03,10.63,10.49,63.76,6.24,11.52,30.87,0.0,0.0,0.8049,0.4467,0.9896,1.2821,0.2625,1.087,25.3051,12.0508,8.1737,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.48,6613.03,56.75,1.0,56.75,76.88,76.88,0.0,51.54,1.0,51.54,76.88,76.88,0.0,70.46,100.555,69.4154,98.5212,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,48.62,10.59,10.49,77.43,6.17,11.52,30.86,0.0,0.0,0.805,0.4509,0.9892,1.2821,0.2625,1.087,25.3065,12.165,8.1709,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-2stories.xml,76.8,104.694,77.621,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,30.5132,11.7682,8.0706,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,11119.81,7501.77,56.51,1.0,56.51,76.8,76.8,0.0,51.2,1.0,51.2,76.8,76.8,0.0,70.42,114.3,77.7037,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,30.5147,11.8522,8.0678,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-1.xml,82.55,69.215,55.9746,67.8046,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,29.82,7.9,6.15,47.49,4.93,7.18,25.34,0.0,0.0,0.805,0.4209,0.931,1.2821,0.2625,1.087,24.1297,7.467,4.6918,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.11,8466.05,4992.31,58.3,1.0,58.3,82.55,82.55,0.0,53.07,1.0,53.07,82.55,82.55,0.0,78.02,73.247,55.985,71.7544,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,33.92,7.84,6.15,54.01,4.89,7.19,25.33,0.0,0.0,0.805,0.4214,0.9307,1.2821,0.2625,1.087,24.132,7.4765,4.6905,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-2.xml,80.08,73.023,58.1936,72.665,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,30.19,8.17,8.39,48.09,5.07,9.42,26.28,0.0,0.0,0.8048,0.4227,0.9679,1.2821,0.2625,1.087,23.6058,7.6976,6.4882,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.64,8548.6,5281.97,57.49,1.0,57.49,80.08,80.08,0.0,52.01,1.0,52.01,80.08,80.08,0.0,75.8,77.056,58.1246,76.6782,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,34.29,8.11,8.39,54.6,5.08,9.42,26.28,0.0,0.0,0.8051,0.4186,0.9677,1.2821,0.2625,1.087,23.6122,7.6235,6.4868,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-4.xml,80.49,80.327,66.3384,82.4157,0.22158,0.9921,1.0153,1.0186,1.026,1.0,56.525,0.0,0.0,30.93,8.7,12.53,49.29,5.36,13.56,28.17,0.0,0.0,0.8046,0.4264,1.0042,1.2821,0.2625,1.087,25.7777,8.1322,9.8995,0.0,0.0,41.0757,5.007,10.715,44.28,5.01,10.72,21.83,0.7,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.64,9559.66,5836.33,55.91,1.0,55.91,80.49,80.49,0.0,50.09,1.0,50.09,80.49,80.49,0.0,72.15,84.356,62.4478,86.5495,0.22158,0.9921,1.0153,1.0186,1.026,1.0,53.559,0.0,0.0,35.03,8.63,12.53,55.81,5.33,13.56,28.17,0.0,0.0,0.8048,0.4249,1.0041,1.2821,0.2625,1.087,22.5792,8.1394,9.8971,0.0,0.0,35.9711,5.029,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-5.xml,80.42,83.91,70.281,87.3877,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,60.0782,0.0,0.0,31.3,8.97,14.53,49.89,5.5,15.56,29.11,0.0,0.0,0.8045,0.4281,1.0148,1.2821,0.2625,1.087,26.7913,8.3491,11.5646,0.0,0.0,42.6972,5.12,12.387,46.03,5.12,12.39,22.54,1.04,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.01,10042.06,6102.48,55.13,1.0,55.13,80.42,80.42,0.0,49.16,1.0,49.16,80.42,80.42,0.0,70.5,87.938,64.563,91.5826,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,55.7096,0.0,0.0,35.4,8.9,14.53,56.41,5.48,15.56,29.11,0.0,0.0,0.8047,0.4267,1.0147,1.2821,0.2625,1.087,22.0764,8.3784,11.5612,0.0,0.0,35.1742,5.155,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-ceilingtypes.xml,88.91,76.706,68.4559,76.9934,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.9174,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,30.9684,8.0446,8.2129,0.0,0.0,49.3371,4.975,9.021,53.19,4.98,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,190.63,10642.17,5561.77,56.61,1.0,56.61,88.91,88.91,0.0,50.95,1.0,50.95,88.91,88.91,0.0,83.67,80.736,67.803,81.0385,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,30.4586,8.0199,8.2114,0.0,0.0,48.5143,4.976,9.021,52.3,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-floortypes.xml,103.78,56.885,62.5105,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,51.6758,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,31.28,7.1022,8.3953,0.0,0.0,49.9456,4.51,9.219,53.84,4.51,9.22,14.95,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,231.6,10236.05,4173.95,54.96,1.0,54.96,103.78,103.78,0.0,49.58,1.0,49.58,103.78,103.78,0.0,93.59,58.457,57.9333,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,48.1844,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,27.5626,7.023,8.3937,0.0,0.0,44.0024,4.468,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-garage.xml,78.37,75.021,59.4159,75.813,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.276,0.0,0.0,30.44,6.97,10.49,48.49,4.5,11.73,27.12,0.0,0.0,0.8048,0.4068,0.9721,1.2821,0.2625,1.087,25.0974,5.1097,8.1448,0.0,0.0,39.9812,3.298,9.107,43.1,3.3,9.11,20.95,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.21,9013.15,5498.43,57.34,1.0,57.34,78.37,78.37,0.0,51.49,1.0,51.49,78.37,78.37,0.0,73.46,79.12,58.7329,79.9553,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.7522,0.0,0.0,34.58,6.93,10.49,55.07,4.49,11.73,27.12,0.0,0.0,0.805,0.4056,0.9721,1.2821,0.2625,1.087,24.5468,5.0964,8.1457,0.0,0.0,39.0944,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ach-house-pressure.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm-house-pressure.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm50.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ela.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-ach.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-cfm.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-overhangs.xml,78.55,76.706,60.8864,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.842,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.8201,7.6193,8.212,0.0,0.0,37.9487,4.712,9.02,40.91,4.71,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.67,8805.35,5561.77,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,73.8,80.736,60.2156,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3456,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.2872,7.6009,8.2105,0.0,0.0,37.0916,4.716,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-skylights.xml,79.24,76.706,61.3698,77.4444,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.9404,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.7347,9.183,8.211,0.0,0.0,36.2197,5.6791,9.019,39.05,5.68,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.35,8610.91,5561.77,56.72,1.0,56.72,79.24,79.24,0.0,51.05,1.0,51.05,79.24,79.24,0.0,74.47,80.736,60.7057,81.5132,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.454,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2103,9.1627,8.2087,0.0,0.0,35.3765,5.6851,9.018,38.14,5.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-walltypes.xml,92.57,76.661,70.8272,76.5127,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,59.2934,0.0,0.0,30.52,8.42,10.49,48.63,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,34.9619,6.4257,8.2147,0.0,0.0,55.7014,3.973,9.023,60.05,3.97,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,207.83,11531.4,5559.26,56.84,1.0,56.84,92.57,92.57,0.0,51.16,1.0,51.16,92.57,92.57,0.0,87.15,80.692,70.1859,80.5359,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.809,0.0,0.0,34.62,8.36,10.49,55.15,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,34.4215,6.4441,8.2133,0.0,0.0,54.8276,3.999,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-ambient.xml,86.97,56.885,52.3844,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,44.225,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,19.266,8.9683,8.3871,0.0,0.0,30.7625,5.6951,9.21,33.16,5.69,9.21,14.98,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.43,7311.46,4173.95,55.15,1.0,55.15,86.97,86.97,0.0,49.78,1.0,49.78,86.97,86.97,0.0,77.34,58.457,47.87,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.8378,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,15.5006,8.9957,8.3837,0.0,0.0,24.746,5.7231,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-basement-garage.xml,81.01,68.04,57.0367,70.4061,0.2217,1.0159,1.0,1.0186,1.0348,1.0,48.3424,0.0,0.0,27.7,7.1,10.49,44.11,4.46,11.52,22.76,0.0,0.0,0.805,0.4176,0.9895,1.2821,0.2625,1.087,22.376,7.9614,8.4243,0.0,0.0,35.6343,5.005,9.254,38.42,5.01,9.25,17.62,0.66,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.5,8237.06,4929.0,55.55,1.0,55.55,81.01,81.01,0.0,50.35,1.0,50.35,81.01,81.01,0.0,72.68,70.9,53.3211,73.3656,0.2217,1.0159,1.0,1.0186,1.0348,1.0,45.4954,0.0,0.0,30.61,7.05,10.49,48.74,4.42,11.52,22.76,0.0,0.0,0.8051,0.4186,0.9893,1.2821,0.2625,1.087,19.2747,8.0037,8.4228,0.0,0.0,30.6939,5.02,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,78.18,76.706,60.6009,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.5642,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.8663,8.2855,8.211,0.0,0.0,36.4293,5.124,9.019,39.27,5.12,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.96,8597.1,5561.77,56.72,1.0,56.72,78.18,78.18,0.0,51.05,1.0,51.05,78.18,78.18,0.0,73.45,80.736,59.9291,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0684,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.3303,8.2681,8.2096,0.0,0.0,35.5676,5.13,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,78.76,74.913,59.6237,75.7039,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1012,0.0,0.0,29.13,8.07,10.49,46.41,5.04,11.52,27.23,0.0,0.0,0.8047,0.4205,0.9896,1.2821,0.2625,1.087,22.9548,7.2229,8.212,0.0,0.0,36.5722,4.51,9.02,39.43,4.51,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.24,8567.06,5460.9,57.66,1.0,57.66,78.76,78.76,0.0,51.82,1.0,51.82,78.76,78.76,0.0,73.9,78.939,58.9491,79.7724,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6008,0.0,0.0,33.22,8.01,10.49,52.91,5.02,11.52,27.22,0.0,0.0,0.8049,0.419,0.9894,1.2821,0.2625,1.087,22.4211,7.2015,8.2105,0.0,0.0,35.7132,4.512,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-multiple.xml,80.45,55.64,47.3985,58.9164,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.9896,0.0,0.0,19.82,6.53,10.49,31.66,4.24,11.67,18.8,0.0,0.0,0.8027,0.4039,0.9769,1.2821,0.2625,1.087,15.897,7.7029,8.2376,0.0,0.0,25.3916,5.007,9.166,27.37,5.01,9.17,14.78,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.87,6387.97,4107.42,54.55,1.0,54.55,80.45,80.45,0.0,49.0,1.0,49.0,80.45,80.45,0.0,71.08,57.233,43.074,60.6032,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.702,0.0,0.0,21.44,6.5,10.49,34.24,4.24,11.67,18.8,0.0,0.0,0.8028,0.4032,0.9769,1.2821,0.2625,1.087,12.3831,7.6897,8.2412,0.0,0.0,19.7758,5.007,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-slab.xml,71.82,57.803,43.9575,61.2068,0.2217,1.0395,1.0,1.0186,1.0589,1.0,38.579,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.804,0.4053,0.9896,1.2821,0.2625,1.087,13.0258,6.7817,8.384,0.0,0.0,20.7702,4.393,9.209,22.39,4.39,9.21,14.98,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,126.61,5636.68,4204.44,54.27,1.0,54.27,71.82,71.82,0.0,49.11,1.0,49.11,71.82,71.82,0.0,63.8,59.388,40.1238,62.8851,0.2217,1.0395,1.0,1.0186,1.0589,1.0,35.6438,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8041,0.4047,0.9895,1.2821,0.2625,1.087,9.9922,6.7581,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,77.79,55.744,45.9189,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.9354,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,15.1287,7.039,8.2582,0.0,0.0,24.1644,4.546,9.185,26.05,4.55,9.19,14.71,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,141.59,6158.44,4107.52,54.0,1.0,54.0,77.79,77.79,0.0,48.5,1.0,48.5,77.79,77.79,0.0,68.58,57.335,41.6365,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.6778,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,11.6595,7.0202,8.2618,0.0,0.0,18.62,4.541,9.189,20.07,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,84.89,55.744,50.1101,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,42.9738,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,19.6563,6.5466,8.2043,0.0,0.0,31.3961,4.228,9.125,33.85,4.23,9.13,14.92,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.56,7288.05,4107.52,54.0,1.0,54.0,84.89,84.89,0.0,48.5,1.0,48.5,84.89,84.89,0.0,75.63,57.335,45.9174,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,16.3197,6.4775,8.2052,0.0,0.0,26.0623,4.19,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement.xml,80.71,55.744,47.6431,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,41.1112,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,16.0672,7.8132,8.2537,0.0,0.0,25.6634,5.046,9.18,27.67,5.05,9.18,14.73,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.85,6430.58,4107.52,54.0,1.0,54.0,80.71,80.71,0.0,48.5,1.0,48.5,80.71,80.71,0.0,71.27,57.335,43.2684,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7898,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,12.4971,7.8009,8.2564,0.0,0.0,19.9576,5.046,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unvented-crawlspace.xml,78.29,55.446,45.9658,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.9562,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,14.0162,7.9024,8.2721,0.0,0.0,22.388,4.974,9.284,24.14,4.97,9.28,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,136.86,5939.3,4098.46,55.85,1.0,55.85,78.29,78.29,0.0,50.41,1.0,50.41,78.29,78.29,0.0,69.34,56.992,41.8426,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.823,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,10.6544,7.9106,8.2756,0.0,0.0,17.0162,4.99,9.288,18.34,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace-above-grade.xml,80.82,55.377,47.3901,58.6379,0.2217,1.0395,1.0,1.0186,1.0589,1.0,41.0066,0.0,0.0,18.41,7.35,10.49,29.41,4.64,11.79,19.13,0.0,0.0,0.8026,0.4158,0.9672,1.2821,0.2625,1.087,15.2945,8.0007,8.3229,0.0,0.0,24.4306,5.052,9.353,26.34,5.05,9.35,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.61,6272.86,4096.41,55.99,1.0,55.99,80.82,80.82,0.0,50.56,1.0,50.56,80.82,80.82,0.0,71.49,56.928,43.0944,60.2802,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.31,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8027,0.415,0.9672,1.2821,0.2625,1.087,11.7648,8.0041,8.3265,0.0,0.0,18.7907,5.064,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace.xml,80.48,55.446,47.2479,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.9028,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,15.3682,7.769,8.3407,0.0,0.0,24.5475,4.89,9.361,26.46,4.89,9.36,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,6280.31,4098.46,55.85,1.0,55.85,80.48,80.48,0.0,50.41,1.0,50.41,80.48,80.48,0.0,71.15,56.992,42.9362,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.6348,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,11.8276,7.7663,8.3442,0.0,0.0,18.89,4.899,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-walkout-basement.xml,80.2,81.34,64.72,80.6969,0.2217,0.9921,1.0,1.0,0.9921,1.0,54.4118,0.0,0.0,34.15,9.48,10.49,54.41,5.76,11.52,27.23,0.0,0.0,0.8047,0.4323,0.9896,1.2821,0.2625,1.087,26.8345,8.4396,8.2129,0.0,0.0,42.7529,5.125,9.021,46.09,5.13,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.96,9588.64,5859.04,56.45,1.0,56.45,80.2,80.2,0.0,51.25,1.0,51.25,80.2,80.2,0.0,73.42,87.92,64.0413,87.2249,0.2217,0.9921,1.0,1.0,0.9921,1.0,53.9078,0.0,0.0,40.78,9.43,10.49,64.95,5.75,11.52,27.22,0.0,0.0,0.805,0.4308,0.9893,1.2821,0.2625,1.087,26.3005,8.415,8.2107,0.0,0.0,41.8865,5.128,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.63,76.676,66.3469,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,53.4806,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,7.6684,8.2127,0.0,0.0,46.5516,3.909,9.02,46.55,3.91,9.02,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.87,9549.99,5629.63,70.67,1.0,70.67,85.63,85.63,0.0,61.27,1.0,61.27,85.63,85.63,0.0,80.29,80.71,65.4822,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.8842,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,7.6476,8.2105,0.0,0.0,45.3977,3.909,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.62,76.706,67.1366,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,58.268,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,30.0613,7.6274,8.212,0.0,0.0,23.2692,4.745,9.02,23.27,4.75,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.64,4943.66,5713.08,56.2,1.0,56.2,86.62,86.62,0.0,50.29,1.0,50.29,86.62,86.62,0.0,81.65,80.737,66.6081,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.675,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.6009,8.2105,0.0,0.0,22.7922,4.746,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.69,76.714,65.648,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.688,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,29.139,7.0611,8.212,0.0,0.0,21.7422,3.692,9.02,21.74,3.69,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.93,4716.88,5561.77,53.34,1.0,53.34,84.69,84.69,0.0,47.33,1.0,47.33,84.69,84.69,0.0,80.15,80.744,65.3937,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.262,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0157,7.0495,8.2105,0.0,0.0,21.4292,3.696,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.67,76.714,65.6382,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.686,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,29.1483,7.0419,8.212,0.0,0.0,21.7492,3.682,9.02,21.75,3.68,9.02,21.12,0.12,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.9,4715.09,5561.77,53.34,1.0,53.34,84.67,84.67,0.0,47.33,1.0,47.33,84.67,84.67,0.0,80.13,80.744,65.3808,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0238,7.0285,8.2105,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/base_results/sample_files2.csv b/workflow/tests/base_results/sample_files2.csv index ff5f25148..103424a1c 100644 --- a/workflow/tests/base_results/sample_files2.csv +++ b/workflow/tests/base_results/sample_files2.csv @@ -1,86 +1,86 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-hvac-air-to-air-heat-pump-1-speed.xml,83.76,76.714,64.9292,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.121,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.5305,7.0687,8.212,0.0,0.0,21.2882,3.696,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.0,4664.72,5561.77,53.17,1.0,53.17,83.76,83.76,0.0,47.33,1.0,47.33,83.76,83.76,0.0,79.91,80.744,65.2028,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8248,7.0495,8.2105,0.0,0.0,21.2882,3.696,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,72.19,76.714,55.9634,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,21.5748,5.0586,8.212,0.0,0.0,16.0981,2.645,9.02,16.1,2.65,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.39,4124.65,5561.77,53.17,1.0,53.17,72.19,72.19,0.0,47.33,1.0,47.33,72.19,72.19,0.0,68.84,80.744,56.1707,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.7973,5.0449,8.2105,0.0,0.0,16.0981,2.645,9.02,16.1,2.65,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,71.68,76.714,55.5664,77.5187,0.22028,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,30.56,8.44,10.49,22.8,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.2704,3.9661,8.212,0.0,0.0,16.6171,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.5,4123.48,5551.65,53.24,1.0,53.24,71.68,71.68,0.0,47.4,1.0,47.4,71.68,71.68,0.0,68.37,80.743,55.7822,81.59,0.22028,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5001,3.9536,8.2105,0.0,0.0,16.6171,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-elec-only.xml,99.24,76.706,76.9162,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,65.812,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,39.9573,7.629,8.212,0.0,0.0,30.9293,4.746,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.18,5610.08,5713.08,56.0,1.0,56.0,99.24,99.24,0.0,50.29,1.0,50.29,99.24,99.24,0.0,94.63,80.737,77.2036,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,65.812,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,40.2742,7.6009,8.2105,0.0,0.0,30.9293,4.746,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-gas-only.xml,71.14,76.706,55.1664,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2074,7.629,8.212,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,132.65,7661.89,5713.08,57.09,1.0,57.09,71.14,71.14,0.0,51.95,1.0,51.95,71.14,71.14,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-oil-only.xml,71.15,76.706,55.178,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.3158,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2191,7.629,8.212,0.0,0.0,29.8035,4.746,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.88,9234.48,5713.08,57.09,1.0,57.09,71.15,71.15,0.0,51.95,1.0,51.95,71.15,71.15,0.0,67.63,80.737,55.2006,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.3158,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2712,7.6009,8.2105,0.0,0.0,29.8035,4.746,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-propane-only.xml,71.14,76.706,55.1664,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2074,7.629,8.212,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.93,8659.68,5713.08,57.09,1.0,57.09,71.14,71.14,0.0,51.95,1.0,51.95,71.14,71.14,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,84.88,76.706,65.7947,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9262,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5062,7.9585,8.212,0.0,0.0,45.3977,4.951,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.82,9458.35,5713.08,71.77,1.0,71.77,84.88,84.88,0.0,62.69,1.0,62.69,84.88,84.88,0.0,80.6,80.736,65.7639,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9262,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9293,8.2105,0.0,0.0,45.3977,4.951,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed.xml,84.9,76.706,65.814,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9382,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5062,7.9778,8.212,0.0,0.0,45.3977,4.963,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.84,9459.21,5713.08,71.77,1.0,71.77,84.9,84.9,0.0,62.69,1.0,62.69,84.9,84.9,0.0,80.63,80.736,65.7831,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9382,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9485,8.2105,0.0,0.0,45.3977,4.963,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-2-speed.xml,82.59,76.706,64.0217,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8242,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5062,6.1855,8.212,0.0,0.0,45.3977,3.848,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.44,9378.41,5713.08,71.77,1.0,71.77,82.59,82.59,0.0,62.69,1.0,62.69,82.59,82.59,0.0,78.44,80.736,63.9973,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8242,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,6.1627,8.2105,0.0,0.0,45.3977,3.848,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-var-speed.xml,81.51,76.701,63.1794,77.5117,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.2042,0.0,0.0,30.56,8.43,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4344,0.9896,1.2821,0.2625,1.087,28.5062,5.3432,8.212,0.0,0.0,45.3977,3.229,9.02,45.4,3.23,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.95,9332.58,5702.27,71.8,1.0,71.8,81.51,81.51,0.0,62.73,1.0,62.73,81.51,81.51,0.0,77.41,80.731,63.1567,81.5843,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.2042,0.0,0.0,34.66,8.36,10.49,55.2,5.07,11.52,27.22,0.0,0.0,0.805,0.4327,0.9894,1.2821,0.2625,1.087,28.5061,5.3221,8.2105,0.0,0.0,45.3977,3.229,9.02,45.4,3.23,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.12,76.706,66.7528,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.891,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4451,7.9778,8.212,0.0,0.0,22.7922,4.963,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.95,4904.2,5713.08,54.82,1.0,54.82,86.12,86.12,0.0,48.99,1.0,48.99,86.12,86.12,0.0,82.07,80.737,66.9556,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.891,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.9485,8.2105,0.0,0.0,22.7922,4.963,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-dse.xml,78.19,76.706,60.6091,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.4596,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.5327,8.7464,8.212,0.0,0.0,35.8978,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.8,8532.14,5561.77,56.48,1.0,56.48,78.19,78.19,0.0,51.05,1.0,51.05,78.19,78.19,0.0,74.26,80.736,60.584,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.4596,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.5376,8.7178,8.2105,0.0,0.0,35.8978,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.68,76.714,62.545,77.5178,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0604,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.5021,0.9896,1.7253,0.2625,1.087,26.1464,7.0687,8.212,0.0,0.0,27.1156,3.696,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,109.51,6154.36,5561.77,53.17,1.0,53.17,80.68,80.68,0.0,47.33,1.0,47.33,80.68,80.68,0.0,76.95,80.744,62.7813,81.59,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0604,0.0,0.0,34.66,8.38,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.403399999999998,7.0495,8.2105,0.0,0.0,27.1156,3.696,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,79.95,76.713,61.9717,77.5162,0.21988,0.9922,1.0,1.0185,1.0105,1.0,52.8336,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.5021,0.9896,1.7253,0.2625,1.087,25.573,7.0687,8.212,0.0,0.0,29.701700000000002,3.696,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,120.14,6752.07,5561.77,53.17,1.0,53.17,79.95,79.95,0.0,47.33,1.0,47.33,79.95,79.95,0.0,76.22,80.744,62.1837,81.5894,0.21988,0.9922,1.0,1.0185,1.0105,1.0,52.8336,0.0,0.0,34.66,8.38,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8057,7.0495,8.2105,0.0,0.0,29.701700000000002,3.696,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-area-fractions.xml,84.25,104.694,85.15,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,37.356,12.4543,8.0706,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.49,12925.65,7501.77,56.01,1.0,56.01,84.25,84.25,0.0,51.2,1.0,51.2,84.25,84.25,0.0,77.25,114.3,85.2379,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,37.3578,12.5433,8.0678,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-buried.xml,75.24,76.706,58.3206,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.0306,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,21.6058,7.3849,8.212,0.0,0.0,34.421,4.567,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.39,8227.76,5561.77,56.49,1.0,56.49,75.24,75.24,0.0,51.05,1.0,51.05,75.24,75.24,0.0,71.46,80.736,58.2998,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.0306,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.6105,7.3607,8.2105,0.0,0.0,34.421,4.567,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-leakage-cfm50.xml,76.28,76.706,59.1293,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5286,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.2107,7.5886,8.212,0.0,0.0,35.3848,4.693,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.36,8394.71,5561.77,56.49,1.0,56.49,76.28,76.28,0.0,51.05,1.0,51.05,76.28,76.28,0.0,72.45,80.736,59.1079,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5286,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2156,7.5638,8.2105,0.0,0.0,35.3848,4.693,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-elec-resistance-only.xml,95.24,76.706,73.8156,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.411,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,36.8567,7.629,8.212,0.0,0.0,28.5293,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.58,5401.97,5713.08,56.0,1.0,56.0,95.24,95.24,0.0,50.29,1.0,50.29,95.24,95.24,0.0,90.8,80.737,74.0785,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.411,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.149,7.6009,8.2105,0.0,0.0,28.5293,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only-ducted.xml,76.08,76.706,58.9785,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6858,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5056,1.1429,8.212,0.0,0.0,45.3967,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.32,9140.71,5713.08,71.77,1.0,71.77,76.08,76.08,0.0,62.69,1.0,62.69,76.08,76.08,0.0,72.28,80.736,58.9727,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6858,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,1.1387,8.2105,0.0,0.0,45.3967,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only.xml,75.92,76.706,58.8521,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6072,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5062,1.0159,8.212,0.0,0.0,45.3977,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.23,9135.26,5713.08,71.77,1.0,71.77,75.92,75.92,0.0,62.69,1.0,62.69,75.92,75.92,0.0,72.13,80.736,58.8468,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6072,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,1.0122,8.2105,0.0,0.0,45.3977,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-fireplace-wood-only.xml,76.27,76.706,59.1187,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1598,7.629,8.212,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.66,1.0,57.66,76.27,76.27,0.0,52.34,1.0,52.34,76.27,76.27,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-floor-furnace-propane-only.xml,76.27,76.706,59.1187,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1598,7.629,8.212,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.72,9163.86,5713.08,57.66,1.0,57.66,76.27,76.27,0.0,52.34,1.0,52.34,76.27,76.27,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-elec-only.xml,111.55,76.706,86.4569,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,73.197,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,49.498,7.629,8.212,0.0,0.0,38.3143,4.746,9.02,38.31,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,108.85,6283.89,5713.08,56.0,1.0,56.0,111.55,111.55,0.0,50.29,1.0,50.29,111.55,111.55,0.0,106.42,80.737,86.82,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,73.197,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,49.8906,7.6009,8.2105,0.0,0.0,38.3143,4.746,9.02,38.31,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-only.xml,78.29,76.706,60.6859,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8922,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,23.7269,7.629,8.212,0.0,0.0,37.7864,4.746,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.65,8755.76,5713.08,57.66,1.0,57.66,78.29,78.29,0.0,52.34,1.0,52.34,78.29,78.29,0.0,74.34,80.736,60.6563,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8922,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,23.7268,7.6009,8.2105,0.0,0.0,37.7864,4.746,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.52,76.676,64.7118,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.4812,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5053,6.8759,8.2127,0.0,0.0,45.3977,3.505,9.02,45.4,3.51,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.29,9346.21,5629.63,70.31,1.0,70.31,83.52,83.52,0.0,61.27,1.0,61.27,83.52,83.52,0.0,79.32,80.71,64.6918,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.4812,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,6.8572,8.2105,0.0,0.0,45.3977,3.505,9.02,45.4,3.51,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.11,76.706,55.114,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,48.935,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.1551,7.629,8.212,0.0,0.0,14.0531,4.746,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.82,4088.39,5713.08,56.0,1.0,56.0,71.11,71.11,0.0,50.29,1.0,50.29,71.11,71.11,0.0,67.7,80.737,55.2286,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,48.935,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.2991,7.6009,8.2105,0.0,0.0,14.0531,4.746,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump.xml,68.27,76.714,52.9197,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.356,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.4027,6.187,8.212,0.0,0.0,12.9851,3.235,9.02,12.99,3.24,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.89,3871.71,5561.77,53.17,1.0,53.17,68.27,68.27,0.0,47.33,1.0,47.33,68.27,68.27,0.0,65.06,80.744,53.0809,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.356,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5822,6.1702,8.2105,0.0,0.0,12.9851,3.235,9.02,12.99,3.24,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.27,76.714,63.7714,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.41,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.0574,6.384,8.212,0.0,0.0,20.9352,3.338,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,81.97,4607.09,5561.77,53.17,1.0,53.17,82.27,82.27,0.0,47.33,1.0,47.33,82.27,82.27,0.0,78.49,80.744,64.042,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.41,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.3468,6.3667,8.2105,0.0,0.0,20.9352,3.338,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.03,76.706,59.7107,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.8248,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.1219,7.2587,8.212,0.0,0.0,36.8365,4.489,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.4,8621.69,5561.77,56.49,1.0,56.49,77.03,77.03,0.0,51.05,1.0,51.05,77.03,77.03,0.0,73.16,80.736,59.6906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.8248,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.127,7.235,8.2105,0.0,0.0,36.8365,4.489,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,66.83,76.714,51.809,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,45.688,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.0073,5.4717,8.212,0.0,0.0,12.6901,2.861,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.93,3817.89,5561.77,53.17,1.0,53.17,66.83,66.83,0.0,47.33,1.0,47.33,66.83,66.83,0.0,63.69,80.744,51.9681,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,45.688,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1827,5.4569,8.2105,0.0,0.0,12.6901,2.861,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.53,76.706,62.4232,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5056,4.5877,8.212,0.0,0.0,45.3967,2.854,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.19,9306.18,5713.08,71.77,1.0,71.77,80.53,80.53,0.0,62.69,1.0,62.69,80.53,80.53,0.0,76.49,80.736,62.4048,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.5708,8.2105,0.0,0.0,45.3967,2.854,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.9,76.714,51.864,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.121,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,18.818,3.716,8.212,0.0,0.0,14.0411,1.943,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.1,3883.63,5561.77,53.17,1.0,53.17,66.9,66.9,0.0,47.33,1.0,47.33,66.9,66.9,0.0,63.79,80.744,52.0465,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.012,3.7059,8.2105,0.0,0.0,14.0411,1.943,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,80.79,76.706,62.6242,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.9548,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5056,4.7886,8.212,0.0,0.0,45.3967,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.34,9315.13,5713.08,71.77,1.0,71.77,80.79,80.79,0.0,62.69,1.0,62.69,80.79,80.79,0.0,76.73,80.736,62.605,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.9548,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.771,8.2105,0.0,0.0,45.3967,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,79.98,76.706,62.0011,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.5662,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5062,4.1649,8.212,0.0,0.0,45.3977,2.591,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.86,9287.54,5713.08,71.77,1.0,71.77,79.98,79.98,0.0,62.69,1.0,62.69,79.98,79.98,0.0,75.97,80.736,61.9842,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.5662,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,4.1496,8.2105,0.0,0.0,45.3977,2.591,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.68,76.676,61.7372,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,50.9648,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5047,3.9019,8.2127,0.0,0.0,45.3967,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.29,9232.9,5629.63,70.31,1.0,70.31,79.68,79.68,0.0,61.27,1.0,61.27,79.68,79.68,0.0,75.68,80.71,61.7252,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,50.9648,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5054,3.8913,8.2105,0.0,0.0,45.3967,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,71.94,76.706,55.76,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.436,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.8011,7.629,8.212,0.0,0.0,14.5531,4.746,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.86,4148.12,5713.08,56.0,1.0,56.0,71.94,71.94,0.0,50.29,1.0,50.29,71.94,71.94,0.0,68.5,80.737,55.8796,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.436,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.9502,7.6009,8.2105,0.0,0.0,14.5531,4.746,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,67.26,76.714,52.1359,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,19.0096,3.7964,8.212,0.0,0.0,14.1841,1.985,9.02,14.18,1.99,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.39,3899.95,5561.77,53.17,1.0,53.17,67.26,67.26,0.0,47.33,1.0,47.33,67.26,67.26,0.0,64.12,80.744,52.3203,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2057,3.786,8.2105,0.0,0.0,14.1841,1.985,9.02,14.18,1.99,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,62.17,76.714,48.1904,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,15.6014,3.2589,8.212,0.0,0.0,11.6411,1.704,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,64.95,3650.52,5561.77,53.17,1.0,53.17,62.17,62.17,0.0,47.33,1.0,47.33,62.17,62.17,0.0,59.25,80.744,48.341,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7624,3.2501,8.2105,0.0,0.0,11.6411,1.704,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-multiple.xml,95.39,76.6682,73.8738,77.4414,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.17,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0657,2.1176,0.9896,7.7555,1.5750000000000002,1.087,37.6614,6.8815,8.212,0.0,0.0,43.7019,5.341,9.02,44.71,5.35,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,137.39,8579.17,6181.95,55.25,1.0,55.25,95.39,95.39,0.0,50.6,1.0,50.6,95.39,95.39,0.0,91.72,80.6862,74.7555,81.4999,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.17,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1714,2.1094999999999997,0.9894,7.7555,1.5750000000000002,1.087,38.5722,6.8536,8.2105,0.0,0.0,43.7019,5.341,9.02,44.71,5.35,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 -base-hvac-none.xml,89.69,66.752,62.7875,70.0054,0.18439,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.21,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,43.5549,4.0346,0.0,0.0,0.0,24.2422,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.34,1.0,69.34,89.69,89.69,0.0,62.71,1.0,62.71,89.69,89.69,0.0,89.65,66.751,62.7587,70.0043,0.18439,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.21,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5261,4.0346,0.0,0.0,0.0,24.2422,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-programmable-thermostat.xml,75.39,76.706,58.4354,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.1206,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.0721,7.0404,8.2138,0.0,0.0,35.164,4.354,9.022,37.91,4.35,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.33,8337.02,5561.77,56.49,1.0,56.49,75.39,75.39,0.0,51.05,1.0,51.05,75.39,75.39,0.0,71.21,80.736,58.0963,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.9074,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.9116,6.8643,8.2124,0.0,0.0,34.9006,4.259,9.022,37.62,4.26,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-electricity.xml,94.08,76.715,72.9284,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,61.776,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,38.235,5.3634,8.212,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.18,5269.36,5596.34,53.07,1.0,53.07,94.08,94.08,0.0,47.22,1.0,47.22,94.08,94.08,0.0,89.85,80.744,73.308,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,61.776,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,5.3501,8.2105,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,72.34,76.701,56.0734,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,22.1598,4.5836,8.212,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.46,7943.62,5596.34,56.43,1.0,56.43,72.34,72.34,0.0,51.0,1.0,51.0,72.34,72.34,0.0,68.71,80.731,56.0559,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,22.1597,4.5677,8.2105,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac.xml,80.53,76.701,62.4198,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.0862,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5062,4.5836,8.212,0.0,0.0,45.3977,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.36,9313.75,5747.08,71.71,1.0,71.71,80.53,80.53,0.0,62.64,1.0,62.64,80.53,80.53,0.0,76.49,80.731,62.4023,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.0862,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,4.5677,8.2105,0.0,0.0,45.3977,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-pthp.xml,65.92,76.715,51.0985,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.5637,5.2048,8.212,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.3,3805.75,5596.34,53.07,1.0,53.07,65.92,65.92,0.0,47.22,1.0,47.22,65.92,65.92,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only-ceer.xml,82.07,76.701,63.6176,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8992,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5062,5.7814,8.212,0.0,0.0,45.3977,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.37,9372.08,5747.08,71.71,1.0,71.71,82.07,82.07,0.0,62.64,1.0,62.64,82.07,82.07,0.0,77.95,80.731,63.596,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8992,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7614,8.2105,0.0,0.0,45.3977,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only.xml,82.06,76.701,63.6058,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8922,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5062,5.7696,8.212,0.0,0.0,45.3977,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.36,9371.55,5747.08,71.71,1.0,71.71,82.06,82.06,0.0,62.64,1.0,62.64,82.06,82.06,0.0,77.94,80.731,63.5842,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8922,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7496,8.2105,0.0,0.0,45.3977,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-heating.xml,95.87,76.715,74.3162,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.581,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,38.235,6.7513,8.212,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.2,5327.16,5596.34,53.07,1.0,53.07,95.87,95.87,0.0,47.22,1.0,47.22,95.87,95.87,0.0,91.54,80.744,74.6923,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.581,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,6.7345,8.2105,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,65.92,76.715,51.0985,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.5637,5.2048,8.212,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.3,3805.75,5596.34,53.07,1.0,53.07,65.92,65.92,0.0,47.22,1.0,47.22,65.92,65.92,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-space-heater-gas-only.xml,68.16,76.706,52.8358,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.2936,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,15.8769,7.629,8.212,0.0,0.0,25.2847,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.69,7025.63,5713.08,57.66,1.0,57.66,68.16,68.16,0.0,52.34,1.0,52.34,68.16,68.16,0.0,64.72,80.736,52.8062,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.2936,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,15.8768,7.6009,8.2105,0.0,0.0,25.2847,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-stove-wood-pellets-only.xml,76.24,76.706,59.102,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.2004,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.143,7.629,8.212,0.0,0.0,35.264,4.746,9.02,35.63,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.66,1.0,57.66,76.24,76.24,0.0,52.34,1.0,52.34,76.24,76.24,0.0,72.4,80.736,59.0724,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.2004,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1429,7.6009,8.2105,0.0,0.0,35.264,4.746,9.02,35.63,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-undersized.xml,73.21,76.706,56.7513,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9308,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,20.4488,6.9725,8.212,0.0,0.0,32.5779,4.312,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.94,7921.36,5561.77,56.49,1.0,56.49,73.21,73.21,0.0,51.05,1.0,51.05,73.21,73.21,0.0,69.53,80.736,56.7316,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9308,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,20.4533,6.9498,8.2105,0.0,0.0,32.5779,4.312,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-wall-furnace-elec-only.xml,96.21,76.706,74.5675,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.993,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,37.6086,7.629,8.212,0.0,0.0,29.1113,4.746,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.49,5454.55,5713.08,56.0,1.0,56.0,96.21,96.21,0.0,50.29,1.0,50.29,96.21,96.21,0.0,91.73,80.737,74.8363,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.993,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.9069,7.6009,8.2105,0.0,0.0,29.1113,4.746,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans.xml,77.54,77.131,60.4317,77.9369,0.21941,0.9922,1.0,1.0184,1.0104,1.0,51.677,0.0,0.0,30.54,8.12,10.49,48.66,5.06,11.52,27.98,0.0,0.0,0.8047,0.4218,0.9899,1.2821,0.2625,1.087,23.0743,7.4954,8.213,0.0,0.0,36.7614,4.665,9.018,39.63,4.67,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.48,8652.62,5616.01,56.5,1.0,56.5,77.54,77.54,0.0,51.12,1.0,51.12,77.54,77.54,0.0,73.67,81.146,60.406,81.9938,0.21941,0.9922,1.0,1.0184,1.0104,1.0,51.677,0.0,0.0,34.64,8.04,10.49,55.18,5.03,11.52,27.97,0.0,0.0,0.8049,0.4202,0.9897,1.2821,0.2625,1.087,23.0798,7.4663,8.2109,0.0,0.0,36.7614,4.665,9.018,39.63,4.67,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-baltimore-md.xml,67.93,60.304,43.9581,64.7081,0.27311,1.0489,1.0,1.023,1.073,1.0,37.6618,0.0,0.0,20.96,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.8009,0.4193,0.9661,1.2821,0.2625,1.087,10.6409,10.7328,7.5653,0.0,0.0,17.0329,6.7201,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.91,8882.68,11674.09,51.42,1.0,51.42,67.93,67.93,0.0,49.03,1.0,49.03,67.93,67.93,0.0,66.95,61.056,43.8595,65.515,0.27311,1.0489,1.0,1.023,1.073,1.0,37.6618,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4154,0.9661,1.2821,0.2625,1.087,10.6427,10.6325,7.5653,0.0,0.0,17.0329,6.7201,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-capetown-zaf.xml,77.9,36.333,29.621,38.0262,0.17648,1.0314,1.0,1.0148,1.0466,1.0,26.9616,0.0,0.0,4.32,4.49,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8008,0.4833,0.9591,1.2821,0.2625,1.087,0.4682,7.4405,6.6293,0.0,0.0,0.7495,4.042,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.29,1.0,50.29,77.9,77.9,0.0,48.05,1.0,48.05,77.9,77.9,0.0,77.17,36.623,29.5798,38.3297,0.17648,1.0314,1.0,1.0148,1.0466,1.0,26.9616,0.0,0.0,4.75,4.35,8.36,7.61,2.38,9.47,19.17,0.0,0.0,0.801,0.4806,0.959,1.2821,0.2625,1.087,0.4683,7.3999,6.6286,0.0,0.0,0.7495,4.042,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-dallas-tx.xml,66.78,63.07,45.2069,67.6952,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.3978,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,2.5599,21.6159,5.9361,0.0,0.0,4.101,12.8091,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.73,5752.43,7577.77,47.22,1.0,47.22,66.78,66.78,0.0,44.3,1.0,44.3,66.78,66.78,0.0,65.87,63.66,45.0099,68.3284,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.3978,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,2.5599,21.4196,5.9354,0.0,0.0,4.101,12.8091,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,71.8,79.013,60.6161,84.4246,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8798,0.0,0.0,45.93,1.75,13.08,73.17,1.97,14.52,18.26,0.0,0.0,0.8047,0.233,0.9791,1.2821,0.2625,1.087,33.9308,2.0908,10.2885,0.0,0.0,54.0586,2.356,11.422,58.28,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.96,10642.87,6305.71,53.94,1.0,53.94,71.8,71.8,0.0,47.01,1.0,47.01,71.8,71.8,0.0,67.44,83.952,60.4964,89.7018,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8798,0.0,0.0,51.02,1.6,13.08,81.28,1.91,14.52,18.26,0.0,0.0,0.8047,0.2196,0.9791,1.2821,0.2625,1.087,33.9316,1.9703,10.2885,0.0,0.0,54.0586,2.356,11.422,58.28,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-helena-mt.xml,77.48,92.35,72.3123,93.3324,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2344,0.0,0.0,49.58,3.69,11.89,78.97,2.67,12.94,27.19,0.0,0.0,0.8049,0.3635,0.9988,1.2821,0.2625,1.087,38.5347,3.3505,9.3421,0.0,0.0,61.3766,2.42,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,200.51,11821.91,5833.96,57.74,1.0,57.74,77.48,77.48,0.0,51.12,1.0,51.12,77.48,77.48,0.0,72.22,98.963,72.2268,100.0158,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2344,0.0,0.0,56.4,3.49,11.89,89.83,2.59,12.95,27.18,0.0,0.0,0.8049,0.3544,0.9985,1.2821,0.2625,1.087,38.5355,3.2663,9.34,0.0,0.0,61.3766,2.42,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-honolulu-hi.xml,79.09,66.754,55.3611,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,39.876,0.0,0.0,0.0,42.21,5.18,0.0,23.29,6.1,19.36,0.0,0.0,0.0,0.4758,0.9238,1.2821,0.2625,1.087,0.0,36.1285,4.0346,0.0,0.0,0.0,19.9332,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,62.62,1.0,62.62,79.09,79.09,0.0,41.77,1.0,41.77,79.09,79.09,0.0,79.06,66.754,55.3363,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,39.876,0.0,0.0,0.0,42.21,5.18,0.0,23.3,6.1,19.36,0.0,0.0,0.0,0.4755,0.9238,1.2821,0.2625,1.087,0.0,36.1037,4.0346,0.0,0.0,0.0,19.9332,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-miami-fl.xml,75.57,65.361,52.0681,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,39.123,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4507,0.9264,1.2821,0.2625,1.087,0.0,32.7257,4.1565,0.0,0.0,0.0,19.0612,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,75.13,5782.71,7300.97,63.45,1.0,63.45,75.57,75.57,0.0,43.46,1.0,43.46,75.57,75.57,0.0,75.57,65.361,52.0695,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,39.123,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4508,0.9264,1.2821,0.2625,1.087,0.0,32.727,4.1565,0.0,0.0,0.0,19.0612,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-phoenix-az.xml,69.69,77.858,58.3962,83.797,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2878,0.0,0.0,1.43,51.54,5.6,2.29,29.19,6.55,19.29,0.0,0.0,0.8003,0.4635,0.9289,1.2821,0.2625,1.087,0.0591,38.8156,4.3635,0.0,0.0,0.0946,21.9842,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,70.08,4728.39,6268.75,49.08,1.0,49.08,69.69,69.69,0.0,44.72,1.0,44.72,69.69,69.69,0.0,69.6,77.934,58.3835,83.8788,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2878,0.0,0.0,1.46,51.59,5.6,2.34,29.23,6.55,19.28,0.0,0.0,0.8,0.4634,0.9289,1.2821,0.2625,1.087,0.059,38.8029,4.3635,0.0,0.0,0.0946,21.9842,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-portland-or.xml,74.63,46.215,36.2222,48.5335,0.18966,1.0337,1.0,1.0159,1.0502,1.0,33.2606,0.0,0.0,13.7,3.43,9.97,21.93,2.46,11.25,19.11,0.0,0.0,0.8007,0.3659,0.9636,1.2821,0.2625,1.087,9.4166,3.9125,7.9191,0.0,0.0,15.0784,2.807,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,135.1,4108.04,2895.38,66.19,1.0,66.19,74.63,74.63,0.0,50.06,1.0,50.06,74.63,74.63,0.0,73.35,46.985,36.19,49.3421,0.18966,1.0337,1.0,1.0159,1.0502,1.0,33.2606,0.0,0.0,14.54,3.36,9.97,23.28,2.43,11.25,19.11,0.0,0.0,0.8007,0.3629,0.9636,1.2821,0.2625,1.087,9.4174,3.8796,7.9191,0.0,0.0,15.0784,2.807,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-balanced.xml,81.81,78.062,64.5349,78.8861,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,30.16,8.61,10.49,48.06,5.3,11.52,27.23,1.58,0.0,0.8047,0.4265,0.9897,1.2821,0.2625,1.087,25.3957,8.0197,8.2136,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.23,9364.83,5677.13,56.49,1.0,56.49,81.81,81.81,0.0,51.05,1.0,51.05,81.81,81.81,0.0,77.78,82.077,64.5108,82.9435,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,34.25,8.54,10.49,54.55,5.28,11.52,27.22,1.58,0.0,0.8049,0.425,0.9895,1.2821,0.2625,1.087,25.4013,7.9913,8.2122,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,78.57,77.602,61.6163,78.4213,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,30.3,8.55,10.49,48.27,5.27,11.52,27.23,1.04,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.3523,8.161,8.212,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.1,8608.95,5637.92,56.49,1.0,56.49,78.57,78.57,0.0,51.05,1.0,51.05,78.57,78.57,0.0,74.67,81.622,61.5901,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.3573,8.1314,8.2105,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.33,77.602,59.0747,78.4213,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5006,0.0,0.0,30.3,8.55,10.49,48.27,5.27,11.52,27.23,1.04,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,21.3206,7.9242,8.212,0.0,0.0,33.9674,4.885,9.02,36.62,4.89,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.52,8233.88,5637.92,56.49,1.0,56.49,75.33,75.33,0.0,51.05,1.0,51.05,75.33,75.33,0.0,71.59,81.622,59.0492,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5006,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,21.3253,7.8954,8.2105,0.0,0.0,33.9674,4.885,9.02,36.62,4.89,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis.xml,79.42,77.602,62.2841,78.4213,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,30.3,8.55,10.49,48.27,5.27,11.52,27.23,1.04,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,23.0551,8.161,8.212,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.13,8781.73,5637.92,56.49,1.0,56.49,79.42,79.42,0.0,51.05,1.0,51.05,79.42,79.42,0.0,75.48,81.622,62.2581,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,23.0602,8.1314,8.2105,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv-atre-asre.xml,70.98,78.643,56.4076,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9844,8.2943,8.2099,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.0,5726.48,56.49,1.0,56.49,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3793,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9885,8.2634,8.2085,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv.xml,70.98,78.643,56.4094,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9862,8.2943,8.2099,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.47,5726.48,56.49,1.0,56.49,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3811,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9902,8.2634,8.2085,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-exhaust.xml,77.81,77.602,61.023,78.4213,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,30.3,8.55,10.49,48.27,5.27,11.52,27.23,1.04,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.8781,7.9209,8.212,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.97,8658.3,5637.92,56.49,1.0,56.49,77.81,77.81,0.0,51.05,1.0,51.05,77.81,77.81,0.0,73.95,81.622,60.9978,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.8831,7.8921,8.2105,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv-asre.xml,70.98,78.643,56.4119,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9839,8.2991,8.2099,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.03,5726.48,56.49,1.0,56.49,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3836,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9879,8.2682,8.2085,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv.xml,70.98,78.643,56.4137,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9856,8.2991,8.2099,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.5,5726.48,56.49,1.0,56.49,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3854,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9896,8.2682,8.2085,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-multiple.xml,81.28,78.234,64.2572,79.0604,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.2124,0.0,0.0,30.12,8.62,10.49,47.97,6.2,11.52,27.23,1.78,0.0,1.6095,0.7309,0.9897,2.5642,0.525,1.087,24.898,8.5818,8.2145,0.0,0.0,39.665800000000004,6.165,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,160.75,9321.81,5738.19,57.22,1.0,57.22,81.28,81.28,0.0,51.78,1.0,51.78,81.28,81.28,0.0,77.27,82.247,64.2242,83.1158,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.2124,0.0,0.0,34.2,8.56,10.49,54.47,6.18,11.52,27.22,1.78,0.0,1.6098,0.7278,0.9895,2.5642,0.525,1.087,24.902700000000003,8.5454,8.2131,0.0,0.0,39.665800000000004,6.165,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 -base-mechvent-supply.xml,77.56,77.602,60.8201,78.4213,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,30.3,8.55,10.49,48.27,5.27,11.52,27.23,1.04,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.5136,8.0815,8.212,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.48,8573.52,5637.92,56.49,1.0,56.49,77.56,77.56,0.0,51.05,1.0,51.05,77.56,77.56,0.0,73.7,81.622,60.7943,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.5186,8.0522,8.2105,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-whole-house-fan.xml,76.15,76.706,59.032,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.165,6.5505,8.2165,0.0,0.0,36.9052,4.051,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.83,8589.86,5561.77,56.49,1.0,56.49,76.15,76.15,0.0,51.05,1.0,51.05,76.15,76.15,0.0,72.33,80.736,59.0143,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.1701,6.5291,8.2151,0.0,0.0,36.9052,4.051,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-misc-generators.xml,76.0,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.9761,58.1976,1.389,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,193.21,10859.31,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,72.18,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9761,58.1976,1.389,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv-battery.xml,39.01,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.5011,52.2266,26.886,0.828,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,118.99,6687.61,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv.xml,37.13,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.4769,51.3976,26.886,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.14,6808.82,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,84.44,76.714,65.4563,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.547,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.9473,7.0611,8.212,0.0,0.0,21.5992,3.692,9.02,21.6,3.69,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.67,4702.34,5561.77,53.34,1.0,53.34,84.44,84.44,0.0,47.33,1.0,47.33,84.44,84.44,0.0,79.91,80.744,65.2028,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8248,7.0495,8.2105,0.0,0.0,21.2882,3.696,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,72.77,76.714,56.4107,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,49.244,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,21.9098,5.0529,8.212,0.0,0.0,16.3481,2.642,9.02,16.35,2.64,9.02,21.12,0.12,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.97,4156.95,5561.77,53.34,1.0,53.34,72.77,72.77,0.0,47.33,1.0,47.33,72.77,72.77,0.0,68.84,80.744,56.1707,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.7973,5.0449,8.2105,0.0,0.0,16.0981,2.645,9.02,16.1,2.65,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,72.58,76.714,56.2601,77.5187,0.22028,0.9921,1.0,1.0185,1.0105,1.0,49.309,0.0,0.0,30.56,8.44,10.49,22.8,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.848,3.9641,8.212,0.0,0.0,17.0482,2.006,9.02,17.05,2.01,9.02,21.12,0.12,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.36,4171.77,5551.65,53.41,1.0,53.41,72.58,72.58,0.0,47.4,1.0,47.4,72.58,72.58,0.0,68.37,80.743,55.7822,81.59,0.22028,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5001,3.9536,8.2105,0.0,0.0,16.6171,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-elec-only.xml,100.61,76.706,77.9834,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,66.663,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,40.9081,7.6274,8.212,0.0,0.0,31.6653,4.745,9.02,31.67,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,98.48,5684.87,5713.08,56.2,1.0,56.2,100.61,100.61,0.0,50.29,1.0,50.29,100.61,100.61,0.0,94.63,80.737,77.2036,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,65.812,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,40.2742,7.6009,8.2105,0.0,0.0,30.9293,4.746,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-gas-only.xml,71.84,76.706,55.7157,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.6184,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6404,7.6274,8.212,0.0,0.0,30.4927,4.745,9.02,33.71,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,134.81,7786.45,5713.08,57.31,1.0,57.31,71.84,71.84,0.0,51.95,1.0,51.95,71.84,71.84,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-oil-only.xml,71.86,76.706,55.7278,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.752,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6525,7.6274,8.212,0.0,0.0,30.5126,4.745,9.02,33.74,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.68,9396.42,5713.08,57.31,1.0,57.31,71.86,71.86,0.0,51.95,1.0,51.95,71.86,71.86,0.0,67.63,80.737,55.2006,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.3158,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2712,7.6009,8.2105,0.0,0.0,29.8035,4.746,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-propane-only.xml,71.84,76.706,55.7157,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.6184,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6404,7.6274,8.212,0.0,0.0,30.4927,4.745,9.02,33.71,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.49,8807.93,5713.08,57.31,1.0,57.31,71.84,71.84,0.0,51.95,1.0,51.95,71.84,71.84,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,85.95,76.706,66.6292,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,54.5176,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,7.9504,8.212,0.0,0.0,46.5516,4.946,9.02,46.55,4.95,9.02,21.12,0.12,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.9,9636.16,5713.08,72.13,1.0,72.13,85.95,85.95,0.0,62.69,1.0,62.69,85.95,85.95,0.0,80.6,80.736,65.7639,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9262,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9293,8.2105,0.0,0.0,45.3977,4.951,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed.xml,85.98,76.706,66.6485,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,54.5296,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,7.9697,8.212,0.0,0.0,46.5516,4.958,9.02,46.55,4.96,9.02,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.92,9637.01,5713.08,72.13,1.0,72.13,85.98,85.98,0.0,62.69,1.0,62.69,85.98,85.98,0.0,80.63,80.736,65.7831,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9382,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9485,8.2105,0.0,0.0,45.3977,4.963,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-2-speed.xml,83.67,76.706,64.861,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.4166,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,6.1823,8.212,0.0,0.0,46.5516,3.846,9.02,46.55,3.85,9.02,21.12,0.12,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.52,9556.36,5713.08,72.13,1.0,72.13,83.67,83.67,0.0,62.69,1.0,62.69,83.67,83.67,0.0,78.44,80.736,63.9973,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8242,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,6.1627,8.2105,0.0,0.0,45.3977,3.848,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-var-speed.xml,82.62,76.701,64.0386,77.5117,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.8106,0.0,0.0,30.56,8.43,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4344,0.9896,1.2821,0.2625,1.087,29.2308,5.3598,8.212,0.0,0.0,46.5516,3.239,9.02,46.55,3.24,9.02,21.12,0.12,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.06,9511.55,5702.27,72.16,1.0,72.16,82.62,82.62,0.0,62.73,1.0,62.73,82.62,82.62,0.0,77.44,80.731,63.1781,81.5843,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.2182,0.0,0.0,34.66,8.36,10.49,55.2,5.07,11.52,27.22,0.0,0.0,0.805,0.4327,0.9894,1.2821,0.2625,1.087,28.5061,5.3435,8.2105,0.0,0.0,45.3977,3.242,9.02,45.4,3.24,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.06,76.706,67.4806,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,58.481,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,30.0613,7.9713,8.212,0.0,0.0,23.2692,4.959,9.02,23.27,4.96,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.86,4956.36,5713.08,55.03,1.0,55.03,87.06,87.06,0.0,48.99,1.0,48.99,87.06,87.06,0.0,82.07,80.737,66.9556,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.891,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.9485,8.2105,0.0,0.0,22.7922,4.963,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-dse.xml,79.08,76.706,61.2978,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9806,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.1051,8.7448,8.212,0.0,0.0,36.8096,5.408,9.02,39.68,5.41,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.53,8685.57,5561.77,56.71,1.0,56.71,79.08,79.08,0.0,51.05,1.0,51.05,79.08,79.08,0.0,74.26,80.736,60.584,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.4596,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.5376,8.7178,8.2105,0.0,0.0,35.8978,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.34,76.714,63.0523,77.5178,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.4602,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.5021,0.9896,1.7253,0.2625,1.087,26.5433,7.0611,8.212,0.0,0.0,27.520699999999998,3.692,9.02,29.0,3.69,9.02,21.12,0.12,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,110.58,6214.6,5561.77,53.34,1.0,53.34,81.34,81.34,0.0,47.33,1.0,47.33,81.34,81.34,0.0,76.95,80.744,62.7813,81.59,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0604,0.0,0.0,34.66,8.38,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.403399999999998,7.0495,8.2105,0.0,0.0,27.1156,3.696,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.61,76.713,62.487,77.5162,0.21988,0.9922,1.0,1.0185,1.0105,1.0,53.2388,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.5021,0.9896,1.7253,0.2625,1.087,25.978,7.0611,8.212,0.0,0.0,30.161099999999998,3.692,9.02,32.18,3.69,9.02,21.12,0.12,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,121.41,6823.4,5561.77,53.34,1.0,53.34,80.61,80.61,0.0,47.33,1.0,47.33,80.61,80.61,0.0,76.22,80.744,62.1837,81.5894,0.21988,0.9922,1.0,1.0185,1.0105,1.0,52.8336,0.0,0.0,34.66,8.38,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8057,7.0495,8.2105,0.0,0.0,29.701700000000002,3.696,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-area-fractions.xml,84.25,104.694,85.15,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,37.356,12.4543,8.0706,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.49,12925.65,7501.77,56.51,1.0,56.51,84.25,84.25,0.0,51.2,1.0,51.2,84.25,84.25,0.0,77.25,114.3,85.2379,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,37.3578,12.5433,8.0678,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-buried.xml,76.08,76.706,58.975,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5398,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.1438,7.3833,8.212,0.0,0.0,35.2781,4.566,9.02,38.03,4.57,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.95,8371.53,5561.77,56.72,1.0,56.72,76.08,76.08,0.0,51.05,1.0,51.05,76.08,76.08,0.0,71.46,80.736,58.2998,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.0306,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.6105,7.3607,8.2105,0.0,0.0,34.421,4.567,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-leakage-cfm50.xml,77.11,76.706,59.7722,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0198,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.7388,7.5854,8.212,0.0,0.0,36.2262,4.691,9.02,39.05,4.69,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.88,8536.36,5561.77,56.72,1.0,56.72,77.11,77.11,0.0,51.05,1.0,51.05,77.11,77.11,0.0,72.45,80.736,59.1079,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5286,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2156,7.5638,8.2105,0.0,0.0,35.3848,4.693,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-elec-resistance-only.xml,96.6,76.706,74.8687,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,64.253,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,37.7934,7.6274,8.212,0.0,0.0,29.2543,4.745,9.02,29.25,4.75,9.02,21.12,0.12,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.86,5476.21,5713.08,56.2,1.0,56.2,96.6,96.6,0.0,50.29,1.0,50.29,96.6,96.6,0.0,90.8,80.737,74.0785,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.411,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.149,7.6009,8.2105,0.0,0.0,28.5293,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only-ducted.xml,77.17,76.706,59.8233,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,50.2826,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,1.1445,8.212,0.0,0.0,46.5516,0.712,9.02,46.55,0.71,9.02,21.12,0.12,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.41,9319.01,5713.08,72.13,1.0,72.13,77.17,77.17,0.0,62.69,1.0,62.69,77.17,77.17,0.0,72.28,80.736,58.9727,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6858,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,1.1387,8.2105,0.0,0.0,45.3967,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only.xml,77.01,76.706,59.6947,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,50.2036,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,1.0159,8.212,0.0,0.0,46.5516,0.632,9.02,46.55,0.63,9.02,21.12,0.12,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.32,9313.54,5713.08,72.13,1.0,72.13,77.01,77.01,0.0,62.69,1.0,62.69,77.01,77.01,0.0,72.13,80.736,58.8468,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6072,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,1.0122,8.2105,0.0,0.0,45.3977,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-fireplace-wood-only.xml,77.14,76.706,59.7987,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6262,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7234,7.6274,8.212,0.0,0.0,36.1883,4.745,9.02,36.57,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.89,1.0,57.89,77.14,77.14,0.0,52.34,1.0,52.34,77.14,77.14,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-floor-furnace-propane-only.xml,77.14,76.706,59.7987,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6262,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7234,7.6274,8.212,0.0,0.0,36.1883,4.745,9.02,36.57,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.68,9334.69,5713.08,57.89,1.0,57.89,77.14,77.14,0.0,52.34,1.0,52.34,77.14,77.14,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-elec-only.xml,113.15,76.706,87.696,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,74.182,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,50.6207,7.6274,8.212,0.0,0.0,39.1834,4.745,9.02,39.18,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,110.36,6370.86,5713.08,56.2,1.0,56.2,113.15,113.15,0.0,50.29,1.0,50.29,113.15,113.15,0.0,106.42,80.737,86.82,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,73.197,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,49.8906,7.6009,8.2105,0.0,0.0,38.3143,4.746,9.02,38.31,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-only.xml,79.13,76.706,61.3405,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.394,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,24.2652,7.6274,8.212,0.0,0.0,38.6435,4.745,9.02,41.66,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.15,8899.85,5713.08,57.89,1.0,57.89,79.13,79.13,0.0,52.34,1.0,52.34,79.13,79.13,0.0,74.34,80.736,60.6563,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8922,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,23.7268,7.6009,8.2105,0.0,0.0,37.7864,4.746,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.61,76.676,65.5603,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,53.0796,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,6.8817,8.2127,0.0,0.0,46.5516,3.508,9.02,46.55,3.51,9.02,21.12,0.12,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.42,9524.49,5629.63,70.67,1.0,70.67,84.61,84.61,0.0,61.27,1.0,61.27,84.61,84.61,0.0,79.32,80.71,64.6918,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.4812,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,6.8572,8.2105,0.0,0.0,45.3977,3.505,9.02,45.4,3.51,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.82,76.706,55.6645,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.388,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.5892,7.6274,8.212,0.0,0.0,14.3891,4.745,9.02,14.39,4.75,9.02,21.12,0.12,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.51,4127.86,5713.08,56.2,1.0,56.2,71.82,71.82,0.0,50.29,1.0,50.29,71.82,71.82,0.0,67.7,80.737,55.2286,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,48.935,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.2991,7.6009,8.2105,0.0,0.0,14.0531,4.746,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump.xml,68.95,76.714,53.4497,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.783,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.8262,6.1756,8.212,0.0,0.0,13.3011,3.229,9.02,13.3,3.23,9.02,21.12,0.12,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.55,3909.02,5561.77,53.34,1.0,53.34,68.95,68.95,0.0,47.33,1.0,47.33,68.95,68.95,0.0,65.06,80.744,53.0809,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.356,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5822,6.1702,8.2105,0.0,0.0,12.9851,3.235,9.02,12.99,3.24,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.97,76.714,64.3206,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.849,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.4943,6.3783,8.212,0.0,0.0,21.2612,3.335,9.02,21.26,3.34,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,82.66,4645.87,5561.77,53.34,1.0,53.34,82.97,82.97,0.0,47.33,1.0,47.33,82.97,82.97,0.0,78.49,80.744,64.042,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.41,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.3468,6.3667,8.2105,0.0,0.0,20.9352,3.338,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.87,76.706,60.3608,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3162,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6605,7.2523,8.212,0.0,0.0,37.6946,4.485,9.02,40.64,4.49,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.98,8766.61,5561.77,56.72,1.0,56.72,77.87,77.87,0.0,51.05,1.0,51.05,77.87,77.87,0.0,73.16,80.736,59.6906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.8248,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.127,7.235,8.2105,0.0,0.0,36.8365,4.489,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,67.51,76.714,52.3297,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.108,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.4215,5.4603,8.212,0.0,0.0,12.9991,2.855,9.02,13.0,2.86,9.02,21.12,0.12,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.59,3854.62,5561.77,53.34,1.0,53.34,67.51,67.51,0.0,47.33,1.0,47.33,67.51,67.51,0.0,63.69,80.744,51.9681,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,45.688,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1827,5.4569,8.2105,0.0,0.0,12.6901,2.861,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.62,76.706,63.2713,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.4286,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.5925,8.212,0.0,0.0,46.5516,2.857,9.02,46.55,2.86,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.28,9484.6,5713.08,72.13,1.0,72.13,81.62,81.62,0.0,62.69,1.0,62.69,81.62,81.62,0.0,76.49,80.736,62.4048,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.5708,8.2105,0.0,0.0,45.3967,2.854,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.61,76.714,52.4127,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.559,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,19.2468,3.718,8.212,0.0,0.0,14.3611,1.944,9.02,14.36,1.94,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.79,3922.38,5561.77,53.34,1.0,53.34,67.61,67.61,0.0,47.33,1.0,47.33,67.61,67.61,0.0,63.79,80.744,52.0465,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.012,3.7059,8.2105,0.0,0.0,14.0411,1.943,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,81.89,76.706,63.4754,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.5556,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.7966,8.212,0.0,0.0,46.5516,2.984,9.02,46.55,2.98,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.43,9493.63,5713.08,72.13,1.0,72.13,81.89,81.89,0.0,62.69,1.0,62.69,81.89,81.89,0.0,76.73,80.736,62.605,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.9548,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.771,8.2105,0.0,0.0,45.3967,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,81.08,76.706,62.8485,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.1646,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.1697,8.212,0.0,0.0,46.5516,2.594,9.02,46.55,2.59,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.95,9465.93,5713.08,72.13,1.0,72.13,81.08,81.08,0.0,62.69,1.0,62.69,81.08,81.08,0.0,75.97,80.736,61.9842,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.5662,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,4.1496,8.2105,0.0,0.0,45.3977,2.591,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.77,76.676,62.5843,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,51.5616,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,3.9058,8.2127,0.0,0.0,46.5516,1.991,9.02,46.55,1.99,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.43,9411.18,5629.63,70.67,1.0,70.67,80.77,80.77,0.0,61.27,1.0,61.27,80.77,80.77,0.0,75.68,80.71,61.7252,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,50.9648,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5054,3.8913,8.2105,0.0,0.0,45.3967,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.65,76.706,56.3092,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.888,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,19.2339,7.6274,8.212,0.0,0.0,14.8881,4.745,9.02,14.89,4.75,9.02,21.12,0.12,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,72.55,4188.09,5713.08,56.2,1.0,56.2,72.65,72.65,0.0,50.29,1.0,50.29,72.65,72.65,0.0,68.5,80.737,55.8796,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.436,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.9502,7.6009,8.2105,0.0,0.0,14.5531,4.746,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,67.97,76.714,52.6909,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.749,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,19.4465,3.7964,8.212,0.0,0.0,14.5101,1.985,9.02,14.51,1.99,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.09,3939.12,5561.77,53.34,1.0,53.34,67.97,67.97,0.0,47.33,1.0,47.33,67.97,67.97,0.0,64.13,80.744,52.3222,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2057,3.788,8.2105,0.0,0.0,14.1841,1.986,9.02,14.18,1.99,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,62.83,76.714,48.7049,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.895,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,15.9941,3.2628,8.212,0.0,0.0,11.9341,1.706,9.02,11.93,1.71,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,65.6,3687.03,5561.77,53.34,1.0,53.34,62.83,62.83,0.0,47.33,1.0,47.33,62.83,62.83,0.0,59.25,80.744,48.341,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7624,3.2501,8.2105,0.0,0.0,11.6411,1.704,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-multiple.xml,96.46,76.6682,74.6991,77.4414,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.8828,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0657,2.1176,0.9896,7.7555,1.5750000000000002,1.087,38.3844,6.8667,8.212,0.0,0.0,44.5527,5.3309999999999995,9.02,45.59,5.32,9.02,21.12,0.12,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,139.34,8700.79,6181.95,55.45,1.0,55.45,96.46,96.46,0.0,50.6,1.0,50.6,96.46,96.46,0.0,91.72,80.6862,74.7555,81.4999,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.17,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1714,2.1094999999999997,0.9894,7.7555,1.5750000000000002,1.087,38.5722,6.8536,8.2105,0.0,0.0,43.7019,5.341,9.02,44.71,5.35,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 +base-hvac-none.xml,94.49,66.752,66.1469,70.0054,0.18439,1.0328,1.0,1.0155,1.0487,1.0,46.402,0.0,0.0,0.0,42.21,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,46.1313,4.0346,0.0,0.0,0.0,25.6762,4.747,0.0,25.68,4.75,15.2,0.78,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.66,1.0,69.66,94.49,94.49,0.0,62.72,1.0,62.72,94.49,94.49,0.0,89.65,66.751,62.7587,70.0043,0.18439,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.21,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5261,4.0346,0.0,0.0,0.0,24.2422,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-programmable-thermostat.xml,76.21,76.706,59.071,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.607,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.5979,7.0324,8.2147,0.0,0.0,36.0017,4.349,9.023,38.81,4.35,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.84,8478.04,5561.77,56.72,1.0,56.72,76.21,76.21,0.0,51.05,1.0,51.05,76.21,76.21,0.0,71.21,80.736,58.0963,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.9074,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.9116,6.8643,8.2124,0.0,0.0,34.9006,4.259,9.022,37.62,4.26,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-electricity.xml,95.48,76.715,74.0146,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.617,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,39.2067,5.36,8.212,0.0,0.0,29.2543,3.109,9.02,29.25,3.11,9.02,21.12,0.12,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.49,5343.59,5596.34,53.24,1.0,53.24,95.48,95.48,0.0,47.22,1.0,47.22,95.48,95.48,0.0,89.85,80.744,73.308,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,61.776,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,5.3501,8.2105,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,73.22,76.701,56.7514,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.9898,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,22.7228,4.5806,8.212,0.0,0.0,36.1873,3.109,9.02,36.57,3.11,9.02,21.12,0.12,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.99,8086.78,5596.34,56.66,1.0,56.66,73.22,73.22,0.0,51.0,1.0,51.0,73.22,73.22,0.0,68.71,80.731,56.0559,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,22.1597,4.5677,8.2105,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac.xml,81.61,76.701,63.2594,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.6806,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,4.5806,8.212,0.0,0.0,46.5516,3.109,9.02,46.55,3.11,9.02,21.12,0.12,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.43,9491.76,5747.08,72.07,1.0,72.07,81.61,81.61,0.0,62.64,1.0,62.64,81.61,81.61,0.0,76.49,80.731,62.4023,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.0862,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,4.5677,8.2105,0.0,0.0,45.3977,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-pthp.xml,66.58,76.715,51.6101,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.925,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.9591,5.2031,8.212,0.0,0.0,12.6541,3.018,9.02,12.65,3.02,9.02,21.12,0.12,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.94,3841.87,5596.34,53.24,1.0,53.24,66.58,66.58,0.0,47.22,1.0,47.22,66.58,66.58,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only-ceer.xml,83.16,76.701,64.4572,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,53.4926,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,5.7785,8.212,0.0,0.0,46.5516,3.922,9.02,46.55,3.92,9.02,21.12,0.12,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.43,9550.02,5747.08,72.07,1.0,72.07,83.16,83.16,0.0,62.64,1.0,62.64,83.16,83.16,0.0,77.95,80.731,63.596,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8992,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7614,8.2105,0.0,0.0,45.3977,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only.xml,83.14,76.701,64.4455,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,53.4856,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,5.7667,8.212,0.0,0.0,46.5516,3.914,9.02,46.55,3.91,9.02,21.12,0.12,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.42,9549.49,5747.08,72.07,1.0,72.07,83.14,83.14,0.0,62.64,1.0,62.64,83.14,83.14,0.0,77.94,80.731,63.5842,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8922,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7496,8.2105,0.0,0.0,45.3977,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-heating.xml,97.27,76.715,75.4024,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,63.422,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,39.2067,6.7478,8.212,0.0,0.0,29.2543,3.914,9.02,29.25,3.91,9.02,21.12,0.12,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,95.51,5401.33,5596.34,53.24,1.0,53.24,97.27,97.27,0.0,47.22,1.0,47.22,97.27,97.27,0.0,91.54,80.744,74.6923,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.581,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,6.7345,8.2105,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,66.58,76.715,51.6101,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.925,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.9591,5.2031,8.212,0.0,0.0,12.6541,3.018,9.02,12.65,3.02,9.02,21.12,0.12,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.94,3841.87,5596.34,53.24,1.0,53.24,66.58,66.58,0.0,47.22,1.0,47.22,66.58,66.58,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-space-heater-gas-only.xml,68.83,76.706,53.3556,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.7006,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,16.2803,7.6274,8.212,0.0,0.0,25.9273,4.745,9.02,29.25,4.75,9.02,21.12,0.12,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.7,7142.1,5713.08,57.89,1.0,57.89,68.83,68.83,0.0,52.34,1.0,52.34,68.83,68.83,0.0,64.72,80.736,52.8062,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.2936,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,15.8768,7.6009,8.2105,0.0,0.0,25.2847,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-stove-wood-pellets-only.xml,77.12,76.706,59.7807,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6806,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7054,7.6274,8.212,0.0,0.0,36.1596,4.745,9.02,36.54,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.89,1.0,57.89,77.12,77.12,0.0,52.34,1.0,52.34,77.12,77.12,0.0,72.4,80.736,59.0724,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.2004,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1429,7.6009,8.2105,0.0,0.0,35.264,4.746,9.02,35.63,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-undersized.xml,74.0,76.706,57.3603,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.3986,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,20.9414,6.9709,8.212,0.0,0.0,33.3626,4.311,9.02,35.97,4.31,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.3,8054.2,5561.77,56.72,1.0,56.72,74.0,74.0,0.0,51.05,1.0,51.05,74.0,74.0,0.0,69.53,80.736,56.7316,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9308,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,20.4533,6.9498,8.2105,0.0,0.0,32.5779,4.312,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-wall-furnace-elec-only.xml,97.59,76.706,75.6399,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,64.85,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,38.5646,7.6274,8.212,0.0,0.0,29.8513,4.745,9.02,29.85,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,95.8,5530.13,5713.08,56.2,1.0,56.2,97.59,97.59,0.0,50.29,1.0,50.29,97.59,97.59,0.0,91.73,80.737,74.8363,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.993,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.9069,7.6009,8.2105,0.0,0.0,29.1113,4.746,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans.xml,78.37,77.131,61.0781,77.9369,0.21941,0.9922,1.0,1.0184,1.0104,1.0,52.1714,0.0,0.0,30.54,8.12,10.49,48.66,5.06,11.52,27.98,0.0,0.0,0.8047,0.4218,0.9899,1.2821,0.2625,1.087,23.6117,7.4874,8.213,0.0,0.0,37.6176,4.66,9.018,40.55,4.66,9.02,21.65,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.02,8796.68,5616.01,56.73,1.0,56.73,78.37,78.37,0.0,51.12,1.0,51.12,78.37,78.37,0.0,73.67,81.146,60.406,81.9938,0.21941,0.9922,1.0,1.0184,1.0104,1.0,51.677,0.0,0.0,34.64,8.04,10.49,55.18,5.03,11.52,27.97,0.0,0.0,0.8049,0.4202,0.9897,1.2821,0.2625,1.087,23.0798,7.4663,8.2109,0.0,0.0,36.7614,4.665,9.018,39.63,4.67,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-baltimore-md.xml,74.92,60.304,48.4761,64.7081,0.27311,1.0489,1.0,1.023,1.073,1.0,41.0398,0.0,0.0,20.96,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.8009,0.4193,0.9661,1.2821,0.2625,1.087,13.8867,11.2375,7.5618,0.0,0.0,22.2284,7.0361,8.508,23.96,7.04,8.51,15.01,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.35,9939.57,11674.09,51.47,1.0,51.47,74.92,74.92,0.0,49.06,1.0,49.06,74.92,74.92,0.0,66.95,61.056,43.8595,65.515,0.27311,1.0489,1.0,1.023,1.073,1.0,37.6618,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4154,0.9661,1.2821,0.2625,1.087,10.6427,10.6325,7.5653,0.0,0.0,17.0329,6.7201,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-capetown-zaf.xml,79.09,36.333,30.0742,38.0262,0.17648,1.0314,1.0,1.0148,1.0466,1.0,27.6494,0.0,0.0,4.32,4.49,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8008,0.4833,0.9591,1.2821,0.2625,1.087,1.0806,6.5183,6.6293,0.0,0.0,1.73,3.541,7.513,1.87,3.54,7.51,15.06,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.32,1.0,50.32,79.09,79.09,0.0,48.06,1.0,48.06,79.09,79.09,0.0,77.18,36.623,29.5834,38.3297,0.17648,1.0314,1.0,1.0148,1.0466,1.0,26.9626,0.0,0.0,4.75,4.35,8.36,7.61,2.38,9.47,19.17,0.0,0.0,0.801,0.4806,0.959,1.2821,0.2625,1.087,0.4683,7.4036,6.6286,0.0,0.0,0.7495,4.044,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-dallas-tx.xml,71.57,63.07,48.4473,67.6952,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.7656,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,3.7759,22.8647,5.9387,0.0,0.0,6.049,13.5491,6.716,6.52,13.55,6.72,15.08,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.44,6298.28,7577.77,47.26,1.0,47.26,71.57,71.57,0.0,44.31,1.0,44.31,71.57,71.57,0.0,65.87,63.66,45.0099,68.3284,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.3978,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,2.5599,21.4196,5.9354,0.0,0.0,4.101,12.8091,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,80.91,79.013,68.3051,84.4246,0.25668,1.0459,1.0,1.0216,1.0685,1.0,57.5626,0.0,0.0,45.93,1.75,13.08,73.17,1.97,14.52,18.26,0.0,0.0,0.8047,0.233,0.9791,1.2821,0.2625,1.087,40.9467,1.9665,10.2849,0.0,0.0,65.2364,2.216,11.418,70.33,2.22,11.42,14.32,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,184.79,12450.68,6305.71,54.11,1.0,54.11,80.91,80.91,0.0,47.01,1.0,47.01,80.91,80.91,0.0,67.45,83.952,60.5011,89.7018,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8852,0.0,0.0,51.02,1.6,13.08,81.28,1.91,14.52,18.26,0.0,0.0,0.8047,0.2196,0.9791,1.2821,0.2625,1.087,33.9363,1.9703,10.2885,0.0,0.0,54.0661,2.356,11.422,58.29,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-helena-mt.xml,78.36,92.35,73.1393,93.3324,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.8574,0.0,0.0,49.58,3.69,11.89,78.97,2.67,12.94,27.19,0.0,0.0,0.8049,0.3635,0.9988,1.2821,0.2625,1.087,39.2673,3.3269,9.3431,0.0,0.0,62.5435,2.403,10.168,67.42,2.4,10.17,21.08,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,203.72,12011.46,5833.96,58.05,1.0,58.05,78.36,78.36,0.0,51.12,1.0,51.12,78.36,78.36,0.0,72.22,98.963,72.2268,100.0158,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2344,0.0,0.0,56.4,3.49,11.89,89.83,2.59,12.95,27.18,0.0,0.0,0.8049,0.3544,0.9985,1.2821,0.2625,1.087,38.5355,3.2663,9.34,0.0,0.0,61.3766,2.42,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-honolulu-hi.xml,83.26,66.754,58.2792,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,41.838,0.0,0.0,0.0,42.21,5.18,0.0,23.29,6.1,19.36,0.0,0.0,0.0,0.4758,0.9238,1.2821,0.2625,1.087,0.0,38.2636,4.0346,0.0,0.0,0.0,21.1112,4.747,0.0,21.11,4.75,15.2,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,62.73,1.0,62.73,83.26,83.26,0.0,41.45,1.0,41.45,83.26,83.26,0.0,79.06,66.754,55.3363,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,39.876,0.0,0.0,0.0,42.21,5.18,0.0,23.3,6.1,19.36,0.0,0.0,0.0,0.4755,0.9238,1.2821,0.2625,1.087,0.0,36.1037,4.0346,0.0,0.0,0.0,19.9332,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-miami-fl.xml,80.59,65.361,55.5324,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,41.4678,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4507,0.9264,1.2821,0.2625,1.087,0.0041,35.404,4.1573,0.0,0.0,0.0065,20.6212,4.878,0.01,20.62,4.88,15.18,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.59,6125.65,7300.97,63.51,1.0,63.51,80.59,80.59,0.0,43.47,1.0,43.47,80.59,80.59,0.0,75.57,65.361,52.0695,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,39.123,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4508,0.9264,1.2821,0.2625,1.087,0.0,32.727,4.1565,0.0,0.0,0.0,19.0612,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-phoenix-az.xml,72.57,77.858,60.8096,83.797,0.28483,1.0511,1.0,1.024,1.0763,1.0,44.0104,0.0,0.0,1.43,51.54,5.6,2.29,29.19,6.55,19.29,0.0,0.0,0.8003,0.4635,0.9289,1.2821,0.2625,1.087,0.2067,40.3058,4.3661,0.0,0.0,0.3312,22.8282,5.109,0.36,22.83,5.11,15.15,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.44,4954.81,6268.75,49.09,1.0,49.09,72.57,72.57,0.0,44.74,1.0,44.74,72.57,72.57,0.0,69.6,77.934,58.3835,83.8788,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2878,0.0,0.0,1.46,51.59,5.6,2.34,29.23,6.55,19.28,0.0,0.0,0.8,0.4634,0.9289,1.2821,0.2625,1.087,0.059,38.8029,4.3635,0.0,0.0,0.0946,21.9842,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-portland-or.xml,82.16,46.215,39.8764,48.5335,0.18966,1.0337,1.0,1.0159,1.0502,1.0,36.0326,0.0,0.0,13.7,3.43,9.97,21.93,2.46,11.25,19.11,0.0,0.0,0.8007,0.3659,0.9636,1.2821,0.2625,1.087,12.5159,3.702,7.9164,0.0,0.0,20.0411,2.656,8.93,21.61,2.66,8.93,14.96,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.43,4938.84,2895.38,66.27,1.0,66.27,82.16,82.16,0.0,50.06,1.0,50.06,82.16,82.16,0.0,73.35,46.985,36.1931,49.3421,0.18966,1.0337,1.0,1.0159,1.0502,1.0,33.2624,0.0,0.0,14.54,3.36,9.97,23.28,2.43,11.25,19.11,0.0,0.0,0.8007,0.3629,0.9636,1.2821,0.2625,1.087,9.4191,3.8809,7.9191,0.0,0.0,15.0812,2.808,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-balanced.xml,81.81,78.062,64.5349,78.8861,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,30.16,8.61,10.49,48.06,5.3,11.52,27.23,1.58,0.0,0.8047,0.4265,0.9897,1.2821,0.2625,1.087,25.3957,8.0197,8.2136,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.23,9364.83,5677.13,56.72,1.0,56.72,81.81,81.81,0.0,51.05,1.0,51.05,81.81,81.81,0.0,77.78,82.077,64.5108,82.9435,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,34.25,8.54,10.49,54.55,5.28,11.52,27.22,1.58,0.0,0.8049,0.425,0.9895,1.2821,0.2625,1.087,25.4013,7.9913,8.2122,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,78.55,77.621,61.6164,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.3521,8.1614,8.212,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.06,8608.95,5639.59,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,74.67,81.622,61.5901,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.3573,8.1314,8.2105,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,75.66,77.621,59.3508,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6946,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,21.601,7.9229,8.212,0.0,0.0,34.4145,4.884,9.02,37.1,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.71,8304.26,5639.59,56.72,1.0,56.72,75.66,75.66,0.0,51.05,1.0,51.05,75.66,75.66,0.0,71.59,81.622,59.0492,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5006,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,21.3253,7.8954,8.2105,0.0,0.0,33.9674,4.885,9.02,36.62,4.89,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis.xml,79.4,77.621,62.2842,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,23.0548,8.1614,8.212,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.09,8781.73,5639.59,56.72,1.0,56.72,79.4,79.4,0.0,51.05,1.0,51.05,79.4,79.4,0.0,75.48,81.622,62.2581,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,23.0602,8.1314,8.2105,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv-atre-asre.xml,70.98,78.643,56.4076,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9844,8.2943,8.2099,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.0,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3793,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9885,8.2634,8.2085,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv.xml,70.98,78.643,56.4094,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9862,8.2943,8.2099,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.47,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3811,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9902,8.2634,8.2085,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-exhaust.xml,77.8,77.621,61.0231,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.8778,7.9213,8.212,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.92,8658.3,5639.59,56.72,1.0,56.72,77.8,77.8,0.0,51.05,1.0,51.05,77.8,77.8,0.0,73.95,81.622,60.9978,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.8831,7.8921,8.2105,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv-asre.xml,70.98,78.643,56.4119,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9839,8.2991,8.2099,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.03,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3836,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9879,8.2682,8.2085,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv.xml,70.98,78.643,56.4137,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9856,8.2991,8.2099,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.5,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3854,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9896,8.2682,8.2085,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-multiple.xml,81.94,78.276,64.8162,79.1028,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.6158,0.0,0.0,30.1,8.64,10.49,47.95,6.2,11.52,27.23,1.83,0.0,1.6095,0.731,0.9897,2.5642,0.525,1.087,25.375500000000002,8.6312,8.2145,0.0,0.0,40.4273,6.199999999999999,9.022,43.58,5.78,9.02,21.11,1.49,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,162.82,9447.61,5741.75,57.45,1.0,57.45,81.94,81.94,0.0,51.78,1.0,51.78,81.94,81.94,0.0,77.27,82.247,64.2242,83.1158,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.2124,0.0,0.0,34.2,8.56,10.49,54.47,6.18,11.52,27.22,1.78,0.0,1.6098,0.7278,0.9895,2.5642,0.525,1.087,24.902700000000003,8.5454,8.2131,0.0,0.0,39.665800000000004,6.165,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 +base-mechvent-supply.xml,77.54,77.621,60.8202,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.5133,8.0819,8.212,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.44,8573.52,5639.59,56.72,1.0,56.72,77.54,77.54,0.0,51.05,1.0,51.05,77.54,77.54,0.0,73.7,81.622,60.7943,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.5186,8.0522,8.2105,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-whole-house-fan.xml,77.02,76.706,59.7023,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0962,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.7054,6.5634,8.2165,0.0,0.0,37.766,4.059,9.025,40.71,3.41,9.03,21.1,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.43,8735.66,5561.77,56.72,1.0,56.72,77.02,77.02,0.0,51.05,1.0,51.05,77.02,77.02,0.0,72.33,80.736,59.0143,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.1701,6.5291,8.2151,0.0,0.0,36.9052,4.051,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-misc-generators.xml,76.83,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.9763,58.694,1.389,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,195.78,11003.55,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,72.18,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9761,58.1976,1.389,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv-battery.xml,39.8,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.5057,52.721,26.886,0.827,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.56,6832.21,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv.xml,37.92,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.4819,51.894,26.886,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.71,6953.06,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-version-co2-2019ABCD.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-co2-2022.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,156.04,8770.34,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014.xml,77.97,79.848,62.2609,,,,,,,1.0,52.8768,0.0,0.0,31.91,8.42,11.44,50.77,4.34,12.37,28.08,0.0,0.0,0.8058,0.5097,1.0049,1.2821,0.2625,1.087,22.3563,7.7328,10.6197,0.0,0.0,35.5676,3.983,11.487,38.34,3.98,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014A.xml,75.44,78.761,59.4136,,,,,,,1.0,49.933,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.3335,7.7493,7.7788,0.0,0.0,35.5323,3.988,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2014AE.xml,74.56,78.761,59.4136,79.6849,0.24619,0.9912,1.0,1.0207,1.0117,1.0,49.933,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.3335,7.7493,7.7788,0.0,0.0,35.5323,3.988,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -91,8 +91,8 @@ base-version-eri-2019AB.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.018 base-version-eri-2019ABC.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2019ABCD.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-eri-2022.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022C.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.9,78.761,58.9003,79.7005,0.25033,0.9911,1.0,1.021,1.0119,1.0,49.3932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.5766,7.6619,7.7788,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.42,81.455,58.871,82.4267,0.25033,0.9911,1.0,1.021,1.0119,1.0,49.3932,0.0,0.0,34.6,8.4,10.38,55.05,4.34,11.41,28.08,0.0,0.0,0.8058,0.5082,0.9885,1.2821,0.2625,1.087,22.5773,7.6325,7.7781,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.48,8626.1,5561.77,56.49,1.0,56.49,77.86,77.86,0.0,51.05,1.0,51.05,77.86,77.86,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 From b286ee9f63e959ec2c4ee09f807bfcad5de0c5cb Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 23 Feb 2024 10:50:38 -0700 Subject: [PATCH 22/35] Squashed 'hpxml-measures/' changes from 26fdf9c4a7..b10fd27d1e b10fd27d1e Latest results. 1a02a94d30 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 6050925349 Latest results. 5ff6774afa Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 45cdd444fd Latest results. 6d6d0177e0 Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow dc687d155e Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 6be89690f6 Expose WithinInfiltrationVolume inputs for some attic/foundation types. d42c040f55 Minor refactoring. 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 1092b38dee Handle case where Qinf > Qtot. 8db9c4dd9c Latest results. fbf067fdcb Fix assert_in_epsilon tests. c3c95819d2 Simplify code. 9dabadd9b4 Update Changelog.md [ci skip] 1115e941ee Fix typo in docs. b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. git-subtree-dir: hpxml-measures git-subtree-split: b10fd27d1e08dc2ef27e9eddca93c9b2661e498a --- Changelog.md | 2 + HPXMLtoOpenStudio/measure.xml | 16 ++-- HPXMLtoOpenStudio/resources/airflow.rb | 91 +++++++++++++------ HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 64 ++++++++----- .../hpxml_schematron/EPvalidator.xml | 27 +++++- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 ++-- docs/source/workflow_inputs.rst | 60 +++++++----- .../tests/base_results/results_sizing.csv | 26 +++--- .../results_workflow_simulations1.csv | 36 ++++---- .../results_workflow_simulations1_bills.csv | 22 ++--- .../results_workflow_simulations2.csv | 54 +++++------ .../results_workflow_simulations2_bills.csv | 48 +++++----- 14 files changed, 284 insertions(+), 188 deletions(-) diff --git a/Changelog.md b/Changelog.md index 482ee2da2..5ab2727c9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,8 @@ __New Features__ - Adds schedule inputs for hot water recirculation pumps and general water use internal gains. - Updated water heater installation location defaulting to match ANSI 301-2022 - Updated calculation of hot water piping length for buildings with both conditioned and unconditioned basements to avoid double counting. + - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. + - Small change to default flow rate for imbalanced mechanical ventilation systems. - `AverageCeilingHeight` now used in natural ACH/CFM infiltration calculations. - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - **Breaking change**: Modeling whole SFA/MF buildings is now specified using a `SoftwareInfo/extension/WholeSFAorMFBuildingSimulation=true` element instead of `building-id=ALL` argument. diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 64740bd2f..8e862651a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b928f262-09fb-4a7e-97e3-e2710a1ed202 - 2024-02-23T15:43:54Z + 5f3c2332-9957-4548-ae77-3b19a379346f + 2024-02-23T16:42:12Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 19AA9E9B + F698708D battery.rb @@ -304,13 +304,13 @@ hpxml.rb rb resource - A6AA9F53 + C903F7AF hpxml_defaults.rb rb resource - C00A2695 + C0AC6507 hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - B3C7FBCD + F1449F2F hpxml_schematron/iso-schematron.xsd @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - C8E9BF7D + 222F3FD7 lighting.rb @@ -598,7 +598,7 @@ test_defaults.rb rb test - 53041605 + F30127CB test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 6a697cd23..1d56d1508 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -103,19 +103,22 @@ def self.apply(model, runner, weather, spaces, hpxml_header, hpxml_bldg, cfa, nb vented_attic = hpxml_bldg.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } vented_crawl = hpxml_bldg.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - _, conditioned_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) if @apply_ashrae140_assumptions - conditioned_const_ach = nach + conditioned_const_ach = infil_values[:nach] conditioned_ach50 = nil + else + conditioned_ach50 = infil_values[:ach50] + conditioned_const_ach = nil end - conditioned_const_ach *= a_ext unless conditioned_const_ach.nil? - conditioned_ach50 *= a_ext unless conditioned_ach50.nil? + conditioned_const_ach *= infil_values[:a_ext] unless conditioned_const_ach.nil? + conditioned_ach50 *= infil_values[:a_ext] unless conditioned_ach50.nil? has_flue_chimney_in_cond_space = hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space apply_natural_ventilation_and_whole_house_fan(model, hpxml_bldg.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml_bldg.header.natvent_days_per_week, - infil_volume, infil_height, unavailable_periods) + infil_values[:volume], infil_values[:height], unavailable_periods) apply_infiltration_and_ventilation_fans(model, weather, hpxml_bldg.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_values[:volume], infil_values[:height], vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) end @@ -215,31 +218,23 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) end a_ext = 1.0 if a_ext.nil? - return sla, ach50, nach, infil_volume, infil_height, a_ext + return { sla: sla, ach50: ach50, nach: nach, volume: infil_volume, height: infil_height, a_ext: a_ext } end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) - # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 - sla, _, _, _, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) + # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + bldg_type = hpxml_bldg.building_construction.residential_facility_type - nl = get_infiltration_NL_from_SLA(sla, infil_height) + nl = get_infiltration_NL_from_SLA(infil_values[:sla], infil_values[:height]) q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) - q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) - if vent_fan.is_balanced? - phi = 1.0 + is_balanced, frac_imbal = true, 0.0 else - phi = q_inf / q_tot + is_balanced, frac_imbal = false, 1.0 end - q_fan = q_tot - phi * (q_inf * a_ext) - q_fan = [q_fan, 0].max - - if not vent_fan.hours_in_operation.nil? - # Convert from hourly average requirement to actual fan flow rate - q_fan *= 24.0 / vent_fan.hours_in_operation - end - + q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, infil_values[:a_ext], bldg_type, eri_version, vent_fan.hours_in_operation) return q_fan end @@ -1634,7 +1629,10 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') + infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') + infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2017,12 +2015,12 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, avg_ceiling_height, we def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) end def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) @@ -2102,6 +2100,47 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end + + def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) + q_inf_eff = q_inf * a_ext + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + if frac_imbal == 0 + q_fan = q_tot - q_inf_eff + else + q_inf_eff = q_inf * a_ext + if q_inf_eff >= q_tot + q_fan = 0.0 + else + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end + end + elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') + if is_balanced + phi = 1.0 + else + phi = q_inf / q_tot + end + q_fan = q_tot - phi * q_inf_eff + else + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type + # No infiltration credit for attached/multifamily + return q_tot + end + + if q_inf > 2.0 / 3.0 * q_tot + q_fan = q_tot - 2.0 / 3.0 * q_tot + else + q_fan = q_tot - q_inf + end + end + + # Convert from hourly average requirement to actual fan flow rate + if not hours_in_operation.nil? + q_fan *= 24.0 / hours_in_operation + end + + return [q_fan, 0.0].max + end end class Duct diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index d335e8b66..017a6b726 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -2322,7 +2322,7 @@ def to_doc(building) fail "Unhandled attic type '#{@attic_type}'." end end - XMLHelper.add_element(attic, 'WithinInfiltrationVolume', within_infiltration_volume, :boolean) unless @within_infiltration_volume.nil? + XMLHelper.add_element(attic, 'WithinInfiltrationVolume', @within_infiltration_volume, :boolean, @within_infiltration_volume_isdefaulted) unless @within_infiltration_volume.nil? if not @attached_to_roof_idrefs.nil? @attached_to_roof_idrefs.each do |roof| roof_attached = XMLHelper.add_element(attic, 'AttachedToRoof') diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 74ea4aee8..49a08a14a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -28,9 +28,9 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_building_occupancy(hpxml_bldg, schedules_file) apply_building_construction(hpxml_bldg, cfa, nbeds) apply_climate_and_risk_zones(hpxml_bldg, epw_file) - apply_infiltration(hpxml_bldg) apply_attics(hpxml_bldg) apply_foundations(hpxml_bldg) + apply_infiltration(hpxml_bldg) apply_roofs(hpxml_bldg) apply_rim_joists(hpxml_bldg) apply_walls(hpxml_bldg) @@ -664,27 +664,16 @@ def self.apply_climate_and_risk_zones(hpxml_bldg, epw_file) end end - def self.apply_infiltration(hpxml_bldg) - infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) - if infil_measurement.infiltration_volume.nil? - infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - infil_measurement.infiltration_volume_isdefaulted = true - end - if infil_measurement.infiltration_height.nil? - infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) - infil_measurement.infiltration_height_isdefaulted = true - end - if infil_measurement.a_ext.nil? - if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && - [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) - tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() - infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) - infil_measurement.a_ext_isdefaulted = true + def self.apply_attics(hpxml_bldg) + hpxml_bldg.attics.each do |attic| + next unless attic.within_infiltration_volume.nil? + + if [HPXML::AtticTypeUnvented].include? attic.attic_type + attic.within_infiltration_volume = false + attic.within_infiltration_volume_isdefaulted = true end end - end - def self.apply_attics(hpxml_bldg) return unless hpxml_bldg.has_location(HPXML::LocationAtticVented) vented_attics = hpxml_bldg.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } @@ -703,6 +692,16 @@ def self.apply_attics(hpxml_bldg) end def self.apply_foundations(hpxml_bldg) + hpxml_bldg.foundations.each do |foundation| + next unless foundation.within_infiltration_volume.nil? + + next unless [HPXML::FoundationTypeBasementUnconditioned, + HPXML::FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type + + foundation.within_infiltration_volume = false + foundation.within_infiltration_volume_isdefaulted = true + end + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceVented) vented_crawls = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } if vented_crawls.empty? @@ -736,6 +735,26 @@ def self.apply_foundations(hpxml_bldg) end end + def self.apply_infiltration(hpxml_bldg) + infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) + if infil_measurement.infiltration_volume.nil? + infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + infil_measurement.infiltration_volume_isdefaulted = true + end + if infil_measurement.infiltration_height.nil? + infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) + infil_measurement.infiltration_height_isdefaulted = true + end + if infil_measurement.a_ext.nil? + if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && + [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) + tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() + infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) + infil_measurement.a_ext_isdefaulted = true + end + end + end + def self.apply_roofs(hpxml_bldg) hpxml_bldg.roofs.each do |roof| if roof.azimuth.nil? @@ -1989,18 +2008,21 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? + + if vent_fan.flow_rate.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) vent_fan.rated_flow_rate_isdefaulted = true end + if vent_fan.fan_power.nil? vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index b8ecbcf6a..79abd3147 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -456,7 +456,7 @@ [Roof] - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation @@ -479,7 +479,14 @@ Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate[UnitofMeasure="SLA" or UnitofMeasure="ACHnatural"]/Value - + + + [RoofType=AdjacentToUnventedAttic] + + Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="false"]]/WithinInfiltrationVolume + + + [Roof_RadiantBarrier] @@ -538,7 +545,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'ground' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 0 or 1 element(s) for xpath: Type Expected Type to be 'solid concrete' or 'concrete block' or 'concrete block foam core' or 'concrete block vermiculite core' or 'concrete block perlite core' or 'concrete block solid core' or 'double brick' or 'wood' @@ -568,6 +575,20 @@ + + [FoundationWallType=AdjacentToUnventedCrawl] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Crawlspace[Vented="false"]]/WithinInfiltrationVolume + + + + + [FoundationWallType=AdjacentToUncondBasement] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Basement[Conditioned="false"]]/WithinInfiltrationVolume + + + [FoundationWallInsulationLayer] diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index e62610034..5e160d2e1 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -933,8 +933,8 @@ def self.process_load_infiltration_ventilation(mj, bldg_design_loads, weather) Heating and Cooling Loads: Infiltration & Ventilation ''' - sla, _, _, _, _, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) - sla *= a_ext + infil_values = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) + sla = infil_values[:sla] * infil_values[:a_ext] ela = sla * @cfa ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 29e583352..c2c311c62 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2344,7 +2344,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2354,13 +2354,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2370,13 +2370,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2385,7 +2385,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 22.5, 64.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.6, 76.0) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2394,7 +2394,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2412,7 +2412,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2442,7 +2442,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2453,7 +2453,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 173.3, 298.8, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index a93ea3e2b..4f1de8d36 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2906,20 +2906,22 @@ Each exhaust only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/ .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -2944,20 +2946,22 @@ Each supply only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/M .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -2982,20 +2986,22 @@ Each balanced (supply and exhaust) fan is entered as a ``/HPXML/Building/Buildin .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] If FanPower not provided, defaults to 0.7 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. .. _vent_fan_hrv: @@ -3020,20 +3026,22 @@ Each heat recovery ventilator (HRV) is entered as a ``/HPXML/Building/BuildingDe .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3060,20 +3068,22 @@ Each energy recovery ventilator (ERV) is entered as a ``/HPXML/Building/Building .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedTotalRecoveryEfficiency (ATRE) is preferable to TotalRecoveryEfficiency (TRE). .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3104,20 +3114,22 @@ Each central fan integrated supply (CFIS) system is entered as a ``/HPXML/Buildi .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". .. [#] SupplementalFan must reference another ``VentilationFan`` where UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] The flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] The HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). .. [#] If FanPower not provided, defaults to 0.58 W/cfm based on ANSI/RESNET/ICC 301-2022 Addendum C. diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 8c15ace79..895820357 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -176,8 +176,8 @@ denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodo denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,35661.0,36968.0,16597.0,844.0,1153.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,75070.0,77823.0,31615.0,1776.0,2427.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,75070.0,77823.0,0.0,1776.0,2427.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30664.0,31941.0,31615.0,725.0,996.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30664.0,31941.0,14335.0,725.0,996.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30664.0,31938.0,31615.0,725.0,996.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30664.0,31938.0,14335.0,725.0,996.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,35717.0,37204.0,31615.0,845.0,1160.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,35717.0,37204.0,11487.0,845.0,1160.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,56100.0,58436.0,31615.0,1327.0,1822.0 @@ -192,13 +192,13 @@ denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology- denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,35698.0,37390.0,31615.0,844.0,1166.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,39533.0,41408.0,31615.0,935.0,1291.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,39533.0,41408.0,31615.0,935.0,1291.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,21082.0,0.0,0.0,657.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,24623.0,25649.0,26641.0,583.0,800.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,24623.0,25649.0,12764.0,583.0,800.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,21080.0,0.0,0.0,657.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,24623.0,25647.0,26641.0,583.0,800.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,24623.0,25647.0,12764.0,583.0,800.0 denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,30097.0,31351.0,26641.0,712.0,978.0 denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,30097.0,31351.0,9679.0,712.0,978.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,47273.0,49242.0,26641.0,1118.0,1536.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,47273.0,49242.0,0.0,1118.0,1536.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,47273.0,49238.0,26641.0,1118.0,1536.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,47273.0,49238.0,0.0,1118.0,1536.0 denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17915.0,0.0,0.0,745.0 denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14582.0,0.0,0.0,486.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17915.0,0.0,0.0,745.0 @@ -467,10 +467,10 @@ houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-method houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37414.0,35568.0,0.0,731.0,1109.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30112.0,28790.0,20318.0,588.0,898.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30112.0,28790.0,0.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31162.0,29792.0,20318.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31162.0,29792.0,0.0,609.0,929.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35714.0,34143.0,20318.0,698.0,1065.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35714.0,34143.0,0.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31162.0,29794.0,20318.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31162.0,29794.0,0.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35714.0,34146.0,20318.0,698.0,1065.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35714.0,34146.0,0.0,698.0,1065.0 houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21542.0,31858.0,0.0,295.0,994.0 houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21542.0,31955.0,0.0,295.0,997.0 houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21542.0,28790.0,0.0,295.0,898.0 @@ -486,8 +486,8 @@ houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodo houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25566.0,24442.0,0.0,499.0,762.0 houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,24103.0,23043.0,16325.0,471.0,719.0 houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,24103.0,23043.0,0.0,471.0,719.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27623.0,26411.0,16325.0,540.0,824.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27623.0,26411.0,0.0,540.0,824.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27623.0,26409.0,16325.0,540.0,824.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27623.0,26409.0,0.0,540.0,824.0 houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20784.0,0.0,0.0,864.0 houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17972.0,0.0,0.0,599.0 houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20784.0,0.0,0.0,864.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index c9a20d6cb..9bc416b06 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -49,9 +49,9 @@ base-bldgtype-mf-unit-shared-generator.xml,40.963,34.139,25.897,19.073,0.899,0.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.271,28.271,28.271,28.271,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.473,0.0,0.0,2.256,2.721,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,0.0,1705.4,2011.5,2011.5,3.814,7.788,0.0,-0.016,2.522,0.0,0.0,0.421,3.979,-2.785,0.0,0.0,-0.013,0.0,-0.385,1.286,0.0,0.703,0.0,0.0,-4.15,-0.816,0.0,-0.011,-0.974,0.0,0.0,-0.031,-0.965,5.418,0.0,0.0,-0.008,0.0,-0.376,-0.461,-1.595,-0.346,0.0,0.0,6.732,1.21,1354.7,998.0,11171.6,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.684,31.684,16.434,16.434,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.861,0.511,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.825,0.0,14.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,0.0,928.0,1598.0,1598.0,3.861,7.816,0.0,-0.018,2.47,0.0,0.0,0.422,3.947,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.05,0.0,0.0,0.0,0.0,-4.279,-0.789,0.0,-0.013,-1.037,0.0,0.0,-0.032,-1.015,5.52,0.0,0.0,-0.01,0.0,-0.409,-0.844,-1.625,0.0,0.0,0.0,7.1,1.236,1354.7,998.0,11171.9,3093.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-laundry-room.xml,29.601,29.601,16.252,16.252,13.349,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.723,0.475,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.039,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,0.0,919.2,1586.4,1586.4,4.011,7.695,0.0,-0.017,2.526,0.0,0.0,0.42,3.983,-2.859,0.0,0.0,-0.014,0.0,-0.392,2.071,0.0,0.0,0.0,0.0,-3.984,-0.834,0.0,-0.012,-0.938,0.0,0.0,-0.026,-0.911,5.343,0.0,0.0,-0.01,0.0,-0.383,-0.783,-1.56,0.0,0.0,0.0,6.286,1.191,1354.7,998.0,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-mechvent-multiple.xml,51.298,51.298,30.438,30.438,20.86,0.0,0.0,0.0,0.0,0.0,0.0,0.063,0.0,0.0,2.762,0.296,9.563,0.0,0.0,2.025,0.0,0.206,3.71,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.697,0.0,0.0,0.0,0.0,12.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057,0.0,4.993,9.37,0.617,0.0,0.0,0.0,0.0,1803.5,2327.9,2327.9,7.873,9.041,0.0,-0.018,2.767,0.0,0.0,0.405,4.178,-4.251,0.0,0.0,-0.022,0.0,-0.278,0.076,0.0,12.318,0.0,0.0,-5.844,-1.189,0.0,-0.014,-0.127,0.0,0.0,0.065,0.167,3.952,0.0,0.0,-0.019,0.0,-0.273,-0.006,-0.709,-4.009,0.0,0.0,4.953,0.836,1354.7,998.0,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.711,32.711,27.055,27.055,5.657,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.527,0.419,9.537,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.708,0.0,0.0,0.0,0.0,3.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.58,0.0,7.083,9.37,0.591,0.0,0.0,0.0,0.0,1584.7,2367.0,2367.0,4.521,7.958,0.0,-0.016,2.661,0.0,0.0,0.422,4.121,-3.257,0.0,0.0,-0.015,0.0,-0.335,1.77,0.0,1.904,0.0,0.0,-4.734,-0.957,0.0,-0.012,-0.672,0.0,0.0,0.001,-0.567,4.946,0.0,0.0,-0.01,0.0,-0.327,-0.485,-1.304,-1.671,0.0,0.0,6.124,1.068,1354.7,998.0,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,31.174,31.174,26.924,26.924,4.25,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,2.463,0.401,9.546,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.122,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,3.935,0.0,6.868,9.37,0.6,0.0,0.0,0.0,0.0,1564.1,2309.3,2309.3,6.341,8.579,0.0,-0.015,2.674,0.0,0.0,0.392,3.998,-3.692,0.0,0.0,-0.016,0.0,-0.243,1.729,0.0,5.289,0.0,0.0,-5.086,-1.045,0.0,-0.011,-0.513,0.0,0.0,-0.002,-0.459,4.51,0.0,0.0,-0.013,0.0,-0.237,-0.413,-1.303,-1.427,0.0,0.0,5.752,0.98,1354.7,998.0,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-mechvent-multiple.xml,51.421,51.421,30.435,30.435,20.986,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,2.761,0.296,9.563,0.0,0.0,2.025,0.0,0.206,3.706,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.822,0.0,0.0,0.0,0.0,12.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.173,0.0,4.991,9.37,0.617,0.0,0.0,0.0,0.0,1802.7,2328.5,2328.5,7.899,9.054,0.0,-0.018,2.765,0.0,0.0,0.405,4.176,-4.251,0.0,0.0,-0.022,0.0,-0.279,0.208,0.0,12.309,0.0,0.0,-5.844,-1.189,0.0,-0.014,-0.127,0.0,0.0,0.065,0.168,3.952,0.0,0.0,-0.019,0.0,-0.274,-0.015,-0.708,-4.002,0.0,0.0,4.953,0.836,1354.7,998.0,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.56,32.56,27.1,27.1,5.46,0.0,0.0,0.0,0.0,0.0,0.0,0.011,0.0,0.0,2.562,0.428,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.504,0.0,0.0,0.0,0.0,3.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,0.0,1593.9,2159.1,2159.1,4.194,7.952,0.0,-0.017,2.644,0.0,0.0,0.425,4.131,-3.171,0.0,0.0,-0.016,0.0,-0.35,1.419,0.0,1.913,0.0,0.0,-4.671,-0.942,0.0,-0.013,-0.712,0.0,0.0,-0.0,-0.592,5.031,0.0,0.0,-0.012,0.0,-0.342,-0.386,-1.324,-1.707,0.0,0.0,6.19,1.083,1354.7,998.0,11171.6,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.909,30.909,26.944,26.944,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.479,0.405,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,0.0,1564.2,2140.7,2140.7,6.015,8.573,0.0,-0.015,2.674,0.0,0.0,0.393,4.003,-3.667,0.0,0.0,-0.016,0.0,-0.244,1.391,0.0,5.29,0.0,0.0,-5.058,-1.039,0.0,-0.011,-0.528,0.0,0.0,-0.004,-0.476,4.535,0.0,0.0,-0.013,0.0,-0.238,-0.311,-1.324,-1.453,0.0,0.0,5.781,0.986,1354.7,998.0,11171.6,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-battery.xml,27.673,3.225,26.774,2.326,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1649.1,2045.5,2045.5,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,44.391,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-pv.xml,26.796,2.349,25.897,1.449,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,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-recirc-scheduled.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,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 @@ -69,7 +69,7 @@ base-dhw-desuperheater-2-speed.xml,31.692,31.692,31.692,31.692,0.0,0.0,0.0,0.0,0 base-dhw-desuperheater-gshp.xml,38.269,38.269,38.269,38.269,0.0,0.0,0.0,0.0,0.0,0.0,5.898,0.602,0.0,0.0,3.053,0.993,6.586,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.261,0.0,13.631,9.069,0.614,2.872,0.0,0.0,0.0,3427.2,2543.0,3427.2,22.716,16.873,0.0,3.58,3.636,0.512,7.501,0.629,10.08,-12.691,0.0,0.0,0.0,8.283,-0.065,4.804,0.0,0.727,0.0,3.908,-7.483,-2.489,0.0,0.01,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.062,-1.136,-3.815,-0.161,0.0,2.148,8.391,2.018,1354.7,998.0,11185.8,2566.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.551,57.551,29.48,29.48,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.463,0.0,0.0,4.356,0.827,2.704,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.289,0.0,14.446,9.081,1.811,2.925,0.0,0.0,0.0,1813.8,3298.9,3298.9,23.813,19.758,0.0,3.51,3.632,0.511,7.485,0.627,10.06,-12.745,0.0,0.0,0.0,8.31,-0.057,4.799,0.0,0.726,0.0,5.908,-4.327,-2.498,0.0,0.007,-0.394,-0.042,2.895,-0.009,-1.193,11.668,0.0,0.0,0.0,-6.008,-0.053,-1.086,-3.568,-0.152,0.0,3.163,7.478,2.01,1354.6,997.9,11146.0,2557.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.266,33.266,33.266,33.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.347,1.144,6.811,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.127,9.076,0.0,2.849,0.0,0.0,0.0,1833.3,3409.8,3409.8,0.0,19.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.042,-0.437,-0.047,2.752,-0.024,-1.348,11.85,0.0,0.0,0.0,-6.847,-0.067,-1.152,-3.654,-0.161,0.0,3.183,8.23,2.042,1354.7,998.0,11133.5,2554.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,30.838,30.838,30.838,30.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.293,6.808,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.498,9.069,0.666,2.844,0.0,0.0,0.0,1972.5,2743.9,2743.9,0.0,19.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.159,-3.699,-0.162,0.0,4.443,8.507,2.042,1354.7,998.0,11185.8,2566.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,30.839,30.839,30.839,30.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.293,6.808,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.499,9.069,0.666,2.844,0.0,0.0,0.0,1972.5,2743.5,2743.5,0.0,19.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.106,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.159,-3.699,-0.162,0.0,4.444,8.507,2.042,1354.7,998.0,11185.6,2566.7,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater.xml,33.299,33.299,33.299,33.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.398,1.161,6.772,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.344,9.069,0.666,2.899,0.0,0.0,0.0,1972.5,3421.8,3421.8,0.0,19.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.049,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.159,-3.696,-0.162,0.0,3.219,8.523,2.042,1354.7,998.0,11185.3,2566.7,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-dwhr.xml,56.948,56.948,33.322,33.322,23.626,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,6.631,0.615,0.0,0.0,0.0,0.0,2001.0,3541.1,3541.1,23.506,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,0.0,1296.3,1163.4,1296.3,17.02,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.3,855.1,9363.6,2148.7,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -111,8 +111,8 @@ base-dhw-tank-heat-pump-uef.xml,57.271,57.271,28.33,28.33,28.941,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar-fraction.xml,53.041,53.041,27.622,27.622,25.419,0.0,0.0,0.0,0.0,0.0,0.0,0.419,0.0,0.0,4.063,0.757,1.248,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.805,0.0,13.21,9.103,0.603,0.0,5.917,0.0,0.0,1808.6,3233.2,3233.2,25.635,19.149,0.0,3.527,3.634,0.511,7.495,0.628,10.069,-12.712,0.0,0.0,0.0,8.296,-0.06,4.801,0.0,0.726,0.0,5.429,-6.393,-2.491,0.0,-0.006,-0.42,-0.046,2.811,-0.015,-1.272,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.115,-3.623,-0.158,0.0,2.959,6.773,2.017,474.2,349.3,3821.8,877.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar.xml,52.508,52.508,28.225,28.225,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.398,0.837,1.122,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.74,0.0,14.614,9.017,1.97,0.0,8.046,0.0,0.0,1821.5,3283.2,3283.2,23.943,19.613,0.0,3.535,3.637,0.512,7.513,0.629,10.079,-12.682,0.0,0.0,0.0,8.297,-0.061,4.805,0.0,0.727,0.0,5.218,-7.326,-2.487,0.0,-0.04,-0.444,-0.049,2.744,-0.022,-1.346,11.731,0.0,0.0,0.0,-6.243,-0.057,-1.143,-3.832,-0.163,0.0,3.206,8.456,2.02,1354.3,997.6,11682.8,2680.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump.xml,57.501,57.501,29.493,29.493,28.008,0.0,0.0,0.0,0.0,0.0,0.0,0.462,0.0,0.0,3.799,0.696,3.407,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.228,0.0,12.154,9.116,1.721,0.0,0.0,0.0,0.0,1820.6,3489.3,3489.3,23.847,19.302,0.0,3.509,3.631,0.511,7.488,0.626,10.053,-12.751,0.0,0.0,0.0,8.323,-0.053,4.797,0.0,0.726,0.0,5.895,-4.387,-2.498,0.0,0.031,-0.389,-0.041,2.911,-0.009,-1.184,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.082,-3.436,-0.15,0.0,2.748,5.407,2.009,1354.7,998.0,10842.6,2488.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.476,58.476,35.101,35.101,23.376,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.269,0.805,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.889,0.0,13.947,9.117,0.021,0.0,0.0,0.0,0.0,4519.6,5543.3,5543.3,30.815,19.665,0.0,3.548,3.643,0.513,7.527,0.631,10.1,-12.683,0.0,0.0,0.0,8.319,-0.061,5.264,0.0,0.776,0.0,5.042,-8.562,-2.504,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.331,11.73,0.0,0.0,0.0,-6.243,-0.057,-1.241,-3.785,-0.183,0.0,3.099,7.938,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,59.064,59.064,35.034,35.034,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.206,0.791,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.505,0.0,13.776,9.121,0.021,0.0,0.0,0.0,0.0,1904.8,3571.8,3571.8,23.606,19.08,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.804,0.0,0.727,0.0,5.176,-7.476,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.132,-3.741,-0.161,0.0,3.069,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.476,58.476,35.101,35.101,23.376,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.269,0.805,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.889,0.0,13.947,9.117,0.021,0.0,0.0,0.0,0.0,4511.4,5543.3,5543.3,30.815,19.665,0.0,3.548,3.643,0.513,7.527,0.631,10.1,-12.683,0.0,0.0,0.0,8.319,-0.061,5.264,0.0,0.776,0.0,5.042,-8.562,-2.504,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.331,11.73,0.0,0.0,0.0,-6.243,-0.057,-1.241,-3.785,-0.183,0.0,3.099,7.938,2.005,1354.7,998.0,10786.2,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,59.064,59.064,35.034,35.034,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.206,0.791,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.505,0.0,13.776,9.121,0.021,0.0,0.0,0.0,0.0,1904.8,3578.4,3578.4,23.606,19.08,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.804,0.0,0.727,0.0,5.176,-7.476,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.132,-3.741,-0.161,0.0,3.069,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-oil.xml,65.856,65.856,26.734,26.734,23.843,15.28,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-wood.xml,65.856,65.856,26.734,26.734,23.843,0.0,0.0,15.28,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-detailed-setpoints.xml,61.738,61.738,26.528,26.528,35.21,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.052,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11342.7,2602.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -166,7 +166,7 @@ base-foundation-conditioned-basement-slab-insulation.xml,58.071,58.071,35.794,35 base-foundation-conditioned-basement-wall-insulation.xml,58.009,58.009,35.168,35.168,22.841,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.92,0.721,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.39,0.0,12.528,9.071,0.615,0.0,0.0,0.0,0.0,2041.6,3765.5,3765.5,23.695,19.001,0.0,3.571,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.942,-0.072,4.83,0.0,0.732,0.0,4.971,-7.81,-2.491,0.0,0.027,-0.395,-0.042,1.149,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.105,-3.49,-0.158,0.0,2.892,7.771,2.016,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35926.0,8681.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.443,47.443,28.55,28.55,18.893,0.0,0.0,0.0,0.0,0.0,0.0,0.312,0.0,0.0,3.429,0.615,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,17.68,0.0,10.552,9.178,0.615,0.0,0.0,0.0,0.0,1665.1,2797.9,2797.9,16.166,11.78,0.0,3.707,3.603,0.507,5.099,0.623,9.803,-12.661,0.0,0.0,0.0,9.971,-0.063,3.499,0.0,0.729,0.0,0.0,-5.999,-1.462,0.0,0.051,-0.445,-0.049,1.827,-0.02,-1.119,11.692,0.0,0.0,0.0,-3.741,-0.059,-0.812,-3.588,-0.16,0.0,0.0,5.997,1.184,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,22133.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3448.0,13587.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,464.0,3320.0,170.0,0.0,-630.0,800.0 base-foundation-multiple.xml,42.666,42.666,29.123,29.123,13.544,0.0,0.0,0.0,0.0,0.0,0.0,0.223,0.0,0.0,4.2,0.793,9.178,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.812,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.678,0.0,13.644,9.122,0.694,0.0,0.0,0.0,0.0,1645.4,3046.3,3046.3,15.578,15.406,0.0,3.98,3.864,0.0,0.0,0.777,10.556,-11.233,0.0,0.0,5.319,0.0,-0.388,2.582,0.0,0.0,0.0,2.124,-3.831,-1.415,0.0,-0.11,-0.685,0.0,0.0,-0.007,-0.371,12.735,0.0,0.0,-0.653,0.0,-0.384,-0.549,-2.977,0.0,0.0,1.658,3.98,1.23,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23186.0,4897.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14489.0,152.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,40.083,40.083,28.975,28.975,11.107,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,3.861,0.716,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.1,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,10.395,0.0,12.264,9.178,0.607,0.0,0.0,0.0,0.0,1649.8,2869.4,2869.4,12.974,13.084,0.0,3.929,3.8,0.0,0.0,0.69,10.055,-12.09,0.0,0.0,0.0,7.953,-0.156,2.012,0.0,0.773,0.0,0.299,-5.925,-1.441,0.0,-0.052,-0.561,0.0,0.0,-0.019,-0.691,12.166,0.0,0.0,0.0,-1.626,-0.154,-0.449,-3.297,-0.168,0.0,0.084,6.092,1.204,1354.7,998.0,11171.5,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,13398.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,40.083,40.083,28.975,28.975,11.107,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,3.861,0.716,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.1,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,10.395,0.0,12.264,9.178,0.607,0.0,0.0,0.0,0.0,1649.8,2869.4,2869.4,12.974,13.084,0.0,3.929,3.8,0.0,0.0,0.69,10.055,-12.09,0.0,0.0,0.0,7.953,-0.156,2.012,0.0,0.773,0.0,0.299,-5.925,-1.441,0.0,-0.052,-0.561,0.0,0.0,-0.019,-0.691,12.166,0.0,0.0,0.0,-1.626,-0.154,-0.449,-3.297,-0.168,0.0,0.084,6.092,1.204,1354.7,998.0,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13398.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,43.799,43.799,29.196,29.196,14.603,0.0,0.0,0.0,0.0,0.0,0.0,0.241,0.0,0.0,4.283,0.812,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.748,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.672,0.0,14.015,9.122,0.713,0.0,0.0,0.0,0.0,1640.2,2975.6,2975.6,16.865,16.395,0.0,3.988,3.87,0.0,0.0,0.777,10.616,-11.319,0.0,0.0,5.952,0.0,-0.397,2.589,0.0,0.0,0.0,2.556,-3.855,-1.423,0.0,-0.084,-0.66,0.0,0.0,-0.003,-0.36,12.65,0.0,0.0,-0.537,0.0,-0.391,-0.534,-2.962,0.0,0.0,1.934,3.956,1.222,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23161.0,4906.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14490.0,162.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unconditioned-basement-assembly-r.xml,41.102,41.102,28.625,28.625,12.477,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,3.844,0.709,9.195,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.755,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.681,0.0,12.124,9.122,0.711,0.0,0.0,0.0,0.0,1641.5,2792.7,2792.7,15.029,14.108,0.0,3.976,3.837,0.0,0.0,0.766,10.567,-11.128,0.0,0.0,4.468,0.0,-0.41,2.585,0.0,0.0,0.0,1.91,-3.816,-1.409,0.0,-0.082,-0.633,0.0,0.0,0.021,-0.332,12.841,0.0,0.0,-2.065,0.0,-0.405,-0.551,-2.808,0.0,0.0,1.14,3.996,1.237,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,20982.0,4845.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,13936.0,170.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unconditioned-basement-wall-insulation.xml,49.114,49.114,28.543,28.543,20.571,0.0,0.0,0.0,0.0,0.0,0.0,0.339,0.0,0.0,3.535,0.634,9.128,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.99,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.253,0.0,10.837,9.122,0.64,0.0,0.0,0.0,0.0,1659.9,2764.2,2764.2,17.054,12.672,0.0,3.734,3.631,0.0,0.0,0.637,9.326,-12.484,0.0,0.0,14.524,0.0,-0.055,2.47,0.0,0.0,0.0,2.675,-3.989,-1.475,0.0,0.079,-0.423,0.0,0.0,-0.009,-0.363,11.485,0.0,0.0,-2.715,0.0,-0.054,-0.503,-2.787,0.0,0.0,1.307,3.822,1.171,1354.7,998.0,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24244.0,2046.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15373.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,310.0,3320.0,380.0,0.0,-420.0,800.0 @@ -183,10 +183,10 @@ base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.873,45.873,45.873,45.8 base-hvac-air-to-air-heat-pump-1-speed.xml,45.811,45.811,45.811,45.811,0.0,0.0,0.0,0.0,0.0,0.0,9.893,1.051,0.329,0.019,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.348,12.895,9.071,0.615,0.0,0.0,0.0,0.0,7045.4,3758.5,7045.4,24.559,16.503,0.0,3.514,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.714,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-2-speed.xml,41.64,41.64,41.64,41.64,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.615,0.315,0.013,2.251,0.607,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.761,0.328,13.147,9.071,0.615,0.0,0.0,0.0,0.0,7022.6,3298.8,7022.6,24.552,17.528,0.0,3.473,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.293,-0.067,4.807,0.0,0.728,0.0,6.784,-7.8,-2.489,0.0,0.006,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.259,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.51,40.51,40.51,40.51,0.0,0.0,0.0,0.0,0.0,0.0,8.174,0.089,0.0,0.0,1.998,0.098,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.766,0.0,12.47,9.071,0.615,0.0,0.0,0.0,0.0,4168.6,2941.0,4168.6,22.401,15.666,0.0,3.551,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,4.735,-7.8,-2.489,0.0,0.032,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.778,-0.162,0.0,1.58,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,68137.0,68137.0,0.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.126,54.126,38.751,38.751,15.375,0.0,0.0,0.0,0.0,0.0,5.297,0.379,0.0,0.058,2.391,0.476,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,28.86,11.49,15.753,9.071,0.616,0.0,0.0,1.0,13.0,3140.9,2982.5,3140.9,23.258,17.757,0.0,3.269,3.597,0.506,7.507,0.614,9.916,-12.591,0.0,0.0,0.0,8.221,-0.031,5.815,0.0,0.719,0.0,11.113,-7.688,-2.467,0.0,-0.16,-0.467,-0.052,2.794,-0.032,-1.455,11.822,0.0,0.0,0.0,-6.255,-0.027,-1.459,-3.737,-0.167,0.0,5.142,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,57.106,57.106,37.587,37.587,19.518,0.0,0.0,0.0,0.0,0.0,4.221,0.255,0.0,0.074,2.409,0.479,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,28.467,14.579,15.872,9.071,0.616,0.0,0.0,242.0,13.0,3068.8,3141.4,3141.4,23.54,17.757,0.0,3.288,3.596,0.505,7.4,0.614,9.858,-12.676,0.0,0.0,0.0,8.226,-0.016,5.779,0.0,0.715,0.0,10.674,-7.713,-2.456,0.0,-0.146,-0.461,-0.052,2.715,-0.03,-1.487,11.737,0.0,0.0,0.0,-6.198,-0.013,-1.472,-3.723,-0.17,0.0,5.036,7.866,2.051,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.236,54.236,38.857,38.857,15.379,0.0,0.0,0.0,0.0,0.0,5.376,0.383,0.0,0.058,2.41,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.157,11.493,15.908,9.071,0.615,0.0,0.0,1.0,13.0,3140.9,3319.8,3319.8,23.258,17.758,0.0,3.31,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,5.888,0.0,0.727,0.0,11.257,-7.81,-2.491,0.0,-0.119,-0.432,-0.047,2.776,-0.017,-1.297,11.708,0.0,0.0,0.0,-6.19,-0.063,-1.395,-3.724,-0.16,0.0,5.195,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.261,54.261,39.013,39.013,15.248,0.0,0.0,0.0,0.0,0.0,5.145,0.36,0.0,0.46,2.418,0.478,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,29.44,12.658,16.007,9.071,0.615,0.0,0.0,2.0,11.0,3138.7,3319.7,3319.7,26.783,17.748,0.0,3.252,3.64,0.512,7.511,0.63,10.086,-12.696,0.0,0.0,0.0,8.302,-0.064,4.804,0.0,0.727,0.0,12.639,-7.798,-2.488,0.0,-0.127,-0.439,-0.048,2.748,-0.02,-1.332,11.717,0.0,0.0,0.0,-6.237,-0.059,-1.139,-3.789,-0.162,0.0,5.208,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40224.0,16125.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.151,54.151,38.777,38.777,15.374,0.0,0.0,0.0,0.0,0.0,5.322,0.38,0.0,0.058,2.39,0.477,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.976,11.489,15.75,9.071,0.616,0.0,0.0,1.0,13.0,3140.5,2982.9,3140.5,23.257,17.755,0.0,3.264,3.597,0.506,7.506,0.614,9.915,-12.591,0.0,0.0,0.0,8.221,-0.031,5.815,0.0,0.719,0.0,11.235,-7.688,-2.467,0.0,-0.16,-0.467,-0.052,2.794,-0.032,-1.455,11.822,0.0,0.0,0.0,-6.255,-0.027,-1.459,-3.737,-0.167,0.0,5.139,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,57.132,57.132,37.612,37.612,19.52,0.0,0.0,0.0,0.0,0.0,4.245,0.257,0.0,0.073,2.409,0.479,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,28.582,14.58,15.868,9.071,0.616,0.0,0.0,244.0,13.0,3068.3,3140.3,3140.3,23.54,17.756,0.0,3.284,3.596,0.505,7.4,0.614,9.858,-12.676,0.0,0.0,0.0,8.226,-0.017,5.779,0.0,0.715,0.0,10.792,-7.713,-2.456,0.0,-0.146,-0.461,-0.052,2.715,-0.03,-1.487,11.737,0.0,0.0,0.0,-6.198,-0.013,-1.472,-3.723,-0.17,0.0,5.029,7.866,2.051,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.262,54.262,38.884,38.884,15.378,0.0,0.0,0.0,0.0,0.0,5.402,0.385,0.0,0.058,2.409,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,11.493,15.904,9.071,0.615,0.0,0.0,1.0,13.0,3140.5,3320.2,3320.2,23.257,17.756,0.0,3.305,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,5.888,0.0,0.727,0.0,11.385,-7.81,-2.491,0.0,-0.118,-0.432,-0.047,2.776,-0.017,-1.297,11.708,0.0,0.0,0.0,-6.19,-0.063,-1.395,-3.723,-0.16,0.0,5.191,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,54.289,54.289,39.042,39.042,15.247,0.0,0.0,0.0,0.0,0.0,5.172,0.362,0.0,0.46,2.417,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.568,12.657,16.003,9.071,0.615,0.0,0.0,2.0,11.0,3138.3,3320.1,3320.1,26.781,17.746,0.0,3.248,3.64,0.512,7.51,0.63,10.086,-12.696,0.0,0.0,0.0,8.301,-0.064,4.804,0.0,0.727,0.0,12.774,-7.798,-2.488,0.0,-0.126,-0.439,-0.048,2.748,-0.02,-1.332,11.717,0.0,0.0,0.0,-6.237,-0.059,-1.139,-3.789,-0.162,0.0,5.204,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40224.0,16125.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.0,43.0,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,9.143,0.59,0.281,0.01,2.667,0.157,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.129,0.291,14.63,9.071,0.615,0.0,0.0,0.0,0.0,5551.4,4121.1,5551.4,24.764,18.624,0.0,3.346,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,10.269,-7.801,-2.489,0.0,-0.059,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.805,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,31615.0,31615.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.644,42.644,42.644,42.644,0.0,0.0,0.0,0.0,0.0,0.0,9.096,0.545,0.102,0.004,2.627,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.418,0.106,13.982,9.071,0.615,0.0,0.0,0.0,0.0,5145.2,3578.2,5145.2,24.549,18.265,0.0,3.373,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.535,-7.801,-2.489,0.0,-0.028,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.601,42.601,42.601,42.601,0.0,0.0,0.0,0.0,0.0,0.0,9.152,0.542,0.105,0.004,2.533,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.565,0.109,14.277,9.071,0.615,0.0,0.0,0.0,0.0,5162.0,3939.8,5162.0,24.549,18.285,0.0,3.368,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,4.807,0.0,0.728,0.0,9.688,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.441,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -206,9 +206,9 @@ base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0. base-hvac-central-ac-only-1-speed-seer2.xml,35.358,35.358,35.358,35.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.221,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3679.3,3679.3,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-1-speed.xml,35.37,35.37,35.37,35.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3685.9,3685.9,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.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,3.077,0.684,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3224.5,3224.5,0.0,19.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.656,-0.163,0.0,3.524,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.41,34.41,34.41,34.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.996,0.384,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.369,9.071,0.666,0.0,0.0,0.0,1.0,1974.9,4120.8,4120.8,0.0,19.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.131,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.665,-0.163,0.0,4.915,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20489.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.515,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,32.987,32.987,32.987,32.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.828,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.9,3015.9,0.0,19.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.41,34.41,34.41,34.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.996,0.384,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.37,9.071,0.666,0.0,0.0,0.0,1.0,1974.9,4120.8,4120.8,0.0,19.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.131,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.665,-0.163,0.0,4.915,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20489.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.514,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,32.986,32.986,32.986,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.827,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.4,3015.4,0.0,19.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.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.842,47.842,47.842,47.842,0.0,0.0,0.0,0.0,0.0,0.0,10.003,1.837,0.343,0.034,4.334,1.14,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.618,0.377,14.06,9.071,0.615,0.0,0.0,0.0,0.0,7390.6,4059.7,7390.6,25.614,19.322,0.0,3.48,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,4.807,0.0,0.728,0.0,6.625,-7.8,-2.489,0.0,-0.034,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.187,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2034.7,3107.2,3107.2,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.52,52.52,41.55,41.55,10.971,0.0,0.0,0.0,0.0,0.0,5.572,0.529,0.0,0.931,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,11.353,12.895,9.071,0.615,0.0,0.0,0.0,0.0,3544.9,3758.5,3758.5,24.549,16.503,0.0,3.457,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,4.807,0.0,0.728,0.0,7.048,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -233,7 +233,7 @@ base-hvac-furnace-coal-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,57.33,57.33,57.33,57.33,0.0,0.0,0.0,0.0,0.0,0.0,21.735,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,7905.7,3884.4,7905.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,53.402,53.402,53.402,53.402,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,8296.6,1786.0,8296.6,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-2-speed.xml,57.958,57.958,34.333,34.333,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,3.127,0.665,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,14.401,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3593.8,3593.8,23.508,19.799,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.048,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,3.533,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,57.188,57.188,33.563,33.563,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.252,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.44,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,57.187,57.187,33.562,33.562,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.249,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.436,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,38.822,38.822,30.321,30.321,8.501,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,8.035,0.0,0.0,9.071,0.636,0.0,0.0,0.0,0.0,1989.1,1804.8,1989.1,18.724,0.0,0.0,2.806,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.446,0.0,0.566,0.0,2.046,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,59.761,59.761,30.832,30.832,28.93,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only.xml,54.874,54.874,30.832,30.832,24.042,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -250,14 +250,14 @@ base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,49.032,49.032,49.032, base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.368,44.368,44.368,44.368,0.0,0.0,0.0,0.0,0.0,0.0,9.624,0.597,0.614,0.019,2.804,0.559,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.449,0.633,13.778,9.071,0.615,0.0,0.0,0.0,0.0,7134.9,3612.6,7134.9,25.081,19.025,0.0,3.409,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,4.807,0.0,0.728,0.0,8.521,-7.8,-2.489,0.0,-0.021,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,2.904,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,46.045,46.045,46.045,46.045,0.0,0.0,0.0,0.0,0.0,0.0,11.468,0.555,0.309,0.009,3.38,0.172,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.758,0.318,14.993,9.071,0.615,0.0,0.0,0.0,0.0,5912.0,4585.4,5912.0,25.08,18.927,0.0,3.321,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.302,-0.065,4.807,0.0,0.728,0.0,10.918,-7.801,-2.489,0.0,-0.077,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.137,-3.785,-0.162,0.0,4.183,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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,44.314,44.314,44.314,44.314,0.0,0.0,0.0,0.0,0.0,0.0,10.39,0.374,0.641,0.022,2.58,0.155,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.685,0.663,14.75,9.071,0.615,0.0,0.0,0.0,0.0,6481.5,3577.7,6481.5,25.126,18.874,0.0,3.363,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.066,4.807,0.0,0.728,0.0,9.806,-7.801,-2.489,0.0,-0.065,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.926,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.241,61.241,36.369,36.369,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.0,0.0,5.174,0.744,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.179,0.0,14.873,9.071,0.615,0.0,0.0,0.0,4.0,2035.8,3987.3,3987.3,24.58,18.696,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.187,-7.798,-2.488,0.0,-0.071,-0.44,-0.049,2.748,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.241,-0.061,-1.138,-3.783,-0.162,0.0,4.023,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.234,61.234,36.367,36.367,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,5.172,0.744,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,14.87,9.071,0.615,0.0,0.0,0.0,4.0,2035.6,3987.5,3987.5,24.573,18.689,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.071,-0.44,-0.049,2.748,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.241,-0.061,-1.138,-3.783,-0.162,0.0,4.02,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.771,59.771,34.904,34.904,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.82,0.633,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,15.315,9.071,0.615,0.0,0.0,0.0,3.0,2035.6,3689.9,3689.9,24.573,18.986,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.09,-0.44,-0.048,2.749,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.24,-0.061,-1.138,-3.783,-0.162,0.0,4.471,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,59.036,59.036,34.169,34.169,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.341,0.378,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,16.025,9.071,0.615,0.0,0.0,0.0,0.0,2035.6,3573.0,3573.0,24.573,19.199,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.131,-0.44,-0.048,2.75,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.239,-0.061,-1.138,-3.79,-0.162,0.0,5.236,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,56.307,56.307,30.693,30.693,25.614,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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.0,0.0,24.049,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2020.1,1786.0,2020.1,25.88,0.0,0.0,3.466,3.641,0.512,7.491,0.63,10.094,-12.691,0.0,0.0,0.0,8.141,-0.069,4.807,0.0,0.728,0.0,7.231,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,42.712,42.712,42.712,42.712,0.0,0.0,0.0,0.0,0.0,0.0,7.496,0.606,0.0,0.0,3.553,0.905,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.029,0.0,13.538,9.071,0.615,0.0,0.0,0.0,0.0,3705.0,3369.9,3705.0,23.668,17.789,0.0,3.543,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.807,0.0,0.728,0.0,4.997,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.78,-0.162,0.0,2.658,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.486,33.486,33.486,33.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.195,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.325,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3068.7,3068.7,0.0,14.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.008,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.658,-0.163,0.0,1.794,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.615,41.615,41.615,41.615,0.0,0.0,0.0,0.0,0.0,0.0,8.477,0.224,0.144,0.006,2.52,0.092,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.59,0.15,12.215,9.071,0.615,0.0,0.0,0.0,0.0,4940.9,3243.8,4940.9,19.566,14.283,0.0,3.595,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.526,-7.8,-2.489,0.0,0.042,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.778,-0.162,0.0,1.324,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,32.837,32.837,32.837,32.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.069,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.063,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2690.8,2690.8,0.0,14.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.021,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.655,-0.163,0.0,1.52,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,32.837,32.837,32.837,32.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.069,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.064,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2690.8,2690.8,0.0,14.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.021,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.655,-0.163,0.0,1.52,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15799.0,2058.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.243,33.243,33.243,33.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.159,0.053,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2757.3,2757.3,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,14582.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.572,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2769.6,2769.6,0.0,11.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.877,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2667.8,2667.8,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -274,7 +274,7 @@ base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.902 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.04,0.0,0.0,1.887,0.003,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3944.1,3072.0,3944.1,16.761,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,67.555,67.555,52.544,52.544,7.432,3.747,3.831,0.0,0.0,0.0,14.282,0.917,0.239,0.01,6.404,0.541,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.249,19.016,9.071,0.615,0.0,0.0,0.0,15.0,6577.6,4447.1,6577.6,38.542,22.491,0.0,3.4,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.303,-0.067,5.888,0.0,0.727,0.0,16.161,-7.808,-2.49,0.0,-0.112,-0.433,-0.047,2.773,-0.017,-1.3,11.709,0.0,0.0,0.0,-6.195,-0.063,-1.396,-3.746,-0.16,0.0,8.299,7.771,2.017,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37011.0,12913.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24591.0,10850.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,67.555,67.555,52.544,52.544,7.433,3.747,3.831,0.0,0.0,0.0,14.282,0.917,0.239,0.01,6.404,0.541,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.141,0.249,19.016,9.071,0.615,0.0,0.0,0.0,15.0,6575.4,4447.1,6575.4,38.542,22.491,0.0,3.4,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.303,-0.067,5.888,0.0,0.727,0.0,16.161,-7.808,-2.49,0.0,-0.112,-0.433,-0.047,2.773,-0.017,-1.3,11.709,0.0,0.0,0.0,-6.195,-0.063,-1.396,-3.746,-0.16,0.0,8.299,7.771,2.017,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37011.0,12913.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24591.0,10850.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,20.452,20.452,20.452,20.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,4.542,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.496,0.335,0.0,0.0,0.0,0.0,1265.8,1194.4,1265.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,1354.7,998.0,8369.9,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,13258.0,0.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.595,51.595,51.595,51.595,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3388.5,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.897,55.897,34.387,34.387,21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,1931.3,3388.5,3388.5,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.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 eb6652736..bfb674a74 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -49,9 +49,9 @@ base-bldgtype-mf-unit-shared-generator.xml,1632.51,144.0,950.43,0.0,1094.43,144. base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1181.57,144.0,1037.57,0.0,1181.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1052.69,144.0,603.14,0.0,747.14,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-bldgtype-mf-unit-shared-laundry-room.xml,1025.86,144.0,596.45,0.0,740.45,144.0,141.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 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1626.05,144.0,1117.08,0.0,1261.08,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 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1340.84,144.0,992.92,0.0,1136.92,144.0,59.92,203.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-bldgtype-mf-unit-shared-mechvent.xml,1321.14,144.0,988.12,0.0,1132.12,144.0,45.02,189.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-bldgtype-mf-unit-shared-mechvent-multiple.xml,1627.27,144.0,1116.96,0.0,1260.96,144.0,222.31,366.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-mechvent-preconditioning.xml,1340.43,144.0,994.59,0.0,1138.59,144.0,57.84,201.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-bldgtype-mf-unit-shared-mechvent.xml,1318.87,144.0,988.87,0.0,1132.87,144.0,42.0,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 base-bldgtype-mf-unit-shared-pv-battery.xml,382.88,144.0,982.48,-897.13,229.35,144.0,9.53,153.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-pv.xml,350.72,144.0,950.43,-897.25,197.19,144.0,9.53,153.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-water-heater-recirc-scheduled.xml,1067.48,144.0,637.45,0.0,781.45,144.0,142.03,286.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 @@ -69,7 +69,7 @@ base-dhw-desuperheater-2-speed.xml,1307.1,144.0,1163.1,0.0,1307.1,0.0,0.0,0.0,0. base-dhw-desuperheater-gshp.xml,1548.5,144.0,1404.5,0.0,1548.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,144.0,1081.92,0.0,1225.92,144.0,297.37,441.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-dhw-desuperheater-tankless.xml,1364.87,144.0,1220.87,0.0,1364.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-dhw-desuperheater-var-speed.xml,1275.78,144.0,1131.78,0.0,1275.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,1275.79,144.0,1131.79,0.0,1275.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,1366.09,144.0,1222.09,0.0,1366.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-dwhr.xml,1761.21,144.0,1222.94,0.0,1366.94,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,1428.27,144.0,784.35,0.0,928.35,144.0,355.92,499.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -183,10 +183,10 @@ base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1827.57,144.0,1683.57,0.0 base-hvac-air-to-air-heat-pump-1-speed.xml,1825.26,144.0,1681.26,0.0,1825.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-air-to-air-heat-pump-2-speed.xml,1672.21,144.0,1528.21,0.0,1672.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,1630.74,144.0,1486.74,0.0,1630.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1873.06,144.0,1422.19,0.0,1566.19,144.0,162.87,306.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,1874.23,144.0,1379.47,0.0,1523.47,144.0,206.76,350.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1876.99,144.0,1426.07,0.0,1570.07,144.0,162.92,306.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,1881.32,144.0,1431.8,0.0,1575.8,144.0,161.52,305.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1873.99,144.0,1423.13,0.0,1567.13,144.0,162.86,306.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1875.17,144.0,1380.39,0.0,1524.39,144.0,206.78,350.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1877.96,144.0,1427.05,0.0,1571.05,144.0,162.91,306.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-air-to-air-heat-pump-var-speed-backup-furnace.xml,1882.36,144.0,1432.84,0.0,1576.84,144.0,161.52,305.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-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1722.12,144.0,1578.12,0.0,1722.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-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1709.04,144.0,1565.04,0.0,1709.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 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1707.47,144.0,1563.47,0.0,1707.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 @@ -233,7 +233,7 @@ base-hvac-furnace-coal-only.xml,1636.18,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2248.02,144.0,2104.02,0.0,2248.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-furnace-elec-only.xml,2103.88,144.0,1959.88,0.0,2103.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 base-hvac-furnace-gas-central-ac-2-speed.xml,1798.3,144.0,1260.03,0.0,1404.03,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.04,144.0,1231.77,0.0,1375.77,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.02,144.0,1231.75,0.0,1375.75,144.0,250.27,394.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-hvac-furnace-gas-only-detailed-setpoints.xml,1490.84,144.0,1112.79,0.0,1256.79,144.0,90.05,234.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-furnace-gas-only-pilot.xml,1726.0,144.0,1131.54,0.0,1275.54,144.0,306.46,450.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-hvac-furnace-gas-only.xml,1674.23,144.0,1131.54,0.0,1275.54,144.0,254.69,398.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 @@ -250,7 +250,7 @@ base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1943.48,144.0,1799.48 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1772.34,144.0,1628.34,0.0,1772.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-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1833.87,144.0,1689.87,0.0,1833.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-install-quality-air-to-air-heat-pump-var-speed.xml,1770.34,144.0,1626.34,0.0,1770.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-install-quality-furnace-gas-central-ac-1-speed.xml,1886.25,144.0,1334.77,0.0,1478.77,144.0,263.48,407.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-furnace-gas-central-ac-1-speed.xml,1886.1,144.0,1334.68,0.0,1478.68,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.4,144.0,1280.98,0.0,1424.98,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1805.44,144.0,1254.02,0.0,1398.02,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1685.77,144.0,1126.43,0.0,1270.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 @@ -274,7 +274,7 @@ base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1571.7 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1579.07,144.0,1435.07,0.0,1579.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2530.18,144.0,1928.4,0.0,2072.4,144.0,78.73,222.73,0.0,131.07,131.07,0.0,103.98,103.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2530.16,144.0,1928.39,0.0,2072.39,144.0,78.73,222.73,0.0,131.06,131.06,0.0,103.98,103.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2608.01,144.0,2464.01,0.0,2608.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2037.57,144.0,1893.57,0.0,2037.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,1777.89,144.0,1262.03,0.0,1406.03,144.0,227.86,371.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index f7da57b89..cc8cbbac7 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -16,29 +16,29 @@ base-location-honolulu-hi.xml,35.269,35.269,35.269,35.269,0.0,0.0,0.0,0.0,0.0,0. base-location-miami-fl.xml,34.438,34.438,34.438,34.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.753,2.616,4.874,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.279,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.069,4.632,0.552,0.0,0.0,0.0,0.0,2015.7,2523.9,2523.9,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,1.048,0.618,0.0,0.0,0.315,4.571,19.646,0.0,0.0,0.0,5.632,-0.004,-0.198,-2.841,-0.0,0.0,0.669,12.141,2.646,1354.7,998.0,8452.8,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,13402.0,-220.0,6605.0,0.0,279.0,507.0,0.0,0.0,0.0,2565.0,345.0,3320.0,2519.0,954.0,765.0,800.0 base-location-phoenix-az.xml,38.252,38.252,38.248,38.248,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.103,2.867,5.099,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.263,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.003,0.0,52.245,4.866,0.557,0.0,0.0,0.0,0.0,2359.6,3564.2,3564.2,1.043,18.543,0.0,0.711,0.52,0.0,0.0,0.208,2.304,-2.036,0.0,0.0,0.0,-0.099,-0.498,0.371,0.0,0.131,0.0,-0.0,-1.43,-0.296,0.0,1.798,1.434,0.0,0.0,0.812,7.013,24.03,0.0,0.0,0.0,7.07,-0.51,0.033,-3.212,0.129,0.0,0.94,10.7,2.349,1354.7,998.0,8260.6,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,18143.0,689.0,8845.0,0.0,401.0,975.0,0.0,0.0,0.0,3028.0,885.0,3320.0,514.0,0.0,-286.0,800.0 base-location-portland-or.xml,37.638,37.638,27.196,27.196,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,2.718,0.498,8.935,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.087,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.647,0.0,8.314,8.724,0.78,0.0,0.0,0.0,0.0,1621.9,2927.9,2927.9,8.87,14.306,0.0,3.414,3.26,0.0,0.0,0.743,8.714,-8.283,0.0,0.0,6.205,0.0,-0.453,1.464,0.0,0.81,0.0,1.785,-6.547,-1.625,0.0,-0.267,-0.725,0.0,0.0,0.007,-0.534,10.218,0.0,0.0,-2.796,0.0,-0.45,-0.325,-2.834,-0.24,0.0,0.535,4.85,1.021,1354.7,998.0,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17761.0,6471.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15740.0,2399.0,6585.0,0.0,210.0,243.0,0.0,429.0,0.0,2304.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.669,80.669,37.469,37.469,43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.713,0.0,0.0,4.076,0.749,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.053,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.461,0.0,12.989,9.071,0.621,0.0,0.0,0.0,0.0,2162.5,3829.3,3829.3,32.839,21.498,0.0,3.506,3.727,0.524,7.411,0.657,10.41,-12.864,0.0,0.0,0.0,8.072,-0.13,5.516,0.0,15.129,0.0,8.829,-8.066,-2.561,0.0,0.184,-0.225,-0.018,3.027,0.04,-0.612,11.549,0.0,0.0,0.0,-5.938,-0.126,-0.978,-2.994,-3.428,0.0,3.122,7.502,1.946,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39149.0,8753.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10894.0,21389.0,5978.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-balanced.xml,79.857,79.857,37.457,37.457,42.4,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.076,0.75,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.054,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.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,39.712,0.0,12.996,9.071,0.621,0.0,0.0,0.0,0.0,2159.7,3829.3,3829.3,32.781,21.491,0.0,3.499,3.716,0.523,7.42,0.655,10.383,-12.834,0.0,0.0,0.0,8.097,-0.129,4.897,0.0,15.091,0.0,8.689,-8.042,-2.554,0.0,0.169,-0.24,-0.02,3.023,0.037,-0.65,11.579,0.0,0.0,0.0,-5.927,-0.124,-0.891,-3.012,-3.481,0.0,3.117,7.526,1.953,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39149.0,8753.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10894.0,21389.0,5978.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2289.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-bath-kitchen-fans.xml,61.006,61.006,35.691,35.691,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.0,4.218,0.793,9.015,0.0,0.0,4.507,0.0,0.334,0.112,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.707,0.0,13.805,9.071,0.616,0.0,0.0,0.0,0.0,2055.7,3763.1,3763.1,25.293,20.778,0.0,3.532,3.637,0.512,7.503,0.629,10.079,-12.698,0.0,0.0,0.0,8.298,-0.061,4.321,0.0,2.474,0.0,5.433,-7.804,-2.49,0.0,-0.015,-0.427,-0.047,2.789,-0.017,-1.291,11.715,0.0,0.0,0.0,-6.174,-0.057,-1.015,-3.685,-0.672,0.0,3.085,7.776,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,74.017,74.017,37.363,37.363,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.605,0.0,0.0,4.154,0.771,9.017,0.0,0.0,4.507,0.0,0.334,1.69,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.33,0.0,13.382,9.071,0.619,0.0,0.0,0.0,0.0,2084.4,4049.3,4049.3,29.849,21.303,0.0,3.475,3.658,0.515,7.478,0.637,10.17,-12.751,0.0,0.0,0.0,8.282,-0.077,1.507,0.0,13.897,0.0,7.626,-7.884,-2.508,0.0,0.065,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.92,-0.073,-0.247,-3.266,-3.173,0.0,3.146,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,74.14,74.14,38.309,38.309,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.842,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.826,0.0,10.31,9.071,0.619,0.0,0.0,0.0,0.0,2079.5,3207.3,3207.3,21.562,13.614,0.0,3.758,3.654,0.514,7.47,0.636,10.163,-12.744,0.0,0.0,0.0,8.27,-0.079,1.506,0.0,13.776,0.0,0.0,-7.882,-2.508,0.0,0.153,-0.343,-0.035,2.957,0.008,-1.0,11.67,0.0,0.0,0.0,-5.922,-0.075,-0.247,-3.258,-3.142,0.0,0.0,7.691,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,14903.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,33.624,33.624,33.624,33.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.901,9.085,0.0,0.0,4.507,0.0,0.334,2.752,0.0,0.0,0.0,1.822,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.18,9.071,0.691,0.0,0.0,0.0,0.0,2020.0,2122.1,2122.1,0.0,18.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.167,-0.336,-0.033,3.036,0.002,-1.037,11.85,0.0,0.0,0.0,-6.527,-0.061,-0.25,-3.027,-3.018,0.0,0.658,7.893,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,17410.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,71.279,71.279,36.015,36.015,35.265,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.065,0.75,9.019,0.0,0.0,4.507,0.0,0.334,0.478,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,33.028,0.0,13.02,9.071,0.62,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.287,0.0,3.506,3.679,0.518,7.458,0.643,10.246,-12.792,0.0,0.0,0.0,8.226,-0.091,1.906,0.0,12.553,0.0,7.363,-7.954,-2.53,0.0,0.118,-0.29,-0.027,3.028,0.022,-0.827,11.621,0.0,0.0,0.0,-5.85,-0.087,-0.244,-3.088,-3.947,0.0,3.07,7.616,1.977,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,73.347,73.347,36.047,36.047,37.299,0.0,0.0,0.0,0.0,0.0,0.0,0.615,0.0,0.0,4.076,0.752,9.018,0.0,0.0,4.507,0.0,0.334,0.464,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,34.934,0.0,13.039,9.071,0.619,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.291,0.0,3.483,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.252,-0.087,1.51,0.0,14.456,0.0,7.737,-7.924,-2.52,0.0,0.097,-0.311,-0.03,2.999,0.017,-0.894,11.633,0.0,0.0,0.0,-5.875,-0.083,-0.237,-3.147,-3.777,0.0,3.094,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,75.165,75.165,37.304,37.304,37.861,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.113,0.759,9.018,0.0,0.0,4.507,0.0,0.334,1.666,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,13.179,9.071,0.619,0.0,0.0,0.0,0.0,2082.3,3769.0,3769.0,29.849,21.283,0.0,3.49,3.709,0.522,7.444,0.652,10.347,-12.806,0.0,0.0,0.0,8.158,-0.122,1.521,0.0,14.102,0.0,8.691,-7.992,-2.54,0.0,0.175,-0.274,-0.025,2.972,0.027,-0.773,11.607,0.0,0.0,0.0,-5.971,-0.118,-0.225,-3.136,-2.938,0.0,2.438,7.58,1.967,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,66.063,66.063,37.47,37.47,28.593,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.779,0.0,13.915,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.819,20.292,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.904,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,66.066,66.066,37.47,37.47,28.596,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.782,0.0,13.914,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.821,20.293,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.907,0.0,6.073,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.829,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,74.09,74.09,37.363,37.363,36.727,0.0,0.0,0.0,0.0,0.0,0.0,0.606,0.0,0.0,4.154,0.771,9.017,0.0,0.0,4.507,0.0,0.334,1.689,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,13.381,9.071,0.619,0.0,0.0,0.0,0.0,2084.8,4046.2,4046.2,29.856,21.307,0.0,3.474,3.658,0.515,7.478,0.637,10.169,-12.751,0.0,0.0,0.0,8.283,-0.077,1.561,0.0,13.898,0.0,7.639,-7.884,-2.508,0.0,0.065,-0.341,-0.034,2.959,0.008,-0.998,11.663,0.0,0.0,0.0,-5.919,-0.073,-0.254,-3.265,-3.173,0.0,3.146,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,74.214,74.214,38.308,38.308,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.841,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.882,0.0,10.309,9.071,0.619,0.0,0.0,0.0,0.0,2079.6,3207.2,3207.2,21.568,13.622,0.0,3.76,3.656,0.514,7.471,0.637,10.163,-12.751,0.0,0.0,0.0,8.27,-0.076,1.561,0.0,13.78,0.0,0.0,-7.884,-2.508,0.0,0.155,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.921,-0.072,-0.254,-3.257,-3.138,0.0,0.0,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,14903.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,33.624,33.624,33.624,33.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.901,9.085,0.0,0.0,4.507,0.0,0.334,2.752,0.0,0.0,0.0,1.821,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.179,9.071,0.691,0.0,0.0,0.0,0.0,2020.0,2122.6,2122.6,0.0,18.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.167,-0.336,-0.033,3.036,0.002,-1.036,11.85,0.0,0.0,0.0,-6.526,-0.061,-0.257,-3.025,-3.017,0.0,0.658,7.893,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,17410.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,71.81,71.81,36.017,36.017,35.793,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,4.063,0.749,9.019,0.0,0.0,4.507,0.0,0.334,0.474,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,33.524,0.0,13.007,9.071,0.62,0.0,0.0,0.0,0.0,2084.9,3769.0,3769.0,29.857,21.291,0.0,3.504,3.68,0.518,7.46,0.643,10.246,-12.801,0.0,0.0,0.0,8.227,-0.088,2.282,0.0,12.58,0.0,7.462,-7.956,-2.531,0.0,0.12,-0.289,-0.027,3.029,0.022,-0.827,11.612,0.0,0.0,0.0,-5.85,-0.084,-0.256,-3.087,-3.946,0.0,3.071,7.614,1.976,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,73.419,73.419,36.048,36.048,37.371,0.0,0.0,0.0,0.0,0.0,0.0,0.616,0.0,0.0,4.076,0.752,9.018,0.0,0.0,4.507,0.0,0.334,0.463,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,35.002,0.0,13.039,9.071,0.619,0.0,0.0,0.0,0.0,2084.9,3769.0,3769.0,29.856,21.294,0.0,3.484,3.67,0.516,7.465,0.641,10.218,-12.781,0.0,0.0,0.0,8.25,-0.087,1.565,0.0,14.458,0.0,7.749,-7.926,-2.52,0.0,0.098,-0.31,-0.03,3.0,0.017,-0.892,11.632,0.0,0.0,0.0,-5.876,-0.083,-0.244,-3.146,-3.773,0.0,3.094,7.645,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,75.234,75.234,37.304,37.304,37.93,0.0,0.0,0.0,0.0,0.0,0.0,0.626,0.0,0.0,4.113,0.759,9.018,0.0,0.0,4.507,0.0,0.334,1.665,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,35.526,0.0,13.178,9.071,0.619,0.0,0.0,0.0,0.0,2082.4,3769.0,3769.0,29.855,21.286,0.0,3.491,3.711,0.522,7.442,0.653,10.352,-12.806,0.0,0.0,0.0,8.152,-0.123,1.577,0.0,14.108,0.0,8.702,-7.996,-2.542,0.0,0.176,-0.273,-0.025,2.971,0.028,-0.766,11.607,0.0,0.0,0.0,-5.976,-0.119,-0.231,-3.135,-2.932,0.0,2.44,7.575,1.965,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.288,65.288,37.46,37.46,27.827,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.258,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.062,0.0,13.932,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3709.9,3709.9,25.76,20.112,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.905,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.834,0.0,3.15,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.291,65.291,37.46,37.46,27.831,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.258,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.064,0.0,13.931,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3709.9,3709.9,25.761,20.113,0.0,3.508,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.907,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.835,0.0,3.15,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-exhaust-rated-flow-rate.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-exhaust.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,66.064,66.064,37.473,37.473,28.591,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.777,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.818,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.398,0.0,3.903,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,66.067,66.067,37.473,37.473,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.78,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.82,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.905,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.961,81.961,37.877,37.877,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.724,0.0,0.0,4.387,0.645,9.022,0.0,0.0,4.507,0.0,0.334,1.574,0.0,0.0,0.416,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,0.0,11.165,9.071,0.624,0.0,0.0,0.0,18.0,2190.4,4110.3,4110.3,36.243,23.259,0.0,3.173,3.718,0.523,7.454,0.655,10.373,-12.811,0.0,0.0,0.0,8.207,-0.123,3.852,0.0,9.589,0.0,16.897,-8.002,-2.544,0.0,0.13,-0.167,-0.01,3.26,0.053,-0.451,11.602,0.0,0.0,0.0,-5.542,-0.119,-0.571,0.0,-2.037,-9.045,4.599,7.559,1.963,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43270.0,16305.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7464.0,26033.0,11500.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.464,73.464,36.527,36.527,36.937,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,4.119,0.762,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,0.0,34.595,0.0,13.217,9.071,0.619,0.0,0.0,0.0,0.0,2096.5,3799.0,3799.0,29.715,21.331,0.0,3.485,3.669,0.516,7.467,0.641,10.213,-12.78,0.0,0.0,0.0,8.254,-0.085,1.51,0.0,14.179,0.0,7.669,-7.923,-2.52,0.0,0.094,-0.312,-0.03,2.998,0.016,-0.9,11.633,0.0,0.0,0.0,-5.876,-0.081,-0.238,-3.153,-3.621,0.0,3.128,7.648,1.988,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.289,65.289,37.463,37.463,27.825,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.261,0.802,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.06,0.0,13.934,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3711.3,3711.3,25.759,20.115,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.903,0.0,5.93,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.59,-0.834,0.0,3.152,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.292,65.292,37.463,37.463,27.828,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.261,0.802,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.063,0.0,13.933,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3711.4,3711.4,25.76,20.115,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.905,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.834,0.0,3.152,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20051.0,5959.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,82.36,82.36,37.875,37.875,44.485,0.0,0.0,0.0,0.0,0.0,0.0,0.731,0.0,0.0,4.379,0.643,9.022,0.0,0.0,4.507,0.0,0.334,1.574,0.0,0.0,0.417,2.043,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.668,0.0,11.137,9.071,0.624,0.0,0.0,0.0,17.0,2187.4,4110.4,4110.4,36.638,23.253,0.0,3.168,3.719,0.523,7.454,0.655,10.372,-12.815,0.0,0.0,0.0,8.204,-0.12,4.108,0.0,9.583,0.0,17.044,-8.006,-2.546,0.0,0.134,-0.165,-0.009,3.263,0.054,-0.448,11.598,0.0,0.0,0.0,-5.541,-0.116,-0.58,0.0,-2.033,-9.06,4.588,7.555,1.962,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43270.0,16305.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7464.0,26033.0,11500.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.536,73.536,36.528,36.528,37.008,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.119,0.762,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.662,0.0,13.216,9.071,0.619,0.0,0.0,0.0,0.0,2096.9,3799.0,3799.0,29.722,21.335,0.0,3.485,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.252,-0.087,1.565,0.0,14.182,0.0,7.681,-7.924,-2.52,0.0,0.095,-0.312,-0.03,2.998,0.017,-0.896,11.633,0.0,0.0,0.0,-5.877,-0.083,-0.244,-3.152,-3.618,0.0,3.129,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20874.0,5970.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-whole-house-fan.xml,57.725,57.725,33.919,33.919,23.806,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,2.372,0.355,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.671,2.042,0.0,0.0,0.319,0.365,1.513,1.529,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.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,22.294,0.0,6.046,9.071,0.624,0.0,0.0,0.0,0.0,2039.7,3472.1,3472.1,23.508,16.144,0.0,3.537,3.636,0.512,7.523,0.629,10.08,-12.691,0.0,0.0,0.0,8.411,-0.061,4.805,0.0,0.728,0.0,5.137,-7.799,-2.489,0.0,0.167,-0.225,-0.018,3.377,0.032,-0.685,11.723,0.0,0.0,0.0,-5.252,-0.056,-0.941,0.0,-0.129,-12.877,1.66,7.761,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-additional-properties.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv-detailed-only.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv-mixed.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv.xml,59.22,1.956,35.594,-21.669,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,64.266,44.914,31.207,11.855,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,2.164,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.118,0.0,0.0,1.09,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.944,0.0,5.176,10.469,0.697,0.0,9.09,0.0,0.0,2329.9,3054.3,3054.3,26.39,15.079,0.0,3.498,3.693,0.519,7.44,1.121,10.342,-12.828,0.0,0.0,0.0,8.206,-0.107,1.535,0.0,15.111,0.0,2.863,-8.174,-2.551,0.0,0.765,-0.048,0.008,3.523,-0.182,-0.173,11.586,0.0,0.0,0.0,-5.121,-0.103,-0.185,0.0,-3.253,-11.716,0.426,8.485,1.957,1610.4,1574.8,10335.4,3642.3,2.903,36000.0,24000.0,0.0,6.8,91.76,31457.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15763.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,64.612,45.26,31.232,11.88,33.38,0.0,0.0,0.0,0.0,0.0,0.0,0.551,0.0,0.0,2.166,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.139,0.0,0.0,1.086,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.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,31.245,0.0,5.183,10.469,0.697,0.0,9.09,0.0,0.0,2331.3,3059.9,3059.9,26.525,15.123,0.0,3.504,3.699,0.52,7.433,1.123,10.361,-12.834,0.0,0.0,0.0,8.186,-0.111,1.515,0.0,15.424,0.0,2.891,-8.185,-2.553,0.0,0.773,-0.041,0.009,3.52,-0.18,-0.151,11.579,0.0,0.0,0.0,-5.136,-0.107,-0.18,0.0,-3.293,-11.676,0.426,8.474,1.954,1610.4,1574.8,10335.5,3642.4,2.9,36000.0,24000.0,0.0,6.8,91.76,31556.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7423.0,15794.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-misc-emissions.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators-battery-scheduled.xml,77.954,69.765,37.329,29.14,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.729,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators-battery.xml,76.22,68.03,35.594,27.405,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -66,7 +66,7 @@ base-residents-0.xml,41.283,41.283,7.138,7.138,34.145,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,101.76,101.76,51.638,51.638,42.211,0.0,2.61,5.301,0.0,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2406.4,4609.8,4609.8,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1-misc-loads-large-uncommon2.xml,80.706,80.706,49.212,49.212,23.583,2.61,0.0,0.0,5.301,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2253.5,4350.1,4350.1,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,20912.0,5971.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1.xml,53.439,53.439,28.186,28.186,25.253,0.0,0.0,0.0,0.0,0.0,0.0,0.417,0.0,0.0,3.993,0.741,3.886,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.651,0.0,13.015,3.56,0.616,0.0,0.0,0.0,0.0,1592.6,3323.9,3323.9,23.879,18.485,0.0,3.521,3.628,0.51,7.477,0.628,10.062,-12.698,0.0,0.0,0.0,8.262,-0.064,4.801,0.0,0.725,0.0,5.417,-6.452,-2.49,0.0,0.001,-0.416,-0.045,2.824,-0.013,-1.249,11.715,0.0,0.0,0.0,-6.122,-0.06,-1.113,-3.597,-0.158,0.0,2.937,6.439,2.017,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.772,50.521,39.555,19.303,31.217,0.0,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.0,2.261,0.33,6.888,0.0,0.326,4.507,0.0,0.334,1.118,0.0,0.0,1.108,2.16,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.409,31.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,29.22,0.0,5.524,18.155,0.645,0.0,11.92,0.0,0.0,2758.8,3334.1,3334.1,26.006,15.439,0.0,3.802,3.696,0.52,7.492,0.647,10.282,-12.793,0.0,0.0,0.0,8.323,-0.087,1.528,0.0,15.037,0.0,2.708,-9.686,-2.53,0.0,0.3,-0.113,-0.002,3.492,0.063,-0.321,11.62,0.0,0.0,0.0,-5.127,-0.083,-0.197,0.0,-3.402,-12.284,0.453,10.013,1.977,2592.0,2707.5,20715.8,5546.8,1.882,36000.0,24000.0,0.0,6.8,91.76,31457.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15763.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,71.116,50.864,39.581,19.33,31.534,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,2.263,0.331,6.888,0.0,0.326,4.507,0.0,0.334,1.139,0.0,0.0,1.106,2.159,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.408,31.534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,0.0,5.53,18.155,0.645,0.0,11.92,0.0,0.0,2759.8,3339.8,3339.8,26.141,15.482,0.0,3.803,3.697,0.52,7.492,0.647,10.283,-12.793,0.0,0.0,0.0,8.321,-0.086,1.506,0.0,15.33,0.0,2.735,-9.689,-2.531,0.0,0.301,-0.111,-0.001,3.496,0.064,-0.315,11.62,0.0,0.0,0.0,-5.123,-0.082,-0.193,0.0,-3.464,-12.243,0.454,10.01,1.976,2592.0,2707.5,20715.9,5546.8,1.881,36000.0,24000.0,0.0,6.8,91.76,31556.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7423.0,15794.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,59.298,59.298,35.797,35.797,23.502,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.411,0.833,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.008,0.0,14.411,9.053,0.639,0.0,0.0,0.333,1.0,9416.3,10702.6,10702.6,37.375,22.443,0.0,3.605,3.668,0.517,7.594,0.642,10.187,-12.602,0.0,0.0,0.0,8.334,-0.062,5.307,0.0,0.78,0.0,5.131,-8.891,-2.51,0.0,-0.155,-0.47,-0.054,2.754,-0.028,-1.377,11.752,0.0,0.0,0.0,-6.244,-0.057,-1.253,-3.675,-0.171,0.0,3.299,8.24,2.0,1354.7,998.0,11252.4,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps-power-outage.xml,33.137,33.137,28.192,28.192,4.944,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.099,0.522,7.326,0.0,0.0,3.619,0.0,0.267,0.0,0.0,0.0,0.0,1.688,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.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.632,0.0,9.111,7.3,0.562,0.0,0.0,0.5,0.5,9382.2,10441.6,10441.6,41.885,22.029,0.0,2.598,2.445,0.341,4.238,0.332,6.445,-12.497,0.0,0.0,0.0,3.632,-0.104,3.367,0.0,0.383,0.0,1.033,-6.255,-1.596,0.0,-0.193,-0.549,-0.064,2.5,-0.053,-1.655,11.861,0.0,0.0,0.0,-7.408,-0.057,-1.32,-6.178,-0.205,0.0,2.184,8.386,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps.xml,42.033,42.033,33.855,33.855,8.178,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,3.111,0.524,9.053,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,1.964,0.0,0.0,0.319,0.365,1.513,1.529,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.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,7.657,0.0,9.157,9.053,0.672,0.0,0.0,0.0,0.5,9378.7,10444.6,10444.6,31.99,22.032,0.0,2.907,2.8,0.392,5.382,0.419,7.495,-12.492,0.0,0.0,0.0,5.496,-0.058,3.852,0.0,0.58,0.0,1.756,-8.668,-2.486,0.0,-0.196,-0.553,-0.065,2.505,-0.053,-1.665,11.861,0.0,0.0,0.0,-7.339,-0.057,-1.322,-6.196,-0.206,0.0,2.193,8.386,2.023,1354.7,998.0,11253.7,2582.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -92,19 +92,19 @@ base-simcontrol-timestep-30-mins.xml,59.604,59.604,35.661,35.661,23.943,0.0,0.0, base.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19675.0,5934.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,0.0,0.0,0.0,0.0 house001.xml,86.976,86.976,46.491,46.491,40.485,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,15.452,4.241,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.397,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.459,0.0,17.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,19.024,0.0,49.979,10.404,2.678,0.0,0.0,0.0,0.0,1867.8,6837.1,6837.1,38.208,42.716,0.492,1.978,7.261,0.42,0.0,0.979,7.142,-4.994,0.0,0.0,0.479,1.221,-0.303,4.301,0.0,5.157,0.0,3.347,-5.668,-2.928,0.565,2.008,3.783,0.31,0.0,0.243,1.664,11.471,0.0,0.0,0.525,6.858,-0.289,-0.379,-1.822,-0.711,0.0,10.641,10.839,4.448,2104.4,2144.8,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,61220.0,24350.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,8478.0,111470.0,85246.0,9491.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3124.0,3780.0,6860.0,3501.0,2159.0,1200.0 house002.xml,68.384,68.384,40.431,40.431,27.953,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,14.492,3.319,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.479,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.739,0.0,39.708,7.517,2.89,0.0,0.0,0.0,0.0,1572.0,5480.1,5480.1,24.147,29.925,0.0,2.533,5.044,0.0,0.0,0.843,5.712,-4.099,0.0,0.0,0.0,1.73,-0.167,1.578,0.0,3.789,0.0,1.421,-4.319,-2.485,0.0,3.091,2.827,0.0,0.0,0.42,0.424,8.64,0.0,0.0,0.0,8.475,-0.161,-0.174,-1.342,-0.62,0.0,5.858,8.555,3.893,1610.8,1575.3,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47503.0,15295.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,4987.0,33038.0,14147.0,6700.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,1877.0,3320.0,3848.0,1750.0,1297.0,800.0 -house003.xml,68.971,68.971,39.94,39.94,29.031,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.746,3.478,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.799,0.0,13.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,12.808,0.0,41.522,7.517,2.69,0.0,0.0,0.0,0.0,1652.4,5578.5,5578.5,26.56,33.688,0.651,2.794,4.669,0.0,0.0,0.977,6.242,-3.958,0.0,0.0,0.0,1.054,-0.193,1.997,0.0,3.943,0.0,1.662,-4.504,-2.69,0.794,3.053,2.631,0.0,0.0,0.651,1.117,9.819,0.0,0.0,0.0,6.527,-0.185,-0.209,-1.394,-0.618,0.0,6.5,8.848,4.182,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48035.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41327.0,18337.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 -house004.xml,137.162,137.162,75.285,75.285,61.877,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,29.323,9.249,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.744,0.0,16.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.992,0.0,108.603,8.975,3.51,0.0,0.0,0.0,106.0,3077.9,7936.4,7936.4,55.097,52.116,0.127,5.496,11.334,0.0,0.0,1.248,13.697,-5.912,0.0,0.0,0.0,3.077,-0.796,4.941,0.0,6.269,0.0,7.248,-6.2,-3.846,0.198,6.711,11.692,0.0,0.0,0.52,7.516,17.689,0.0,0.0,0.0,18.807,-0.784,1.025,-0.0,1.853,0.0,21.4,14.58,7.71,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76099.0,20961.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52109.0,18518.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4612.0,1284.0,2328.0,1000.0 +house003.xml,68.971,68.971,39.94,39.94,29.031,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.746,3.478,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.799,0.0,13.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,12.808,0.0,41.522,7.517,2.69,0.0,0.0,0.0,0.0,1652.4,5578.9,5578.9,26.56,33.691,0.651,2.794,4.669,0.0,0.0,0.977,6.242,-3.958,0.0,0.0,0.0,1.054,-0.193,1.997,0.0,3.943,0.0,1.662,-4.504,-2.69,0.794,3.053,2.631,0.0,0.0,0.651,1.117,9.819,0.0,0.0,0.0,6.527,-0.185,-0.209,-1.394,-0.618,0.0,6.5,8.848,4.182,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48035.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41327.0,18337.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 +house004.xml,137.357,137.357,75.333,75.333,62.023,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,29.36,9.26,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.89,0.0,16.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,37.11,0.0,108.659,8.975,3.51,0.0,0.0,0.0,111.0,3078.3,7936.5,7936.5,55.117,52.098,0.128,5.497,11.341,0.0,0.0,1.249,13.711,-5.915,0.0,0.0,0.0,3.063,-0.798,5.045,0.0,6.275,0.0,7.268,-6.21,-3.853,0.198,6.712,11.699,0.0,0.0,0.521,7.53,17.685,0.0,0.0,0.0,18.793,-0.785,1.07,-0.0,1.859,0.0,21.42,14.57,7.703,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76099.0,20961.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52109.0,18518.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4612.0,1284.0,2328.0,1000.0 house005.xml,95.674,95.674,53.116,53.116,42.558,0.0,0.0,0.0,0.0,0.0,0.0,0.307,0.0,0.0,18.272,5.052,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.338,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.372,0.0,15.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,22.198,0.0,60.607,8.975,2.73,0.0,0.0,0.0,2.0,2101.7,7891.8,7891.8,46.474,53.405,0.0,3.026,8.178,0.268,0.0,1.357,9.417,-6.701,0.0,0.0,0.394,1.238,-0.401,5.06,0.0,5.088,0.0,4.496,-5.796,-3.627,0.0,2.994,4.311,0.214,0.0,0.282,2.414,15.358,0.0,0.0,0.416,7.529,-0.383,-0.458,-2.308,-0.708,0.0,14.554,11.103,5.523,1857.6,1860.1,12229.1,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,70733.0,26912.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,9418.0,64895.0,31849.0,13705.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3406.0,3550.0,6854.0,3501.0,2354.0,1000.0 -house006.xml,140.094,140.094,31.53,31.53,108.563,0.0,0.0,0.0,0.0,0.0,0.0,1.898,0.0,0.0,2.868,0.319,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.718,0.0,20.133,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.635,0.0,7.544,13.079,3.28,0.0,0.0,0.0,0.0,2056.0,2866.3,2866.3,40.812,15.273,0.0,4.26,22.269,1.99,37.087,1.864,17.625,-9.461,0.0,0.0,0.0,9.291,-0.35,9.534,0.0,4.366,0.0,0.0,-13.275,-6.376,0.0,0.176,-0.767,-0.043,2.86,-0.082,-0.518,4.316,0.0,0.0,0.0,-3.865,-0.349,-0.502,-1.553,-0.066,0.0,0.0,5.729,2.306,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 +house006.xml,139.144,139.144,31.52,31.52,107.624,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,2.877,0.321,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.779,0.0,20.132,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.731,0.0,7.6,13.079,3.28,0.0,0.0,0.0,0.0,2052.4,2856.4,2856.4,40.572,15.233,0.0,4.259,22.26,1.989,37.095,1.863,17.622,-9.439,0.0,0.0,0.0,9.274,-0.35,8.595,0.0,4.365,0.0,0.0,-13.249,-6.365,0.0,0.174,-0.782,-0.044,2.852,-0.083,-0.526,4.337,0.0,0.0,0.0,-3.886,-0.349,-0.433,-1.562,-0.069,0.0,0.0,5.755,2.317,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 house007.xml,139.988,139.988,33.595,33.595,106.394,0.0,0.0,0.0,0.0,0.0,0.0,1.664,0.0,0.0,2.46,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.729,0.0,23.278,3.047,3.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,72.245,0.0,5.557,15.626,3.272,0.0,0.0,0.0,0.0,2277.5,3040.8,3040.8,39.978,13.671,0.0,4.721,23.685,4.448,10.095,1.499,18.826,-9.395,0.0,0.0,0.076,11.569,-0.41,6.121,0.0,20.834,0.0,2.921,-15.58,-7.667,0.0,0.208,-0.661,-0.045,0.566,-0.043,-0.285,4.554,0.0,0.0,-0.009,-3.955,-0.405,-0.183,-1.312,-1.838,0.0,0.104,6.322,2.626,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44632.0,5474.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11844.0,1097.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 -house008.xml,184.58,184.58,38.878,38.878,145.702,0.0,0.0,0.0,0.0,0.0,0.0,2.521,0.0,0.0,3.528,0.513,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.269,0.0,26.371,3.452,3.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,105.788,0.0,10.041,18.122,3.216,0.0,0.0,0.0,0.0,2562.2,3850.6,3850.6,55.304,21.129,0.0,7.234,27.478,4.71,24.269,1.194,21.308,-7.825,0.0,0.0,1.277,17.851,-0.453,18.354,0.0,6.388,0.0,8.009,-16.744,-8.086,0.0,0.297,-1.099,-0.054,1.655,-0.086,-0.367,5.403,0.0,0.0,-0.107,-2.739,-0.453,-0.957,-1.735,-0.268,0.0,0.53,7.216,2.913,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68489.0,8922.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16083.0,279.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 +house008.xml,183.478,183.478,38.868,38.868,144.61,0.0,0.0,0.0,0.0,0.0,0.0,2.497,0.0,0.0,3.539,0.515,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.178,0.0,26.37,3.452,3.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,104.76,0.0,10.105,18.122,3.216,0.0,0.0,0.0,0.0,2558.2,3839.1,3839.1,55.239,21.074,0.0,7.235,27.484,4.711,24.277,1.195,21.311,-7.817,0.0,0.0,1.281,17.85,-0.454,17.346,0.0,6.389,0.0,7.941,-16.733,-8.082,0.0,0.296,-1.105,-0.055,1.651,-0.086,-0.37,5.411,0.0,0.0,-0.108,-2.747,-0.454,-0.881,-1.746,-0.27,0.0,0.532,7.226,2.917,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68489.0,8922.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16083.0,279.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 house009.xml,155.094,155.094,33.757,33.757,121.337,0.0,0.0,0.0,0.0,0.0,0.0,2.059,0.0,0.0,2.379,0.281,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.165,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.665,0.0,23.285,3.047,3.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,86.372,0.0,5.314,15.626,3.278,0.0,0.0,0.0,0.0,2312.1,3123.6,3123.6,44.436,14.749,0.0,5.104,28.404,4.318,13.019,2.253,18.878,-8.216,0.0,0.0,0.266,15.646,-0.429,8.747,0.0,21.442,0.0,0.0,-15.819,-7.76,0.0,0.245,-0.674,-0.025,0.717,-0.072,-0.165,4.563,0.0,0.0,-0.028,-4.067,-0.425,-0.25,-1.224,-1.764,0.0,0.0,6.058,2.506,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44988.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,10820.0,12507.0,0.0,6052.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 -house010.xml,155.103,155.103,37.251,37.251,117.852,0.0,0.0,0.0,0.0,0.0,0.0,1.896,0.0,0.0,2.824,0.258,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.419,0.0,26.371,3.452,3.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,79.549,0.0,7.134,18.122,3.217,0.0,0.0,0.0,0.0,2497.9,3366.2,3366.2,45.751,16.277,0.874,4.93,25.497,4.914,9.734,1.265,22.974,-9.232,0.0,0.0,0.921,11.41,-0.462,19.597,0.0,6.404,0.0,4.989,-16.776,-8.075,0.023,0.218,-0.716,-0.083,0.536,-0.071,-0.698,5.116,0.0,0.0,-0.048,-4.127,-0.459,-0.982,-1.62,-0.249,0.0,0.329,7.165,2.905,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12825.0,700.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 +house010.xml,154.006,154.006,37.241,37.241,116.765,0.0,0.0,0.0,0.0,0.0,0.0,1.871,0.0,0.0,2.836,0.259,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.332,0.0,26.371,3.452,3.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,78.525,0.0,7.197,18.122,3.216,0.0,0.0,0.0,0.0,2493.9,3356.3,3356.3,45.684,16.222,0.874,4.931,25.496,4.913,9.737,1.266,22.965,-9.214,0.0,0.0,0.924,11.4,-0.461,18.577,0.0,6.402,0.0,4.93,-16.743,-8.06,0.022,0.217,-0.731,-0.086,0.534,-0.072,-0.715,5.133,0.0,0.0,-0.048,-4.143,-0.457,-0.913,-1.632,-0.254,0.0,0.331,7.198,2.92,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12825.0,700.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 house011.xml,45.284,45.284,45.284,45.284,0.0,0.0,0.0,0.0,0.0,0.0,7.448,0.713,0.149,0.007,8.185,2.248,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.948,0.157,25.447,9.316,1.125,0.0,0.0,0.0,332.0,4924.4,3422.3,4924.4,18.655,16.085,0.0,2.676,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.446,-5.243,-2.073,0.0,1.681,1.307,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.569,8.132,2.829,0.0,1860.1,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,21497.0,8185.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 house012.xml,35.766,35.766,35.766,35.766,0.0,0.0,0.0,0.0,0.0,0.0,4.991,0.265,0.0,0.0,5.712,1.444,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.625,0.0,15.949,7.775,1.158,0.0,0.0,0.0,0.0,2993.8,2816.8,2993.8,11.339,11.448,0.0,2.373,4.775,0.0,0.0,0.632,2.7,-1.856,0.0,0.0,2.027,0.0,-0.272,1.658,0.0,4.397,0.0,0.342,-4.206,-1.936,0.0,1.734,1.133,0.0,0.0,-0.027,0.502,3.486,0.0,0.0,1.579,0.0,-0.272,-0.148,-0.263,-0.688,0.0,0.271,6.26,2.439,0.0,1575.3,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,12004.0,636.0,2706.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1024.0,3320.0,2498.0,370.0,1328.0,800.0 -house013.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2285.9,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.239,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 -house014.xml,31.575,31.575,31.575,31.575,0.0,0.0,0.0,0.0,0.0,0.0,3.541,0.217,0.008,0.0,4.143,1.35,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.981,0.008,16.203,6.844,0.598,0.0,0.0,0.0,0.0,2933.5,2375.8,2933.5,11.204,10.686,0.0,1.693,3.689,0.0,0.0,0.586,3.033,-2.498,0.0,0.0,2.189,0.0,-0.258,1.731,0.0,1.121,0.0,1.587,-3.313,-1.604,0.0,1.134,0.56,0.0,0.0,-0.065,0.567,4.73,0.0,0.0,0.621,0.0,-0.257,-0.239,-0.371,-0.252,0.0,1.626,5.792,2.447,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1682.0,312.0,770.0,600.0 -house015.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2285.9,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.239,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house013.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.893,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house014.xml,31.638,31.638,31.638,31.638,0.0,0.0,0.0,0.0,0.0,0.0,3.597,0.206,0.008,0.0,4.156,1.356,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.125,0.008,16.187,6.844,0.598,0.0,0.0,0.0,0.0,2971.0,2388.9,2971.0,11.223,10.742,0.0,1.698,3.703,0.0,0.0,0.588,3.045,-2.522,0.0,0.0,2.2,0.0,-0.256,1.947,0.0,1.126,0.0,1.535,-3.342,-1.62,0.0,1.14,0.578,0.0,0.0,-0.062,0.582,4.706,0.0,0.0,0.631,0.0,-0.256,-0.253,-0.367,-0.246,0.0,1.628,5.763,2.431,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1682.0,312.0,770.0,600.0 +house015.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.893,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13246.0,3785.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1618.0,312.0,706.0,600.0 house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,6.564,0.0,15.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,25.676,0.2,11.075,10.47,0.0,0.0,0.0,2.0,11.0,7490.7,3805.5,7490.7,43.399,19.024,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852,1758.9,1746.2,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,27224.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5286.0,18632.0,0.0,9139.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,92.628,92.628,27.628,27.628,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.394,0.588,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.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,42.966,0.0,9.661,11.132,3.429,0.0,0.0,154.0,94.0,1752.9,3654.3,3654.3,60.37,19.61,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676,1778.6,1769.0,13969.4,4664.0,0.0,60000.0,24000.0,0.0,16.16,89.24,36715.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11612.0,16973.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,0.0,4300.8,2813.2,4300.8,20.203,11.09,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167,1341.8,1265.0,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,20934.0,7542.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,12944.0,2711.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2870.0,1359.0,712.0,800.0 @@ -129,7 +129,7 @@ house036.xml,83.077,83.077,25.512,25.512,57.565,0.0,0.0,0.0,0.0,0.0,0.0,0.997,0. house037.xml,89.347,89.347,21.69,21.69,0.0,67.658,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.0,0.61,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.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,51.513,0.0,16.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,38.243,0.0,0.0,7.424,0.0,0.0,0.0,0.0,0.0,1464.6,1261.1,1464.6,29.92,0.0,0.0,16.726,11.32,0.0,0.0,1.564,7.658,-10.359,0.0,0.0,6.485,0.0,-0.377,14.717,0.0,0.46,0.0,0.0,-6.013,-3.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,1341.8,1265.0,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,26002.0,0.0,7077.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,126.274,126.274,50.686,50.686,75.588,0.0,0.0,0.0,0.0,0.0,0.0,1.109,0.0,0.0,13.498,2.497,0.0,0.0,0.0,6.904,0.315,0.625,0.0,0.0,0.0,0.0,1.429,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,6.092,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,51.568,0.0,24.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,41.305,0.0,30.435,14.704,4.602,0.0,0.0,0.0,215.0,2354.5,5805.1,5805.1,48.416,27.559,0.0,3.648,14.874,0.65,4.429,0.81,12.438,-10.449,0.0,0.0,1.856,2.334,-0.09,22.508,0.002,0.594,0.0,0.0,-8.966,-3.828,0.0,0.85,2.636,0.142,2.236,0.02,0.963,12.735,0.0,0.0,0.337,-0.579,-0.079,-0.53,-0.333,0.006,0.0,0.0,8.232,3.077,2176.0,2227.4,14642.1,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,30970.0,0.0,6993.0,0.0,362.0,9766.0,0.0,640.0,734.0,1706.0,10769.0,18185.0,0.0,9122.0,0.0,170.0,2306.0,0.0,-123.0,0.0,1243.0,1457.0,4010.0,3753.0,0.0,2353.0,1400.0 house039.xml,101.512,101.512,23.992,23.992,77.52,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,5.181,0.0,0.0,4.408,0.239,0.418,0.0,0.0,0.0,0.0,1.674,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.655,4.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.832,0.0,0.0,0.0,3.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,47.006,0.0,0.0,14.261,1.139,0.0,0.0,0.0,0.0,1705.9,1586.2,1705.9,50.362,0.0,0.0,14.176,5.359,0.0,0.0,2.503,16.085,-13.551,0.0,0.0,13.942,0.0,-0.055,13.236,0.0,0.554,0.0,0.0,-2.832,-2.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,2176.0,2227.4,17537.6,5211.7,0.0,87000.0,0.0,0.0,16.16,89.24,41752.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6185.0,0.0,8806.0,10883.0,22993.0,0.0,9886.0,0.0,683.0,526.0,0.0,690.0,0.0,6418.0,1470.0,3320.0,3173.0,0.0,2373.0,800.0 -house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.969,0.0,0.0,7.996,5.526,0.0,0.0,0.0,0.0,1818.3,1304.9,1818.3,62.433,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44724.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11594.0,23971.0,0.0,8227.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 +house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.969,0.0,0.0,7.996,5.526,0.0,0.0,0.0,0.0,1818.3,1304.9,1818.3,62.433,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44724.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11594.0,23970.0,0.0,8227.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,260.497,260.497,46.803,46.803,213.693,0.0,0.0,0.0,0.0,0.0,0.0,4.203,0.0,0.0,2.469,0.228,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.175,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.138,0.0,26.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.334,0.0,4.305,15.626,5.047,0.0,0.0,113.0,0.0,3254.0,5159.0,5159.0,77.829,24.679,0.0,11.243,45.009,3.515,35.002,3.139,38.839,-20.775,0.0,0.0,4.603,17.349,-0.612,64.092,0.0,2.763,0.0,0.0,-18.492,-10.888,0.0,0.139,-2.016,-0.113,1.736,-0.211,-2.727,9.453,0.0,0.0,-0.342,-5.175,-0.61,-3.308,-1.927,-0.247,0.0,0.0,6.717,3.047,1857.6,1860.1,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,109895.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,31239.0,25390.0,0.0,15296.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 house042.xml,232.637,232.637,39.795,39.795,192.842,0.0,0.0,0.0,0.0,0.0,0.0,3.946,0.0,0.0,1.717,0.06,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.404,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.58,0.0,2.527,15.626,3.233,0.0,0.0,0.0,0.0,2711.0,3497.4,3497.4,88.501,19.177,0.0,9.163,39.814,4.009,43.685,2.648,34.199,-19.431,0.0,0.0,2.447,14.535,-0.346,56.283,0.0,1.748,0.0,0.0,-17.458,-7.569,0.0,0.226,-1.385,-0.052,2.932,-0.142,-2.897,5.785,0.0,0.0,-0.259,-4.859,-0.342,-2.691,-1.169,-0.137,0.0,0.0,5.603,1.965,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,96883.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,27501.0,15574.0,0.0,5937.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 house043.xml,159.524,159.524,29.691,29.691,129.832,0.0,0.0,0.0,0.0,0.0,0.0,2.496,0.0,0.0,1.877,0.098,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.933,0.0,19.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.711,0.0,2.569,13.079,2.212,0.0,0.0,0.0,0.0,1956.4,3029.6,3029.6,54.812,13.675,0.0,3.162,23.178,2.292,33.736,5.573,22.928,-10.012,0.0,0.0,0.549,9.918,-0.317,28.975,0.0,1.575,0.0,0.0,-13.074,-5.127,0.0,0.046,-0.755,-0.085,1.782,-0.334,-1.953,4.655,0.0,0.0,-0.067,-3.531,-0.317,-1.511,-1.04,-0.139,0.0,0.0,4.467,1.431,1610.8,1575.4,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,65558.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16233.0,14430.0,0.0,7218.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,429.0,3320.0,1456.0,0.0,656.0,800.0 @@ -137,6 +137,6 @@ house044.xml,227.742,227.742,43.242,43.242,184.5,0.0,0.0,0.0,0.0,0.0,0.0,4.742,0 house045.xml,152.536,152.536,34.866,34.866,117.67,0.0,0.0,0.0,0.0,0.0,0.0,2.788,0.0,0.0,2.269,0.261,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.141,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.214,0.0,22.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,88.461,0.0,3.641,13.079,4.371,0.0,0.0,0.0,0.0,2334.1,3370.1,3370.1,47.084,13.395,3.573,3.08,15.119,2.29,32.746,1.135,17.716,-12.23,0.968,-0.414,0.086,12.636,-0.264,20.648,0.0,10.929,0.0,0.0,-13.33,-6.949,0.0,0.017,-1.029,-0.116,1.069,-0.082,-1.244,6.238,-0.061,0.4,-0.012,-3.972,-0.264,-1.122,-1.877,-1.218,0.0,0.0,4.895,2.111,1610.8,1575.4,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,56820.0,0.0,8558.0,455.0,398.0,28556.0,1494.0,31.0,2749.0,1367.0,13211.0,12890.0,0.0,7147.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,407.0,3320.0,1423.0,0.0,623.0,800.0 house046.xml,25.573,25.573,25.573,25.573,0.0,0.0,0.0,0.0,0.0,0.0,5.736,0.554,0.426,0.017,3.827,0.963,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.666,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.344,0.443,12.834,4.303,0.618,0.0,0.0,0.0,1.0,4118.0,2456.1,4118.0,17.093,13.36,0.0,2.519,3.836,0.0,0.0,0.329,2.242,-1.678,0.0,0.0,-0.158,0.0,-0.308,8.911,0.0,0.38,0.0,3.069,-3.269,-0.481,0.0,1.294,2.564,0.0,0.0,0.028,0.803,2.422,0.0,0.0,-0.157,0.0,-0.306,-0.42,-0.218,0.023,0.0,1.871,4.427,0.548,596.8,442.4,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19947.0,4038.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,9476.0,15225.0,3925.0,3183.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1896.0,2860.0,3341.0,483.0,2458.0,400.0 house047.xml,21.532,21.532,14.849,14.849,6.683,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,1.073,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.335,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.496,0.0,1.506,4.202,0.0,0.0,0.0,0.0,0.0,872.9,989.4,989.4,4.818,2.615,0.0,-0.001,0.771,0.126,0.0,0.0,1.725,-0.562,0.0,0.0,0.0,1.363,-0.013,1.575,0.0,4.983,0.0,0.219,-3.202,-0.511,0.0,-0.001,0.108,0.034,0.0,0.0,-0.043,0.795,0.0,0.0,0.0,-1.085,-0.013,-0.216,-0.368,-1.32,0.0,-0.0,3.204,0.41,251.7,442.4,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7413.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,3785.0,4112.0,0.0,478.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,92.04,92.04,39.344,39.344,52.697,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,12.626,3.699,0.0,0.0,0.0,3.689,0.085,0.499,3.033,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.764,0.0,12.592,0.0,3.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,29.758,0.0,51.767,7.249,2.658,0.0,0.0,0.0,0.0,1514.9,5614.8,5614.8,42.48,34.051,1.023,2.627,11.996,0.0,0.0,0.804,4.608,-2.543,0.0,0.0,0.056,1.968,-0.572,6.806,0.0,4.214,0.0,6.499,-6.341,-1.49,1.322,1.001,9.312,0.0,0.0,0.567,3.689,4.25,0.0,0.0,0.075,10.085,-0.56,0.536,-0.622,1.976,0.0,7.0,11.153,2.199,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29599.0,8414.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4490.0,1126.0,2365.0,1000.0 -house049.xml,36.164,36.164,32.666,32.666,3.498,0.0,0.0,0.0,0.0,0.0,8.24,0.05,0.0,0.0,7.625,0.191,2.645,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.952,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.359,0.0,30.615,4.258,1.319,0.0,0.0,0.0,133.0,4683.0,2827.5,4683.0,13.283,15.961,0.0,1.364,4.328,0.0,0.0,0.0,4.25,-5.816,0.0,0.0,0.0,1.213,-0.089,2.666,0.0,1.852,0.0,0.0,-2.005,-0.473,0.0,1.699,7.248,0.0,0.0,0.0,3.034,9.851,0.0,0.0,0.0,3.487,-0.088,-0.013,-2.938,0.719,0.0,0.0,7.157,1.0,728.6,567.6,7487.5,928.6,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,52.477,52.477,21.694,21.694,30.782,0.0,0.0,0.0,0.0,0.0,0.0,0.288,0.0,0.0,1.913,0.324,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.18,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.867,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.475,0.0,5.159,8.571,0.0,0.0,0.0,0.0,0.0,1104.2,2906.4,2906.4,11.283,17.416,0.0,4.13,6.499,0.0,0.0,2.029,5.128,-4.19,0.0,0.0,4.893,0.0,-0.158,2.662,0.0,3.672,0.0,2.015,-9.065,-1.209,0.0,-0.252,-0.23,0.0,0.0,-0.366,0.342,4.046,0.0,0.0,-0.915,0.0,-0.157,-0.518,-2.474,-0.708,0.0,0.594,5.246,0.573,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7747.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17924.0,5170.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,723.0,0.0,-77.0,800.0 +house048.xml,92.251,92.251,39.372,39.372,52.879,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,12.65,3.706,0.0,0.0,0.0,3.689,0.085,0.499,3.029,0.0,0.0,0.0,2.32,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.947,0.0,12.592,0.0,3.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,29.905,0.0,51.819,7.249,2.658,0.0,0.0,0.0,0.0,1514.7,5614.8,5614.8,42.507,34.056,1.023,2.628,11.997,0.0,0.0,0.804,4.609,-2.544,0.0,0.0,0.056,1.968,-0.571,6.943,0.0,4.218,0.0,6.511,-6.345,-1.492,1.322,1.001,9.313,0.0,0.0,0.567,3.691,4.249,0.0,0.0,0.075,10.086,-0.559,0.572,-0.621,1.977,0.0,7.014,11.148,2.197,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29599.0,8414.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4490.0,1126.0,2365.0,1000.0 +house049.xml,35.929,35.929,32.431,32.431,3.498,0.0,0.0,0.0,0.0,0.0,8.056,0.049,0.0,0.0,7.579,0.189,2.642,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.953,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.192,0.0,30.477,4.258,1.319,0.0,0.0,0.0,116.0,4661.1,2827.2,4661.1,13.204,15.962,0.0,1.361,4.324,0.0,0.0,0.0,4.245,-5.804,0.0,0.0,0.0,1.22,-0.089,2.492,0.0,1.85,0.0,0.0,-2.002,-0.472,0.0,1.692,7.231,0.0,0.0,0.0,3.016,9.863,0.0,0.0,0.0,3.484,-0.089,-0.087,-2.956,0.712,0.0,0.0,7.159,1.001,728.6,567.6,7489.4,928.8,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,52.092,52.092,21.703,21.703,30.389,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,1.924,0.327,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.182,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.474,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.091,0.0,5.21,8.571,0.0,0.0,0.0,0.0,0.0,1103.2,2893.5,2893.5,11.12,17.322,0.0,4.132,6.505,0.0,0.0,2.03,5.143,-4.159,0.0,0.0,4.886,0.0,-0.169,2.253,0.0,3.674,0.0,1.971,-9.039,-1.205,0.0,-0.26,-0.242,0.0,0.0,-0.37,0.342,4.077,0.0,0.0,-0.934,0.0,-0.168,-0.441,-2.495,-0.716,0.0,0.596,5.273,0.576,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7747.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17924.0,5170.0,5894.0,0.0,284.0,459.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_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index d74ceaddb..4d53dd028 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -16,29 +16,29 @@ base-location-honolulu-hi.xml,4393.18,144.0,4249.18,0.0,4393.18,0.0,0.0,0.0,0.0, base-location-miami-fl.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-location-phoenix-az.xml,1624.67,144.0,1336.63,0.0,1480.63,144.0,0.04,144.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-portland-or.xml,1205.85,144.0,811.41,0.0,955.41,144.0,106.44,250.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-balanced.xml,2120.75,144.0,1375.12,0.0,1519.12,144.0,457.63,601.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-mechvent-balanced.xml,2111.83,144.0,1374.67,0.0,1518.67,144.0,449.16,593.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-mechvent-bath-kitchen-fans.xml,1866.04,144.0,1309.87,0.0,1453.87,144.0,268.17,412.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-cfis-airflow-fraction-zero.xml,2047.52,144.0,1371.23,0.0,1515.23,144.0,388.29,532.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-mechvent-cfis-airflow-fraction-zero.xml,2048.29,144.0,1371.23,0.0,1515.23,144.0,389.06,533.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-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,1378.03,144.0,1234.03,0.0,1378.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-mechvent-cfis-supplemental-fan-exhaust.xml,1983.32,144.0,1321.75,0.0,1465.75,144.0,373.57,517.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-cfis-supplemental-fan-supply.xml,2006.07,144.0,1322.95,0.0,1466.95,144.0,395.12,539.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-cfis.xml,2058.15,144.0,1369.08,0.0,1513.08,144.0,401.07,545.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-mechvent-erv-atre-asre.xml,1966.05,144.0,1375.15,0.0,1519.15,144.0,302.9,446.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1966.08,144.0,1375.15,0.0,1519.15,144.0,302.93,446.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-evap-cooler-only-ducted.xml,1378.02,144.0,1234.02,0.0,1378.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,1989.01,144.0,1321.84,0.0,1465.84,144.0,379.17,523.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-cfis-supplemental-fan-supply.xml,2006.86,144.0,1322.98,0.0,1466.98,144.0,395.88,539.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-cfis.xml,2058.89,144.0,1369.08,0.0,1513.08,144.0,401.81,545.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-mechvent-erv-atre-asre.xml,1957.58,144.0,1374.8,0.0,1518.8,144.0,294.78,438.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-erv.xml,1957.62,144.0,1374.8,0.0,1518.8,144.0,294.82,438.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-mechvent-exhaust-rated-flow-rate.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-exhaust.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-hrv-asre.xml,1966.15,144.0,1375.27,0.0,1519.27,144.0,302.88,446.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.xml,1966.18,144.0,1375.27,0.0,1519.27,144.0,302.91,446.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-multiple.xml,2145.1,144.0,1390.1,0.0,1534.1,144.0,467.0,611.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2019.84,144.0,1340.56,0.0,1484.56,144.0,391.28,535.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-mechvent-hrv-asre.xml,1957.68,144.0,1374.92,0.0,1518.92,144.0,294.76,438.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-hrv.xml,1957.72,144.0,1374.92,0.0,1518.92,144.0,294.8,438.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-mechvent-multiple.xml,2149.26,144.0,1390.02,0.0,1534.02,144.0,471.24,615.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-supply.xml,2020.64,144.0,1340.6,0.0,1484.6,144.0,392.04,536.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-mechvent-whole-house-fan.xml,1785.03,144.0,1244.85,0.0,1388.85,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-misc-additional-properties.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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,688.61,108.0,778.02,-591.68,294.34,144.0,250.27,394.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,684.21,108.0,742.14,-560.2,289.94,144.0,250.27,394.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,648.23,108.0,701.17,-555.2,253.96,144.0,250.27,394.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 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,857.85,144.0,1306.32,-986.74,463.58,144.0,250.27,394.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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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 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,634.61,465.0,1251.79,-1474.07,242.73,132.0,259.88,391.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,94.8,465.0,1251.79,-2013.87,-297.08,132.0,259.88,391.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,-328.02,210.0,1251.79,-2181.7,-719.9,132.0,259.88,391.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-misc-bills.xml,1799.67,144.0,1251.79,0.0,1395.79,144.0,259.88,403.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.3,144.0,1145.2,-710.1,579.1,144.0,350.2,494.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-misc-defaults.xml,1077.62,144.0,1146.11,-710.1,580.01,144.0,353.61,497.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-misc-emissions.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-misc-generators-battery-scheduled.xml,2294.79,144.0,1369.2,0.0,1513.2,144.0,340.31,484.31,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,2231.91,144.0,1306.32,0.0,1450.32,144.0,340.31,484.31,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 @@ -66,7 +66,7 @@ base-residents-0.xml,911.7,144.0,261.99,0.0,405.99,144.0,361.71,505.71,0.0,0.0,0 base-residents-1-misc-loads-large-uncommon.xml,2780.65,144.0,1895.15,0.0,2039.15,144.0,447.15,591.15,0.0,0.0,0.0,0.0,70.84,70.84,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2514.72,144.0,1806.12,0.0,1950.12,144.0,249.82,393.82,0.0,91.27,91.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.51,79.51,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1589.94,144.0,1034.43,0.0,1178.43,144.0,267.51,411.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-residents-5.xml,1327.14,144.0,1451.58,-743.14,852.44,144.0,330.7,474.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-5.xml,1331.46,144.0,1452.55,-743.14,853.41,144.0,334.05,478.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-schedules-detailed-all-10-mins.xml,1850.71,144.0,1313.75,0.0,1457.75,144.0,248.96,392.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-mixed-timesteps-power-outage.xml,1375.05,144.0,1034.67,0.0,1178.67,144.0,52.38,196.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-schedules-detailed-mixed-timesteps.xml,1617.13,144.0,1242.5,0.0,1386.5,144.0,86.63,230.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 @@ -93,18 +93,18 @@ base.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0 house001.xml,2409.1,144.0,1701.52,0.0,1845.52,144.0,419.58,563.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 house002.xml,2057.43,144.0,1479.73,0.0,1623.73,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 house003.xml,2050.64,144.0,1461.77,0.0,1605.77,144.0,300.87,444.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 -house004.xml,3684.62,144.0,2755.34,0.0,2899.34,144.0,641.28,785.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 +house004.xml,3687.91,144.0,2757.12,0.0,2901.12,144.0,642.79,786.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 house005.xml,2673.05,144.0,1943.99,0.0,2087.99,144.0,441.06,585.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 -house006.xml,2279.57,144.0,1172.74,0.0,1316.74,144.0,818.83,962.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 +house006.xml,2272.1,144.0,1172.36,0.0,1316.36,144.0,811.74,955.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 house007.xml,2339.99,144.0,1249.52,0.0,1393.52,144.0,802.47,946.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 -house008.xml,2832.99,144.0,1446.05,0.0,1590.05,144.0,1098.94,1242.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 +house008.xml,2824.37,144.0,1445.66,0.0,1589.66,144.0,1090.71,1234.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 house009.xml,2458.73,144.0,1255.56,0.0,1399.56,144.0,915.17,1059.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 -house010.xml,2562.42,144.0,1385.53,0.0,1529.53,144.0,888.89,1032.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 +house010.xml,2553.84,144.0,1385.15,0.0,1529.15,144.0,880.69,1024.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 house011.xml,1604.99,144.0,1460.99,0.0,1604.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 house012.xml,1297.91,144.0,1153.91,0.0,1297.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 -house013.xml,1129.24,144.0,985.24,0.0,1129.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 -house014.xml,1162.7,144.0,1018.7,0.0,1162.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 -house015.xml,1129.24,144.0,985.24,0.0,1129.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 +house013.xml,1132.42,144.0,988.42,0.0,1132.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 +house014.xml,1164.72,144.0,1020.72,0.0,1164.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 +house015.xml,1132.42,144.0,988.42,0.0,1132.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 house016.xml,2711.32,144.0,1759.27,0.0,1903.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,808.05,808.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house017.xml,2104.95,144.0,1008.57,0.0,1152.57,144.0,808.38,952.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 house018.xml,1736.63,144.0,1592.63,0.0,1736.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 @@ -137,6 +137,6 @@ house044.xml,3287.93,144.0,1608.35,0.0,1752.35,144.0,1391.58,1535.58,0.0,0.0,0.0 house045.xml,2472.35,144.0,1296.83,0.0,1440.83,144.0,887.52,1031.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 house046.xml,969.05,144.0,825.05,0.0,969.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 house047.xml,1015.71,144.0,657.22,0.0,801.22,144.0,70.49,214.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 -house048.xml,2274.06,144.0,1439.93,0.0,1583.93,144.0,546.13,690.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 -house049.xml,1510.78,144.0,1199.64,0.0,1343.64,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,1249.06,144.0,647.27,0.0,791.27,144.0,313.79,457.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 +house048.xml,2277.0,144.0,1440.98,0.0,1584.98,144.0,548.02,692.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 +house049.xml,1502.14,144.0,1191.0,0.0,1335.0,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house050.xml,1245.3,144.0,647.52,0.0,791.52,144.0,309.78,453.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 From de23fcb5288d9cd2391eaeda5d1c437ca9b1cadb Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 23 Feb 2024 11:17:08 -0700 Subject: [PATCH 23/35] Allow optional AverageCeilingHeight input; bugfix for Rated Home supplemental balanced vent. --- Changelog.md | 1 + docs/source/workflow_inputs.rst | 20 +++++++++++--------- rulesets/resources/301ruleset.rb | 23 +++++++++++++++++++---- rulesets/resources/301validator.xml | 1 + rulesets/tests/test_ventilation.rb | 6 +++--- 5 files changed, 35 insertions(+), 16 deletions(-) diff --git a/Changelog.md b/Changelog.md index a06559e12..15ad997fa 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ __New Features__ - The `ElectricAuxiliaryEnergy` input for boilers is no longer used. - **Breaking change**: ERI_Results.csv and ERI_Worksheet.csv combined into a single ERI_Results.csv that better reflects the current ERI calculation components; additional fields (e.g., PEfrac) added and a few renamed/removed. - **Breaking change**: Each `VentilationFan` must have one (and only one) `UsedFor...` element set to true. +- Allows `AverageCeilingHeight` or `ConditionedBuildingVolume` to be optionally provided for infiltration calculations. - Ground source heat pump model enhancements. - Allows `Roof/RadiantBarrier` to be omitted; defaults to false. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index cdfb90e4f..c224e0324 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -135,18 +135,20 @@ HPXML Building Construction Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction``. - ======================================= ======== ========= ================================= ======== ======== ======================================================================= - Element Type Units Constraints Required Default Notes - ======================================= ======== ========= ================================= ======== ======== ======================================================================= - ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit - ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement) - ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) - ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms - ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary - ======================================= ======== ========= ================================= ======== ======== ======================================================================= + ============================================================= ======== ========= ================================= ======== ======== ======================================================================= + Element Type Units Constraints Required Default Notes + ============================================================= ======== ========= ================================= ======== ======== ======================================================================= + ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit + ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement) + ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) + ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms + ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary + ``AverageCeilingHeight`` and/or ``ConditionedBuildingVolume`` double ft or ft3 > 0 No See [#]_ Ceiling/volume height within conditioned space boundary + ============================================================= ======== ========= ================================= ======== ======== ======================================================================= .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", or "apartment unit". For ENERGY STAR, "single-family detached" may only be used for SF versions and "apartment unit" may only be used for MF versions; "single-family attached" may be used for all versions. + .. [#] If AverageCeilingHeight not provided, defaults to ConditionedBuildingVolume / ConditionedFloorArea if ConditionedBuildingVolume is provided, else 8.2. HPXML Weather Station --------------------- diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index e02f23e07..01102ab87 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -271,8 +271,8 @@ def self.remove_surfaces_from_iad(orig_bldg) def self.set_summary_reference(orig_bldg, new_bldg) # Global variables + apply_default_average_ceiling_height(orig_bldg) @bldg_type = orig_bldg.building_construction.residential_facility_type - orig_bldg.building_construction.average_ceiling_height = 8.202 @cfa = orig_bldg.building_construction.conditioned_floor_area @nbeds = orig_bldg.building_construction.number_of_bedrooms @ncfl = orig_bldg.building_construction.number_of_conditioned_floors @@ -286,13 +286,15 @@ def self.set_summary_reference(orig_bldg, new_bldg) new_bldg.building_construction.number_of_bedrooms = orig_bldg.building_construction.number_of_bedrooms new_bldg.building_construction.conditioned_floor_area = orig_bldg.building_construction.conditioned_floor_area new_bldg.building_construction.residential_facility_type = @bldg_type + new_bldg.building_construction.average_ceiling_height = orig_bldg.building_construction.average_ceiling_height + new_bldg.building_construction.conditioned_building_volume = orig_bldg.building_construction.conditioned_building_volume new_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = false end def self.set_summary_rated(orig_bldg, new_bldg) # Global variables + apply_default_average_ceiling_height(orig_bldg) @bldg_type = orig_bldg.building_construction.residential_facility_type - orig_bldg.building_construction.average_ceiling_height = 8.202 @cfa = orig_bldg.building_construction.conditioned_floor_area @nbeds = orig_bldg.building_construction.number_of_bedrooms @ncfl = orig_bldg.building_construction.number_of_conditioned_floors @@ -306,13 +308,15 @@ def self.set_summary_rated(orig_bldg, new_bldg) new_bldg.building_construction.number_of_bedrooms = orig_bldg.building_construction.number_of_bedrooms new_bldg.building_construction.conditioned_floor_area = orig_bldg.building_construction.conditioned_floor_area new_bldg.building_construction.residential_facility_type = @bldg_type + new_bldg.building_construction.average_ceiling_height = orig_bldg.building_construction.average_ceiling_height + new_bldg.building_construction.conditioned_building_volume = orig_bldg.building_construction.conditioned_building_volume new_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = false end def self.set_summary_iad(orig_bldg, new_bldg) # Global variables + apply_default_average_ceiling_height(orig_bldg) @bldg_type = orig_bldg.building_construction.residential_facility_type - orig_bldg.building_construction.average_ceiling_height = 8.202 @cfa = 2400.0 @nbeds = 3 @ncfl = 2.0 @@ -326,6 +330,7 @@ def self.set_summary_iad(orig_bldg, new_bldg) new_bldg.building_construction.number_of_bedrooms = @nbeds new_bldg.building_construction.conditioned_floor_area = @cfa new_bldg.building_construction.residential_facility_type = @bldg_type + new_bldg.building_construction.average_ceiling_height = 8.5 new_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = false end @@ -2453,7 +2458,7 @@ def self.calc_rated_home_q_fans_by_system(orig_bldg, all_mech_vent_fans) # This should only happen when the home has no mechanical ventilation, because # otherwise the existing ventilation fans would have been increased instead. if min_q_fan > q_fans.values.sum - q_fan_bal_remain = min_q_fan - q_fans.values.sum + q_fan_bal_remain = calc_rated_home_qfan(orig_bldg, true, 0.0) end end @@ -3084,3 +3089,13 @@ def calc_area_weighted_avg(surfaces, attribute, use_inverse: false, backup_value fail "Unable to calculate area-weighted avg for #{attribute}." end + +def apply_default_average_ceiling_height(orig_bldg) + if orig_bldg.building_construction.average_ceiling_height.nil? + if not orig_bldg.building_construction.conditioned_building_volume.nil? + orig_bldg.building_construction.average_ceiling_height = (orig_bldg.building_construction.conditioned_building_volume / orig_bldg.building_construction.conditioned_floor_area).round(2) + else + orig_bldg.building_construction.average_ceiling_height = 8.2 + end + end +end diff --git a/rulesets/resources/301validator.xml b/rulesets/resources/301validator.xml index 15965005f..6a8ed60fe 100644 --- a/rulesets/resources/301validator.xml +++ b/rulesets/resources/301validator.xml @@ -224,6 +224,7 @@ Expected NumberofBedrooms to be greater than or equal to 1 Expected 1 element(s) for xpath: ConditionedFloorArea Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. + Expected 0 or more element(s) for xpath: ConditionedBuildingVolume | AverageCeilingHeight diff --git a/rulesets/tests/test_ventilation.rb b/rulesets/tests/test_ventilation.rb index 71d38bbe6..af1ef3cc9 100644 --- a/rulesets/tests/test_ventilation.rb +++ b/rulesets/tests/test_ventilation.rb @@ -29,7 +29,7 @@ def test_mech_vent_none if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 27.0, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy elsif [Constants.CalcTypeERIRatedHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 5.6, hours: 24, power: 3.9 }]) # Supplemental balanced ventilation to meet total airflow requirement + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 0.3, hours: 24, power: 0.2 }]) # Supplemental balanced ventilation to meet total airflow requirement elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type @@ -68,7 +68,7 @@ def test_mech_vent_none end end - def test_mech_vent_attached_housing + def test_mech_vent_none_attached_housing hpxml_name = 'base-bldgtype-mf-unit.xml' _all_calc_types.each do |calc_type| @@ -76,7 +76,7 @@ def test_mech_vent_attached_housing if [Constants.CalcTypeERIReferenceHome, Constants.CalcTypeCO2eReferenceHome].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 31.1, hours: 24, power: 0.0 }]) # Should have airflow but not fan energy elsif [Constants.CalcTypeERIRatedHome].include? calc_type - _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 39.1, hours: 24, power: 27.3 }]) # Supplemental balanced ventilation to meet total airflow requirement + _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 20.1, hours: 24, power: 14.1 }]) # Supplemental balanced ventilation to meet total airflow requirement elsif [Constants.CalcTypeERIIndexAdjustmentDesign].include? calc_type _check_mech_vent(hpxml_bldg, [{ fantype: HPXML::MechVentTypeBalanced, flowrate: 60.1, hours: 24, power: 42.0 }]) elsif [Constants.CalcTypeERIIndexAdjustmentReferenceHome].include? calc_type From a7511f6835e3a9374fb135c7a264424504cc199e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 23 Feb 2024 19:47:55 +0000 Subject: [PATCH 24/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 4 +- ...T_Test_4.2_HERS_AutoGen_Reference_Home.csv | 2 +- .../RESNET_Test_4.3_HERS_Method.csv | 10 +- .../RESNET_Test_4.6_Hot_Water.csv | 20 +- ...r_HERS_AutoGen_Reference_Home_301_2014.csv | 2 +- ...n_Reference_Home_301_2019_PreAddendumA.csv | 2 +- ...ther_HERS_Method_301_2014_PreAddendumE.csv | 10 +- ...ther_HERS_Method_301_2019_PreAddendumA.csv | 10 +- workflow/tests/base_results/real_homes.csv | 176 ++++++++-------- workflow/tests/base_results/sample_files1.csv | 192 ++++++++--------- workflow/tests/base_results/sample_files2.csv | 194 +++++++++--------- 11 files changed, 311 insertions(+), 311 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index f38162bcb..8dcbd29d7 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,14 +1,14 @@ [Version] XML,Reference Home ERI,Rated Home ERI [MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.2,67.2 [MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.66,74.66 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.4,73.4 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.39,73.39 [MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.14,62.14 [MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,64.18,64.18 [MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.55,62.55 [MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,51.62,51.62 [MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.37,49.37 [MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.22,60.22 -[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.41,73.41 +[SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.4,73.4 [SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.27,81.27 [SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.51,71.51 [SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.49,64.49 diff --git a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv index 1363b5f8b..66905f240 100644 --- a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv +++ b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,223.88,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999829,1.0000045,1.0000203,0.9999848 +e-Ratio,0.9999729,1.0000045,1.0000203,0.999993 diff --git a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv index 1e83c89e7..d9b0ee11c 100644 --- a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv +++ b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,160.99,23.46,5.28,10.94,17.97,2.63,11.97,40.21,4.57,12.58,20.23,-0.14961 -L100A-02.xml,151.64,22.32,5.78,10.94,17.2,2.87,18.89,40.53,4.55,14.51,22.2,-0.14669 -L100A-03.xml,149.06,22.66,5.24,8.75,36.08,3.44,9.78,74.36,4.52,10.38,21.06,-0.16585 -L100A-04.xml,128.16,23.86,5.5,13.07,18.26,2.75,14.1,25.87,4.76,14.7,21.17,-0.14961 -L100A-05.xml,126.1,23.02,5.49,10.94,36.65,3.58,11.97,59.99,4.66,12.57,22.2,-0.166 +L100A-01.xml,160.65,23.46,5.27,10.94,17.97,2.63,11.97,40.06,4.57,12.58,20.23,-0.14966 +L100A-02.xml,151.3,22.32,5.77,10.94,17.2,2.87,18.89,40.38,4.54,14.51,22.2,-0.14665 +L100A-03.xml,148.93,22.67,5.24,8.75,36.08,3.44,9.78,74.36,4.48,10.38,21.06,-0.16581 +L100A-04.xml,127.97,23.86,5.5,13.07,18.26,2.75,14.1,25.78,4.76,14.7,21.17,-0.14966 +L100A-05.xml,126.22,23.03,5.48,10.94,36.65,3.58,11.97,59.99,4.71,12.57,22.2,-0.16594 diff --git a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv index d38e736ba..b290101ef 100644 --- a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv +++ b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv @@ -1,15 +1,15 @@ Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD L100AD-HW-01.xml,196.0,0.0,44 -L100AD-HW-02.xml,260.8,0.0,64 -L100AD-HW-03.xml,174.8,0.0,44 -L100AD-HW-04.xml,252.5,0.0,62 -L100AD-HW-05.xml,551.6,439.6,55 -L100AD-HW-06.xml,228.8,5.9,55 -L100AD-HW-07.xml,207.8,0.0,59 +L100AD-HW-02.xml,260.7,0.0,64 +L100AD-HW-03.xml,174.7,0.0,44 +L100AD-HW-04.xml,252.4,0.0,62 +L100AD-HW-05.xml,551.3,439.6,55 +L100AD-HW-06.xml,228.7,5.9,55 +L100AD-HW-07.xml,207.7,0.0,59 L100AM-HW-01.xml,110.4,0.0,33 -L100AM-HW-02.xml,136.5,0.0,48 +L100AM-HW-02.xml,136.4,0.0,48 L100AM-HW-03.xml,91.4,0.0,33 -L100AM-HW-04.xml,133.3,0.0,46 -L100AM-HW-05.xml,297.7,439.6,42 -L100AM-HW-06.xml,123.5,5.9,42 +L100AM-HW-04.xml,133.2,0.0,46 +L100AM-HW-05.xml,297.5,439.6,42 +L100AM-HW-06.xml,123.4,5.9,42 L100AM-HW-07.xml,121.2,0.0,44 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv index a5c8f6aa8..0f4c8ea60 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,77.84,140.36,379.13 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999831,1.0000045,1.0000487,0.9999808 +e-Ratio,0.9999831,1.0000343,1.0000201,0.9999808 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv index 390514120..095f44470 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,222.14,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999831,1.0000045,1.0000487,0.9999931 +e-Ratio,0.9999831,1.0000343,1.0000201,0.999985 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv index 5030533f2..b81e3f7f0 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,153.27,23.4,5.31,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08, -L100A-02.xml,144.35,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16, -L100A-03.xml,144.2,22.81,5.27,8.65,36.28,2.93,9.68,74.22,3.78,10.28,21.87, -L100A-04.xml,120.09,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16, -L100A-05.xml,121.24,22.96,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16, +L100A-01.xml,153.27,23.41,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08, +L100A-02.xml,144.34,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16, +L100A-03.xml,144.19,22.82,5.27,8.65,36.28,2.93,9.68,74.22,3.78,10.28,21.87, +L100A-04.xml,120.08,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16, +L100A-05.xml,121.24,22.97,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16, diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv index dd3ac768e..ce5c3d8fb 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,158.06,23.4,5.31,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08,-0.1409 -L100A-02.xml,148.76,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16,-0.13794 -L100A-03.xml,148.26,22.61,5.28,8.65,35.96,2.92,9.68,74.22,3.78,10.28,21.87,-0.1619 -L100A-04.xml,125.06,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16,-0.1409 -L100A-05.xml,125.6,22.96,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16,-0.16174 +L100A-01.xml,158.06,23.41,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08,-0.14093 +L100A-02.xml,148.76,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16,-0.13795 +L100A-03.xml,148.25,22.61,5.28,8.65,35.96,2.92,9.68,74.22,3.78,10.28,21.87,-0.16182 +L100A-04.xml,125.05,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16,-0.14093 +L100A-05.xml,125.59,22.97,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16,-0.16165 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 530328b06..93ca26ed9 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,89 +1,89 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -house001.xml,62.67,31.972,21.368,34.0977,0.21372,1.0795,0.9705,1.0179,1.0665,1.0,19.8646,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2473,0.8521,1.2821,0.2625,1.6393,5.5785,1.1286,4.0048,0.0,0.0,8.9126,1.198,7.7047,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5820.02,7645.45,55.81,1.0,55.81,62.67,62.67,0.0,46.55,1.0,46.55,62.67,62.67,0.0,59.89,33.338,21.2937,35.5546,0.21372,1.0795,0.9705,1.0179,1.0665,1.0,19.8366,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8027,0.2394,0.8512,1.2821,0.2625,1.6393,5.5499,1.0876,4.0011,0.0,0.0,8.8645,1.193,7.7055,9.77,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house002.xml,70.23,115.267,79.6078,113.3508,0.1847,0.9834,1.0,1.0,0.9834,1.0,69.178,0.0,0.0,52.28,21.46,9.53,42.2,12.3,10.55,30.8,1.19,0.0,0.5491,0.4579,0.982,0.4432,0.2625,1.087,34.0972,11.1707,8.5309,0.0,0.0,27.5252,6.4041,9.443,27.53,6.4,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.11,12588.72,18002.2,50.87,1.0,50.87,70.23,70.23,0.0,48.4,1.0,48.4,70.23,70.23,0.0,64.8,123.639,78.7878,121.5836,0.1847,0.9834,1.0,1.0,0.9834,1.0,68.711,0.0,0.0,60.6,21.55,9.53,48.63,12.84,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.863,10.6415,8.5293,0.0,0.0,27.1762,6.3401,9.443,27.18,6.34,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 -house003.xml,62.9,88.772,55.4224,88.1114,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.606,0.0,0.0,28.16,21.79,8.82,31.37,12.44,16.03,29.0,1.0,0.0,1.4118,0.4598,0.9324,1.7253,0.2625,1.6949,18.237000000000002,12.0957,1.9777,0.0,0.0,18.8789,6.9071,3.5952,19.68,6.91,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,73.99,9467.03,12890.49,49.12,1.0,49.12,62.9,62.9,0.0,47.17,1.0,47.17,62.9,62.9,0.0,59.42,92.28,54.4256,91.5933,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.2498,0.0,0.0,31.91,21.59,8.82,35.05,12.89,16.04,29.0,0.97,0.0,1.4139,0.4398,0.9318,1.7253,0.2625,1.6949,17.9338,11.4493,1.9765,0.0,0.0,18.5105,6.8341,3.5952,19.29,6.83,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 -house004.xml,60.97,90.446,57.5881,94.4506,0.3198,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.75,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1652,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.53,4964.51,7146.14,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.931,57.7752,104.3555,0.31979,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.38,0.5657,4.8635,0.0,0.0,30.6663,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 -house005.xml,60.31,28.25,18.363,30.4485,0.20297,1.0903,0.972,1.017,1.0778,1.0,16.793,0.0,0.0,5.0,4.04,5.78,4.32,2.29,12.12,12.72,0.72,0.0,0.5123,0.4624,0.8089,0.4432,0.2625,1.6949,1.5755,2.8814,0.8717,2.3849,0.0366,1.363,1.636,1.8264,1.36,1.64,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.34,2693.34,2998.32,49.99,1.0,49.99,60.31,60.31,0.0,44.76,1.0,44.76,60.31,60.31,0.0,58.42,29.079,18.3087,31.342,0.20297,1.0903,0.972,1.017,1.0778,1.0,16.7722,0.0,0.0,5.91,3.96,5.78,4.97,2.3,12.13,12.71,0.72,0.0,0.5274,0.4513,0.8079,0.4432,0.2625,1.6949,1.6122,2.7967,0.8706,2.3805,0.0366,1.355,1.627,1.8264,1.36,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 -house006.xml,71.74,92.124,67.3317,93.8541,0.23947,1.0022,1.0165,1.0,1.0188,1.0,57.43,0.0,0.0,32.58,20.62,10.53,24.5,11.93,11.82,27.5,0.91,0.0,1.1782,0.9073,0.9796,0.8864,0.525,1.0989,22.3326,12.8463,9.4717,0.0,0.0,16.8042,7.4350000000000005,10.6255,16.799999999999997,7.44,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.98,10225.16,13751.89,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.106,66.7521,95.8733,0.23947,1.0022,1.0165,1.0,1.0188,1.0,57.275,0.0,0.0,34.74,20.48,10.53,26.18,12.18,11.82,27.49,0.85,0.0,1.1766,0.8837999999999999,0.9796,0.8864,0.525,1.0989,22.1565,12.4419,9.4726,0.0,0.0,16.693199999999997,7.3919999999999995,10.6265,16.69,7.4,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 -house007.xml,76.93,46.881,38.1167,49.544,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,15.98,4.62,8.84,13.67,2.6,9.87,17.03,0.41,0.0,0.518,0.4673,0.9739,0.4432,0.2625,1.087,13.3149,1.0857,7.592,0.0,0.0,11.3941,0.61,8.473,11.39,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.19,8954.48,10699.46,57.1,1.0,57.1,76.93,76.93,0.0,48.03,1.0,48.03,76.93,76.93,0.0,73.89,48.983,38.2503,51.7654,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,18.29,4.49,8.84,15.46,2.58,9.87,17.02,0.35,0.0,0.5242,0.4566,0.9736,0.4432,0.2625,1.087,13.4757,1.0608,7.5897,0.0,0.0,11.3941,0.61,8.473,11.39,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 -house008.xml,62.86,161.244,98.5588,156.7856,0.20057,0.9685,1.0138,0.9903,0.9724,1.0,79.8742,0.0,0.0,97.89,10.48,13.21,155.98,6.66,22.24,38.43,1.24,0.0,0.8046,0.4128,1.0241,1.2821,0.2625,1.7241,47.6561,5.6479,7.7118,0.0,0.0,75.9384,3.592,12.9828,83.83,3.59,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.57,24536.13,34299.53,51.56,1.0,51.56,62.86,62.86,0.0,46.66,1.0,46.66,62.86,62.86,0.0,57.41,175.771,98.1128,170.9109,0.20057,0.9685,1.0138,0.9903,0.9724,1.0,79.7356,0.0,0.0,112.91,10.13,13.21,179.91,6.74,22.26,38.43,1.1,0.0,0.8046,0.3947,1.0235,1.2821,0.2625,1.7241,47.502,5.3615,7.7073,0.0,0.0,75.6929,3.566,12.9828,83.55,3.57,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 -house009.xml,62.6,99.676,63.9195,102.1122,0.28592,1.0046,1.0197,1.0,1.0244,1.0,47.5904,0.0,0.0,20.06,41.91,8.98,32.13,24.96,16.37,27.85,0.88,0.0,0.8004,0.4408,0.9454,1.2821,0.2625,1.7241,11.1098,22.6772,6.2935,0.0,0.0,17.7963,13.5061,11.4776,17.98,13.51,12.34,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.94,10152.57,11531.98,48.9,1.0,48.9,62.6,62.6,0.0,45.74,1.0,45.74,62.6,62.6,0.0,59.55,102.562,62.5688,105.0688,0.28592,1.0046,1.0197,1.0,1.0244,1.0,47.1376,0.0,0.0,22.61,42.32,8.98,36.22,25.98,16.37,27.84,0.82,0.0,0.8004,0.4277,0.9454,1.2821,0.2625,1.7241,10.7504,21.7349,6.2935,0.0,0.0,17.2203,13.3421,11.4776,17.4,13.34,12.34,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house010.xml,63.21,257.379,147.409,233.2079,0.28128,0.9061,1.0,1.0,0.9061,0.9999,104.6454,0.006,0.0,53.03,138.18,7.1,84.85,76.46,13.56,59.06,0.0,0.0,2.4049,1.4224,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.0295,75.26429999999999,1.7482,0.0,0.0,40.042100000000005,41.6464,3.3382,43.65,41.65,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.16,17425.41,20000.27,54.46,1.0,54.46,63.21,63.21,0.0,49.08,1.0,49.08,63.21,63.21,0.0,60.55,267.2143,146.6056,242.1195,0.28128,0.9061,1.0,1.0,0.9061,0.9999,104.2208,0.006,0.0,59.64,141.41,7.1,95.42,78.39,13.56,59.06,0.0,0.0,2.4049,1.4199,1.7748,3.8463000000000003,0.7875000000000001,3.3898,24.7055,74.7852,1.7478,0.0,0.0,39.522999999999996,41.4544,3.3382,43.09,41.45,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 -house011.xml,67.06,40.346,28.8645,43.0428,0.26093,1.0631,0.982,1.0219,1.0668,1.0,27.3202,0.0,0.0,8.9,6.51,7.88,14.24,4.49,8.89,16.77,0.29,0.0,0.8012,0.3804,0.9632,1.2821,0.2625,1.087,6.3975,2.4806,7.2764,0.0,0.0,10.2376,1.712,8.211,11.29,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,93.25,4126.44,4148.08,56.81,1.0,56.81,67.06,67.06,0.0,53.21,1.0,53.21,67.06,67.06,0.0,64.86,41.555,28.7539,44.3326,0.26093,1.0631,0.982,1.0219,1.0668,1.0,27.2752,0.0,0.0,10.33,6.39,7.88,16.53,4.5,8.89,16.77,0.2,0.0,0.8012,0.3727,0.9629,1.2821,0.2625,1.087,6.3544,2.4164,7.2731,0.0,0.0,10.1678,1.702,8.21,11.21,1.7,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house012.xml,49.98,70.802,37.0256,74.078,0.31657,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,44.14,1.0,44.14,49.98,49.98,0.0,46.06,76.71,36.9649,80.2594,0.31657,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.4553,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house013.xml,59.02,44.135,27.466,46.5397,0.16878,1.0398,1.0,1.0141,1.0545,1.0,24.993,0.0,0.0,12.88,1.84,10.35,9.36,0.87,11.96,18.45,0.61,0.0,0.6098,0.5556,0.9616,0.4432,0.2625,1.1111,9.7201,0.383,2.9779,0.0,0.0,7.0651,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.51,1719.33,2835.28,52.76,1.0,52.76,59.02,59.02,0.0,47.39,1.0,47.39,59.02,59.02,0.0,57.68,45.035,27.3935,47.4887,0.16878,1.0398,1.0,1.0141,1.0545,1.0,24.878,0.0,0.0,13.89,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5539,0.9616,0.4432,0.2625,1.1111,9.6581,0.384,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 -house014.xml,55.27,184.235,100.4595,181.7657,0.25794,0.9366,1.0534,1.0,0.9866,1.0,83.374,0.0,0.0,89.78,28.38,15.5,66.25,15.43,17.19,47.42,3.17,0.0,1.2,0.9649,1.0132,0.8864,0.525,1.1236,43.579299999999996,12.956600000000002,3.4267,0.0,0.0,32.1573,7.045999999999999,3.7999,32.16,7.050000000000001,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9573.41,17330.32,48.39,1.0,48.39,55.27,55.27,0.0,46.02,1.0,46.02,55.27,55.27,0.0,50.66,199.257,99.5982,196.5864,0.25794,0.9366,1.0534,1.0,0.9866,1.0,83.191,0.0,0.0,105.25,27.950000000000003,15.5,77.55000000000001,16.009999999999998,17.19,47.41,3.17,0.0,1.2027999999999999,0.9156,1.0132,0.8864,0.525,1.1236,43.4337,12.241999999999999,3.4265,0.0,0.0,32.0043,7.013999999999999,3.7999,32.0,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 -house015.xml,16.8,37.855,21.3859,42.9533,0.27911,1.1531,0.9615,1.0235,1.1347,0.3375,17.132,11.35,0.0,0.24,22.02,3.31,0.29,11.92,5.92,12.0,0.29,0.0,0.3616,0.4852,0.6894,0.4432,0.2625,1.2346,0.1778,10.5033,0.9108,0.0,0.0,0.218,5.6831,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.61,879.81,3428.92,49.73,1.0,49.73,49.79,49.79,1.0,47.69,1.0,47.69,49.79,49.79,0.0,47.21,37.917,21.3812,43.0237,0.27911,1.1531,0.9615,1.0235,1.1347,0.95,17.132,0.8566,0.0,0.26,22.07,3.31,0.3,11.95,5.92,12.0,0.29,0.0,0.3745,0.4847,0.6894,0.4432,0.2625,1.2346,0.1842,10.4922,0.9108,0.0,0.0,0.218,5.6831,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 -house016.xml,51.61,104.547,56.2246,108.944,0.27656,1.0184,1.0,1.0233,1.0421,1.0,39.2222,0.0,0.0,0.68,72.27,5.6,0.59,38.99,11.56,25.13,0.87,0.0,0.5134,0.4866,0.8215,0.4432,0.2625,1.6949,0.3127,34.2508,2.9331,0.0,0.0,0.27,18.4782,6.0515,0.27,18.48,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.32,6038.74,8013.37,51.14,1.0,51.14,51.61,51.61,0.0,48.95,1.0,48.95,51.61,51.61,0.0,51.28,104.821,56.0145,109.2295,0.27656,1.0184,1.0,1.0233,1.0421,1.0,39.1252,0.0,0.0,0.74,72.5,5.6,0.63,39.17,11.56,25.13,0.85,0.0,0.526,0.486,0.8211,0.4432,0.2625,1.6949,0.3121,34.0456,2.9318,0.0,0.0,0.263,18.3922,6.0515,0.26,18.39,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 -house017.xml,69.35,58.647,42.6049,61.4354,0.20238,1.0301,1.0,1.017,1.0475,1.0,37.1638,0.0,0.0,21.08,5.69,10.94,33.61,3.8,18.88,20.27,0.67,0.0,0.8043,0.3933,0.982,1.2821,0.2625,1.6949,22.0225,2.0628,2.3736,0.0,0.0,35.1052,1.377,4.0967,38.6,1.38,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,179.95,8406.4,4459.61,52.54,1.0,52.54,69.35,69.35,0.0,47.64,1.0,47.64,69.35,69.35,0.0,65.04,61.884,42.1634,64.8264,0.20238,1.0301,1.0,1.017,1.0475,1.0,36.8498,0.0,0.0,24.56,5.49,10.94,39.14,3.71,18.9,20.26,0.64,0.0,0.8046,0.3886,0.9811,1.2821,0.2625,1.6949,21.6501,2.019,2.3713,0.0,0.0,34.4976,1.364,4.0967,37.93,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 -house018.xml,31.37,276.4741,144.2558,265.0084,0.22629,0.9122,1.0625,0.9891,0.9585,0.5764,115.0084,48.722,0.0,152.21,32.56,17.32,242.4,21.23,27.24,72.71,1.67,0.0,2.416,1.2029,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.7886,14.4907,5.9486,0.0,0.0,119.0968,9.457,9.3478,130.58,9.46,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.57,24784.11,25968.03,51.25,1.0,51.25,54.43,54.43,0.0,47.28,1.0,47.28,54.43,54.43,0.0,45.69,297.5872,143.245,285.246,0.22629,0.9122,1.0625,0.9891,0.9585,0.9099,114.6296,10.3251,0.0,174.38,32.05,17.32,277.58,21.66,27.24,72.7,1.12,0.0,2.4171,1.1622,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.4192,13.852599999999999,5.9462,0.0,0.0,118.4519,9.366999999999999,9.3478,129.85999999999999,9.370000000000001,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 -house019.xml,63.56,163.996,101.7891,160.1462,0.19183,0.9638,1.0132,1.0,0.9765,1.0,81.2364,0.0,0.0,98.88,10.33,13.21,157.56,6.87,22.25,41.58,0.0,0.0,0.8046,0.3946,1.0241,1.2821,0.2625,1.7241,57.1556,3.107,7.3355,0.0,0.0,91.0765,2.067,12.3498,100.48,2.07,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,76.05,25761.06,34689.55,52.0,1.0,52.0,63.56,63.56,0.0,46.8,1.0,46.8,63.56,63.56,0.0,57.93,179.482,101.5343,175.2687,0.19183,0.9638,1.0132,1.0,0.9765,1.0,81.0874,0.0,0.0,114.72,9.98,13.21,182.8,6.74,22.26,41.57,0.0,0.0,0.8046,0.3888,1.0235,1.2821,0.2625,1.7241,56.966,3.0421,7.3322,0.0,0.0,90.7728,2.054,12.3515,100.14,2.05,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 -house020.xml,39.66,160.6915,130.0935,157.2596,0.26005,0.9408,1.0179,1.0219,0.9786,0.4794,108.1568,56.311,0.0,90.81,13.25,13.07,105.32000000000001,7.57,14.11,43.46,0.11,0.0,1.951,2.0204,1.0069,2.1364,1.05,1.087,72.0972,8.9743,12.112,0.0,0.0,86.9367,5.143,13.075,93.78,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,113.98,13142.48,11782.15,56.15,1.0,56.15,82.73,82.73,0.0,51.97,1.0,51.97,82.73,82.73,0.0,71.77,172.9987,130.4883,169.304,0.26005,0.9408,1.0179,1.0219,0.9786,0.9312,108.1568,7.4452,0.0,103.48,12.89,13.07,119.44,7.409999999999999,14.11,43.45,0.11,0.0,1.9662000000000002,1.9952,1.0067,2.1364,1.05,1.087,72.5498,8.9191,12.1094,0.0,0.0,86.9367,5.143,13.075,93.78,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 -house021.xml,59.6,107.633,67.3101,112.9341,0.27059,1.0115,1.0373,1.0,1.0493,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8045,0.3864,1.0544,1.2821,0.2625,1.6949,28.9014,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.52,23392.92,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.174,66.9522,120.8465,0.27059,1.0115,1.0373,1.0,1.0493,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6432,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 -house022.xml,54.56,81.06,45.9567,84.2362,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.5206,0.0,0.0,0.53,53.74,4.49,0.5,29.47,5.69,21.32,0.98,0.0,0.4736,0.4787,0.8757,0.4432,0.2625,1.1111,0.718,25.47,1.8297,0.0,0.0,0.672,13.9681,2.3215,0.67,13.97,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.08,4115.76,6380.21,50.92,1.0,50.92,54.56,54.56,0.0,48.59,1.0,48.59,54.56,54.56,0.0,54.15,81.344,45.7724,84.5313,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.4236,0.0,0.0,0.6,53.96,4.49,0.54,29.64,5.69,21.32,0.98,0.0,0.4899,0.478,0.8757,0.4432,0.2625,1.1111,0.7295,25.2731,1.8297,0.0,0.0,0.66,13.8821,2.3215,0.66,13.88,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 -house023.xml,72.64,87.952,64.2593,88.4583,0.26061,1.0022,0.982,1.0219,1.0058,1.0,51.136,0.0,0.0,16.78,39.82,6.02,12.25,22.65,7.25,24.51,0.83,0.0,0.6071,0.4616,0.9223,0.4432,0.2625,1.1111,10.6741,25.7985,4.9497,0.0,0.0,7.7931,14.6731,5.9626,7.79,14.67,5.83,18.81,4.02,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.45,7664.65,10235.93,45.83,1.0,45.83,72.64,72.64,0.0,44.01,1.0,44.01,72.64,72.64,0.0,70.38,89.172,63.1163,89.6853,0.26061,1.0022,0.982,1.0219,1.0058,1.0,50.532,0.0,0.0,17.87,39.99,6.02,12.99,23.1,7.25,24.51,0.79,0.0,0.6101,0.4545,0.9223,0.4432,0.2625,1.1111,10.4553,25.1114,4.9497,0.0,0.0,7.5961,14.5041,5.9626,7.6,14.5,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house024.xml,68.97,107.397,74.7703,108.4154,0.27108,0.9909,1.0187,1.0,1.0095,1.0,56.029,0.0,0.0,22.23,45.17,8.98,35.61,26.99,16.04,30.27,0.76,0.0,0.8002,0.4394,0.9483,1.2821,0.2625,1.6949,15.2015,24.5165,6.6383,0.0,0.0,24.3544,14.6481,11.8653,24.61,14.65,12.51,23.87,4.54,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.53,11942.64,12383.8,53.04,1.0,53.04,68.97,68.97,0.0,49.93,1.0,49.93,68.97,68.97,0.0,64.76,110.863,72.4787,111.9143,0.27108,0.9909,1.0187,1.0,1.0095,1.0,54.8552,0.0,0.0,25.36,45.66,8.98,40.63,28.21,16.04,30.27,0.6,0.0,0.8002,0.4249,0.9483,1.2821,0.2625,1.6949,14.7272,23.3232,6.6383,0.0,0.0,23.5944,14.4101,11.8653,23.84,14.41,12.51,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house025.xml,9.49,195.071,105.1155,186.9047,0.1577,0.9551,1.0109,0.9924,0.9581,0.1688,84.663,70.37,0.0,108.4,19.72,12.53,80.05000000000001,10.43,13.85,51.62,2.81,0.0,1.2003,0.9924,1.0048,0.8864,0.525,1.1111,53.3482,9.9794,2.4209,0.0,0.0,39.3994,5.28,2.6772,39.4,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.64,2936.67,13537.89,51.02,1.0,51.02,56.24,56.24,0.0,46.01,1.0,46.01,56.24,56.24,0.0,49.57,209.171,104.7136,200.4145,0.1577,0.9551,1.0109,0.9924,0.9581,0.9488,84.172,4.3088,0.0,122.4,19.82,12.53,89.8,10.5,13.86,51.62,2.81,0.0,1.2083,0.991,1.0045,0.8864,0.525,1.1111,53.2221,9.7043,2.4213,0.0,0.0,39.047399999999996,5.1419999999999995,2.6782,39.05,5.140000000000001,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 -house026.xml,65.29,72.692,49.5747,75.9344,0.21414,1.0262,1.0,1.018,1.0446,1.0,37.9924,0.0,0.0,12.09,29.63,7.52,19.37,17.88,14.1,22.79,0.66,0.0,0.8003,0.4351,1.8086,1.2821,0.2625,3.3898,6.1847,16.8638,7.0712,0.0,0.0,9.9075,10.1751,13.2534,10.92,10.18,14.24,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.71,8174.33,8532.29,47.28,1.0,47.28,65.29,65.29,0.0,44.52,1.0,44.52,65.29,65.29,0.0,63.05,74.174,48.8501,77.4825,0.21414,1.0262,1.0,1.018,1.0446,1.0,37.7436,0.0,0.0,13.43,29.83,7.52,21.51,18.41,14.1,22.78,0.62,0.0,0.8003,0.4255,1.8084,1.2821,0.2625,3.3898,6.0002,16.3597,7.0702,0.0,0.0,9.6118,10.0941,13.2534,10.6,10.09,14.24,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 -house027.xml,66.94,88.031,61.1584,91.3605,0.30313,1.012,1.0,1.0255,1.0378,1.0,45.7484,0.0,0.0,16.18,37.81,7.52,25.91,22.52,14.42,25.76,0.78,0.0,0.8004,0.4407,0.8987,1.2821,0.2625,1.7241,10.5844,21.0666,6.0924,0.0,0.0,16.9541,12.5491,11.688,17.13,12.55,11.69,19.66,3.75,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,90.95,9658.0,10232.04,51.99,1.0,51.99,66.94,66.94,0.0,48.91,1.0,48.91,66.94,66.94,0.0,64.4,89.21,59.6255,92.5841,0.30313,1.012,1.0,1.0255,1.0378,1.0,44.8458,0.0,0.0,17.26,37.96,7.52,27.65,22.97,14.42,25.76,0.71,0.0,0.8004,0.434,0.8987,1.2821,0.2625,1.7241,10.1297,20.3485,6.0924,0.0,0.0,16.2247,12.3091,11.688,16.4,12.31,11.69,19.66,3.39,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 -house028.xml,66.27,114.634,77.385,116.7731,0.28673,0.9799,1.0396,1.0,1.0187,1.0,62.182,0.0,0.0,23.18,48.38,10.4,16.74,28.16,11.65,31.53,1.14,0.0,0.6137,0.451,0.9925,0.4432,0.2625,1.1111,13.7952,29.0351,8.0136,0.0,0.0,9.9641,16.9012,8.971,9.96,16.9,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.35,9367.05,13454.01,44.76,1.0,44.76,66.27,66.27,0.0,42.92,1.0,42.92,66.27,66.27,0.0,62.89,118.383,75.8363,120.592,0.28673,0.9799,1.0396,1.0,1.0187,1.0,61.632,0.0,0.0,26.49,48.92,10.4,18.95,29.35,11.65,31.52,1.05,0.0,0.6196,0.4376,0.9925,0.4432,0.2625,1.1111,13.6185,27.7242,8.0136,0.0,0.0,9.7431,16.6331,8.971,9.74,16.63,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house029.xml,61.75,112.579,69.5147,112.5719,0.25561,0.9826,1.0176,1.0,0.9999,1.0,53.0776,0.0,0.0,22.82,47.540000000000006,8.98,36.55,28.81,16.04,32.24,1.0,0.0,1.6003,0.8656999999999999,1.8964,2.5642,0.525,3.3898,14.448699999999999,24.023600000000002,3.7594,0.0,0.0,23.151,14.5532,6.7198,23.4,14.55,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.8,11184.12,13035.19,49.51,1.0,49.51,61.75,61.75,0.0,46.38,1.0,46.38,61.75,61.75,0.0,58.27,116.429,67.8362,116.4217,0.25561,0.9826,1.0176,1.0,0.9999,1.0,52.4834,0.0,0.0,26.22,48.099999999999994,8.98,42.01,30.14,16.04,32.24,0.9,0.0,1.6003,0.8369,1.8962,2.5642,0.525,3.3898,13.9537,22.9155,3.7592,0.0,0.0,22.3574,14.3592,6.7198,22.59,14.36,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 -house030.xml,60.18,135.662,81.8528,136.0146,0.2944,0.9635,1.0406,1.0,1.0026,1.0,61.6752,0.0,0.0,29.1,57.83,10.4,46.629999999999995,34.83,17.92,37.11,1.21,0.0,1.6004,0.8689,1.9686,2.5642,0.525,3.3898,18.4107,32.0944,2.6776,0.0,0.0,29.4974,19.3552,4.6108,29.81,19.35,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.77,13111.86,15612.29,50.34,1.0,50.34,60.18,60.18,0.0,47.0,1.0,47.0,60.18,60.18,0.0,56.56,140.354,79.592,140.7188,0.2944,0.9635,1.0406,1.0,1.0026,1.0,60.8784,0.0,0.0,33.25,58.510000000000005,10.4,53.269999999999996,36.47,17.92,37.11,1.08,0.0,1.6004,0.8399000000000001,1.9686,2.5642,0.525,3.3898,17.7738,30.559600000000003,2.6776,0.0,0.0,28.4762,19.0672,4.6108,28.78,19.07,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 -house031.xml,55.7,208.0281,116.6199,209.3736,-0.03297,1.0094,0.9955,1.0016,1.0065,1.0,94.163,0.0,0.0,122.38,19.91,14.53,89.77,10.53,17.32,50.05,1.16,0.0,2.4167,1.988,1.0353,1.7728,1.05,1.2346,60.1884,13.9424,3.186,0.0,0.0,44.1514,7.366,3.7993,44.14,7.38,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8084.35,14528.15,49.49,1.0,49.49,55.7,55.7,0.0,44.76,1.0,44.76,55.7,55.7,0.0,51.78,223.019,116.2216,224.4615,-0.03297,1.0094,0.9955,1.0016,1.0065,1.0,93.706,0.0,0.0,137.31,19.98,14.53,100.16,10.58,17.33,50.04,1.16,0.0,2.4321,1.9839,1.035,1.7728,1.05,1.2346,60.1121,13.6235,3.1861,0.0,0.0,43.8464,7.212,3.8004,43.849999999999994,7.22,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 -house032.xml,70.9,126.088,91.0522,128.4227,0.26786,0.978,1.0185,1.0225,1.0185,1.0,67.0224,0.0,0.0,26.43,56.61,8.98,42.31,33.650000000000006,16.32,33.12,0.96,0.0,1.6019999999999999,0.8779,0.9483,2.5642,0.525,1.7241,18.128,34.1864,7.1818,0.0,0.0,29.022399999999998,20.3232,13.0577,29.33,20.32,13.06,25.94,5.62,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.39,15479.67,14420.56,54.66,1.0,54.66,70.9,70.9,0.0,51.34,1.0,51.34,70.9,70.9,0.0,67.33,128.12,87.8669,130.4923,0.26786,0.978,1.0185,1.0225,1.0185,1.0,65.0334,0.0,0.0,28.33,56.870000000000005,8.98,45.36,34.42,16.32,33.12,0.82,0.0,1.6021,0.8623000000000001,0.9482,2.5642,0.525,1.7241,17.2773,32.8303,7.1803,0.0,0.0,27.6588,19.8692,13.0557,27.950000000000003,19.869999999999997,13.06,25.94,4.64,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house033.xml,64.17,151.368,94.1718,146.755,0.22298,0.9548,1.0154,1.0,0.9695,1.0,78.1458,0.0,0.0,69.79,28.19,11.38,111.36,17.630000000000003,19.4,42.0,0.0,0.0,1.6073,0.8362,0.9947,2.5642,0.525,1.6949,48.3344,11.1167,3.4067,0.0,0.0,77.11699999999999,6.946,5.8048,85.27000000000001,6.95,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,90.89,21007.8,23841.19,52.58,1.0,52.58,64.17,64.17,0.0,49.36,1.0,49.36,64.17,64.17,0.0,59.22,162.881,93.5146,157.9171,0.22298,0.9548,1.0154,1.0,0.9695,1.0,77.9596,0.0,0.0,81.27,28.24,11.38,129.67,18.310000000000002,19.41,41.99,0.0,0.0,1.6072,0.8069999999999999,0.994,2.5642,0.525,1.6949,48.1556,10.6415,3.4044,0.0,0.0,76.8349,6.891,5.8048,84.96000000000001,6.890000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 -house034.xml,62.02,60.583,38.6513,62.3207,0.18765,1.0128,1.0,1.0157,1.0287,1.0,33.4918,0.0,0.0,19.58,4.48,9.97,31.34,3.09,18.48,24.53,2.03,0.0,0.8008,0.381,0.9149,1.2821,0.2625,1.6949,9.3149,2.9152,4.2021,0.0,0.0,14.913,2.009,7.7844,16.44,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.45,5829.24,3668.85,55.61,1.0,55.61,62.02,62.02,0.0,50.23,1.0,50.23,62.02,62.02,0.0,60.49,61.944,38.5465,63.7207,0.18765,1.0128,1.0,1.0157,1.0287,1.0,33.4346,0.0,0.0,21.05,4.37,9.97,33.7,3.04,18.48,24.53,2.03,0.0,0.8008,0.3776,0.9149,1.2821,0.2625,1.6949,9.2495,2.8769,4.2021,0.0,0.0,14.8078,2.0,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house035.xml,70.11,103.364,72.1908,102.9729,0.19292,0.9804,1.0,1.0162,0.9962,1.0,61.001,0.0,0.0,52.39,6.55,11.06,83.48,4.7,12.38,32.3,1.06,0.0,0.8046,0.3661,0.9925,1.2821,0.2625,1.1111,39.6115,2.9817,9.1447,0.0,0.0,63.1204,2.138,10.2376,68.43,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.28,18229.84,22794.26,55.9,1.0,55.9,70.11,70.11,0.0,49.5,1.0,49.5,70.11,70.11,0.0,64.67,110.236,71.0196,109.8189,0.19292,0.9804,1.0,1.0162,0.9962,1.0,60.188,0.0,0.0,59.6,6.31,11.06,94.97,4.61,12.39,32.3,0.97,0.0,0.8046,0.3593,0.9922,1.2821,0.2625,1.1111,38.5611,2.9126,9.1408,0.0,0.0,61.4462,2.128,10.2365,66.61,2.13,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house036.xml,68.18,113.99,76.214,111.727,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.905,0.035,0.0,61.66,8.83,8.65,98.26,5.93,15.94,33.62,1.24,0.0,0.8044,0.3911,0.9197,1.2821,0.2625,1.6949,38.8911,4.847,2.3779,0.0,0.0,61.981,3.254,4.3819,68.15,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.33,18848.36,24240.36,55.48,1.0,55.48,68.21,68.21,0.0,49.86,1.0,49.86,68.21,68.21,0.0,63.29,121.857,75.6338,119.4378,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.485,0.035,0.0,69.77,8.62,8.65,111.19,5.8,15.96,33.61,1.21,0.0,0.8045,0.3899,0.9191,1.2821,0.2625,1.6949,38.4675,4.7402,2.3761,0.0,0.0,61.3052,3.192,4.3819,67.4,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 -house037.xml,67.03,113.264,76.7388,114.4854,0.19359,0.9975,1.0134,1.0,1.0108,1.0,64.809,0.0,0.0,65.19,6.71,13.21,103.96,4.85,14.55,27.32,0.84,0.0,0.8039,0.3629,1.0094,1.2821,0.2625,1.1111,41.1071,3.9738,10.1998,0.0,0.0,65.5566,2.875,11.2281,71.07,2.88,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.28,19279.43,24366.03,52.89,1.0,52.89,67.03,67.03,0.0,47.96,1.0,47.96,67.03,67.03,0.0,60.87,122.6,75.4307,123.922,0.19359,0.9975,1.0134,1.0,1.0108,1.0,63.9068,0.0,0.0,74.86,6.49,13.21,119.28,4.82,14.55,27.32,0.73,0.0,0.8046,0.3533,1.0091,1.2821,0.2625,1.1111,40.0171,3.8136,10.197,0.0,0.0,63.7661,2.834,11.2281,69.13,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house038.xml,65.16,130.352,82.595,126.7642,0.26729,0.9549,1.0184,1.0,0.9725,1.0,62.9464,0.0,0.0,39.57,39.980000000000004,9.92,35.14,22.46,17.56,39.59,1.29,0.0,1.8868,0.9345000000000001,0.9569,2.1685,0.525,1.6949,27.552400000000002,21.529,5.0676,0.0,0.0,24.7247,12.094100000000001,8.9761,24.83,12.100000000000001,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14042.28,19637.82,47.37,1.0,47.37,65.16,65.16,0.0,45.3,1.0,45.3,65.16,65.16,0.0,61.99,133.927,80.7367,130.2408,0.26729,0.9549,1.0184,1.0,0.9725,1.0,62.0528,0.0,0.0,43.4,39.88,9.92,38.13,22.990000000000002,17.57,39.59,1.14,0.0,1.8883,0.9105000000000001,0.9568,2.1685,0.525,1.6949,26.674400000000002,20.649,5.0673,0.0,0.0,24.0051,11.906099999999999,8.9761,24.1,11.899999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house039.xml,50.5,157.861,139.3403,157.4619,0.09402,0.9784,1.0195,1.0,0.9975,0.5707,103.2286,44.319,0.0,73.75,20.45,16.5,117.62,13.350000000000001,29.68,47.17,0.0,0.0,2.4121,1.1928,1.0486,3.8463000000000003,0.7875000000000001,1.8868,78.2297,10.0108,15.1278,0.0,0.0,124.7819,6.527,27.2203,127.95,6.52,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,207.25,23085.08,11167.12,54.26,1.0,54.26,88.49,88.49,0.0,49.73,1.0,49.73,88.49,88.49,0.0,73.19,172.184,138.833,171.7487,0.09402,0.9784,1.0195,1.0,0.9975,0.9054,102.8722,9.7324,0.0,88.05,20.47,16.5,140.41,13.36,29.69,47.16,0.0,0.0,2.4126,1.1935,1.0486,3.8463000000000003,0.7875000000000001,1.8868,77.9178,9.818,15.1273,0.0,0.0,124.24249999999999,6.4030000000000005,27.2203,127.39999999999999,6.4,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 -house040.xml,63.7,195.693,119.2781,187.2378,0.18489,0.9568,1.0,1.0,0.9568,1.0,92.5418,0.0,0.0,125.3,12.49,11.06,199.67,8.01,19.45,44.92,1.91,0.0,0.8046,0.4096,0.9804,1.2821,0.2625,1.7241,63.6821,14.1094,7.1827,0.0,0.0,101.4752,9.0441,12.6309,112.21,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.84,29247.8,40845.03,52.87,1.0,52.87,63.7,63.7,0.0,49.74,1.0,49.74,63.7,63.7,0.0,58.84,211.231,118.9239,202.1045,0.18489,0.9568,1.0,1.0,0.9568,1.0,92.2726,0.0,0.0,141.19,12.15,11.06,224.97,7.77,19.46,44.92,1.91,0.0,0.8046,0.4108,0.9799,1.2821,0.2625,1.7241,63.4612,13.9803,7.1795,0.0,0.0,101.1234,8.9341,12.6317,111.82,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house041.xml,83.68,72.738,62.3049,74.4594,0.13117,1.0035,1.0091,1.011,1.0237,1.0,50.4792,0.0,0.0,25.92,8.19,12.53,41.33,5.19,20.93,26.11,0.0,0.0,0.8039,0.4141,1.0143,1.2821,0.2625,1.6949,20.4199,6.0879,11.5781,0.0,0.0,32.5639,3.86,19.3465,35.11,3.86,20.4,23.34,0.88,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,190.86,10461.47,5354.42,52.96,1.0,52.96,83.68,83.68,0.0,46.88,1.0,46.88,83.68,83.68,0.0,74.72,75.378,57.6537,77.1619,0.13117,1.0035,1.0091,1.011,1.0237,1.0,46.9652,0.0,0.0,28.64,8.11,12.53,45.66,5.16,20.94,26.11,0.0,0.0,0.8041,0.4127,1.014,1.2821,0.2625,1.6949,16.641,6.0979,11.5658,0.0,0.0,26.5335,3.879,19.3332,28.6,3.88,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house042.xml,90.07,114.928,103.2686,114.6487,0.21957,0.9827,1.0152,1.0,0.9976,1.0,77.7858,0.0,0.0,50.29,21.03,11.38,80.27,12.92,19.73,32.22,0.0,0.0,0.8033,0.4273,0.9946,1.2821,0.2625,1.7241,51.012,16.3799,8.3466,0.0,0.0,81.4176,10.0641,14.4693,82.27,10.06,15.56,27.07,0.46,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.01,21210.6,18171.93,50.09,1.0,50.09,90.07,90.07,0.0,47.02,1.0,47.02,90.07,90.07,0.0,81.22,122.663,99.3858,122.3649,0.21957,0.9827,1.0152,1.0,0.9976,1.0,75.4212,0.0,0.0,58.04,21.03,11.38,92.63,13.36,19.75,32.22,0.0,0.0,0.8032,0.4132,0.9939,1.2821,0.2625,1.7241,48.4055,15.5642,8.3401,0.0,0.0,77.2622,9.8881,14.4675,78.07,9.89,15.56,27.08,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house043.xml,-8.08,52.037,21.8607,53.8614,0.30155,1.0351,1.0,1.0,1.0351,-0.199,20.625,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.3623,2.5103,2.3731,0.0,0.0,1.086,1.314,2.669,1.09,1.31,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.55,22.8,4017.57,53.46,1.0,53.46,40.59,40.59,1.0,47.88,1.0,47.88,40.59,40.59,1.0,35.7,56.147,21.8413,58.1155,0.30155,1.0351,1.0,1.0,1.0351,0.95,20.596,1.0298,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4992,0.9875,0.4432,0.2625,1.1111,1.392,2.4623,2.373,0.0,0.0,1.077,1.295,2.67,1.08,1.3,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 -house044.xml,69.13,42.882,31.2523,45.2065,0.16593,1.0641,0.9771,1.0139,1.0542,1.0,27.7514,0.0,0.0,19.12,3.37,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3154,0.9207,1.2821,0.2625,1.1111,14.5642,2.232,4.5241,0.0,0.0,23.2576,1.858,5.4597,25.57,1.86,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.24,7639.14,9381.31,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.93,44.164,31.1595,46.558,0.16593,1.0641,0.9771,1.0139,1.0542,1.0,27.7094,0.0,0.0,20.47,3.3,6.35,32.67,2.81,7.66,13.7,0.34,0.0,0.8034,0.3088,0.9205,1.2821,0.2625,1.1111,14.5342,2.1713,4.5229,0.0,0.0,23.1922,1.846,5.4597,25.5,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -house045.xml,88.78,180.531,153.8671,173.3069,0.22005,0.9417,1.0304,0.9894,0.96,1.0,124.813,0.0,0.0,75.15,43.12,12.22,56.3,24.77,21.3,50.05,0.0,0.0,0.5917,0.4571,1.9438,0.4432,0.2625,3.3898,64.2722,31.5783,13.7026,0.0,0.0,48.1494,18.1382,23.895,48.15,18.14,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,99.92,25490.35,26573.39,49.69,1.0,49.69,88.78,88.78,0.0,45.77,1.0,45.77,88.78,88.78,0.0,82.81,190.749,151.6455,183.1161,0.22005,0.9417,1.0304,0.9894,0.96,1.0,124.234,0.0,0.0,85.89,42.6,12.22,64.22,25.71,21.3,50.05,0.0,0.0,0.5929,0.4349,1.9438,0.4432,0.2625,3.3898,63.8183,29.8107,13.7026,0.0,0.0,47.7134,17.9942,23.895,47.71,17.99,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 -house046.xml,-4.26,132.826,49.2382,132.171,0.27773,0.9896,1.0192,0.9866,0.9951,-0.1142,46.131,51.401,0.0,75.54,12.03,12.93,62.72,6.75,13.96,29.19,3.15,0.0,0.5338,0.4681,1.0064,0.4432,0.2625,1.087,16.3339,2.5406,9.7587,0.0,0.0,13.5621,1.425,10.54,13.56,1.43,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.85,2776.7,28324.69,50.16,1.0,50.16,37.25,37.25,1.0,44.16,1.0,44.16,37.25,37.25,1.0,32.41,144.436,49.0355,143.7238,0.27773,0.9896,1.0192,0.9866,0.9951,0.95,46.056,2.3028,0.0,87.5,11.68,12.93,72.57,6.88,13.97,29.18,3.15,0.0,0.5344,0.4458,1.0062,0.4432,0.2625,1.087,16.273,2.4008,9.7566,0.0,0.0,13.4971,1.414,10.54,13.5,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 -house047.xml,63.74,84.064,53.8099,84.4245,0.20922,0.987,1.0,1.0176,1.0043,1.0,42.9956,0.0,0.0,32.66,9.13,10.49,52.01,5.62,11.8,30.7,1.09,0.0,0.805,0.4266,0.9872,1.2821,0.2625,1.1111,26.1557,3.8609,2.4723,0.0,0.0,41.6572,2.376,2.7825,45.67,2.38,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.63,10572.93,6170.05,58.44,1.0,58.44,63.74,63.74,0.0,53.2,1.0,53.2,63.74,63.74,0.0,58.63,90.518,53.3022,90.9061,0.20922,0.987,1.0,1.0176,1.0043,1.0,42.6386,0.0,0.0,39.21,9.07,10.49,62.45,5.6,11.81,30.69,1.05,0.0,0.805,0.425,0.9868,1.2821,0.2625,1.1111,25.7526,3.7722,2.4703,0.0,0.0,41.0142,2.33,2.7815,44.97,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 -house048.xml,66.15,98.507,68.9125,104.1765,0.33387,1.0286,1.0,1.0282,1.0576,1.0,46.4668,0.0,0.0,1.98,65.92,5.6,3.18,37.74,10.94,24.41,0.6,0.0,0.8005,0.4586,0.883,1.2821,0.2625,1.7241,0.4974,44.1587,3.7454,0.0,0.0,0.7966,25.2822,7.313,0.81,25.28,7.58,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.97,6735.91,7677.02,50.84,1.0,50.84,66.15,66.15,0.0,46.29,1.0,46.29,66.15,66.15,0.0,65.27,98.719,68.1465,104.4007,0.33387,1.0286,1.0,1.0282,1.0576,1.0,46.0002,0.0,0.0,2.1,66.11,5.6,3.36,37.9,10.94,24.4,0.51,0.0,0.8005,0.458,0.883,1.2821,0.2625,1.7241,0.4362,43.5749,3.7454,0.0,0.0,0.6987,24.9792,7.313,0.71,24.98,7.58,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house049.xml,52.33,43.646,24.0168,45.8939,0.22435,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.6,16.62,17.28,1.37,0.0,0.6061,0.5152,0.813,0.4432,0.2625,1.6949,4.7911,1.1048,2.9789,0.0,0.0,3.504,0.563,6.2103,3.5,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.65,2584.1,2741.11,49.1,1.0,49.1,52.33,52.33,0.0,44.14,1.0,44.14,52.33,52.33,0.0,51.23,44.555,24.003,46.8497,0.22435,1.0483,0.9845,1.0188,1.0515,1.0,22.6408,0.0,0.0,14.88,3.06,7.97,10.81,1.57,16.62,17.27,1.37,0.0,0.6101,0.5127,0.813,0.4432,0.2625,1.6949,4.7876,1.0955,2.9789,0.0,0.0,3.478,0.561,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 -house050.xml,86.65,66.541,58.5864,67.6106,0.16655,1.0045,1.0115,1.0,1.0161,1.0,50.4372,0.0,0.0,21.39,4.93,11.91,34.1,3.21,21.35,27.26,1.05,0.0,0.8043,0.4029,0.9618,1.2821,0.2625,1.7241,9.0996,4.2665,8.3984,0.0,0.0,14.5054,2.78,15.0553,15.9,2.78,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.05,7503.1,4147.46,55.71,1.0,55.71,86.65,86.65,0.0,50.46,1.0,50.46,86.65,86.65,0.0,82.0,69.965,58.291,71.0897,0.16655,1.0045,1.0115,1.0,1.0161,1.0,50.2676,0.0,0.0,25.08,4.69,11.91,39.98,3.11,21.36,27.25,1.04,0.0,0.8043,0.3952,0.9617,1.2821,0.2625,1.7241,9.0149,4.1295,8.3976,0.0,0.0,14.3704,2.743,15.0553,15.76,2.74,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house051.xml,55.16,45.503,25.705,46.5984,0.17687,1.0241,1.0,1.0,1.0241,1.0,25.4118,0.0,0.0,11.33,2.82,9.97,8.55,1.45,18.47,20.61,0.77,0.0,0.5871,0.5109,0.9155,0.4432,0.2625,1.6949,5.6268,0.4515,2.0157,0.0,0.0,4.248,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.42,2727.33,2913.04,51.65,1.0,51.65,55.16,55.16,0.0,46.33,1.0,46.33,55.16,55.16,0.0,52.63,47.812,25.7713,48.9629,0.17687,1.0241,1.0,1.0,1.0241,1.0,25.3738,0.0,0.0,13.85,2.62,9.97,10.23,1.37,18.47,20.6,0.77,0.0,0.6001,0.5039,0.9154,0.4432,0.2625,1.6949,5.7024,0.4434,2.0155,0.0,0.0,4.212,0.231,3.7319,4.21,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 -house052.xml,58.75,44.431,27.6268,47.0278,0.19344,1.0416,1.0,1.0162,1.0584,1.0,26.762,0.0,0.0,13.17,1.71,10.35,9.56,0.81,11.95,18.54,0.66,0.0,0.6107,0.5522,0.9621,0.4432,0.2625,1.1111,6.0765,0.2419,7.1483,0.0,0.0,4.41,0.115,8.2555,4.41,0.12,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.36,1794.7,2856.64,53.21,1.0,53.21,58.75,58.75,0.0,48.04,1.0,48.04,58.75,58.75,0.0,57.08,45.755,27.6443,48.4292,0.19344,1.0416,1.0,1.0162,1.0584,1.0,26.734,0.0,0.0,14.63,1.59,10.35,10.52,0.76,11.95,18.53,0.65,0.0,0.6167,0.5493,0.9621,0.4432,0.2625,1.1111,6.0984,0.2385,7.1483,0.0,0.0,4.383,0.114,8.2555,4.38,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 -house053.xml,70.9,66.045,47.6372,67.1925,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.706,0.0,0.0,21.53,4.78,11.91,34.32,3.14,21.31,26.94,0.88,0.0,0.8042,0.3994,0.9639,1.2821,0.2625,1.7241,13.1841,3.0701,8.0599,0.0,0.0,21.017,2.018,14.4175,22.66,2.02,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.75,7445.68,4117.35,55.57,1.0,55.57,70.9,70.9,0.0,50.34,1.0,50.34,70.9,70.9,0.0,66.53,69.574,47.0908,70.7828,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.344,0.0,0.0,25.36,4.53,11.91,40.43,3.04,21.31,26.93,0.83,0.0,0.8043,0.3917,0.9638,1.2821,0.2625,1.7241,12.7643,3.0033,8.0592,0.0,0.0,20.3472,2.013,14.4175,21.94,2.01,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house054.xml,62.35,170.343,108.6091,174.1905,0.3349,0.9506,1.0462,1.0282,1.0226,1.0,76.7508,0.0,0.0,3.6599999999999997,120.34,7.75,5.85,69.25,13.54,37.12,1.49,0.0,1.601,0.9113,0.9696,2.5642,0.525,1.6949,1.334,75.7431,1.836,0.0,0.0,2.1365,43.5914,3.2093,2.16,43.6,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.76,9823.58,13386.28,49.91,1.0,49.91,62.35,62.35,0.0,45.26,1.0,45.26,62.35,62.35,0.0,61.65,171.074,107.8479,174.938,0.3349,0.9506,1.0462,1.0282,1.0226,1.0,76.3522,0.0,0.0,3.92,120.88,7.75,6.27,69.68,13.54,37.11,1.42,0.0,1.6007,0.9097999999999999,0.9696,2.5642,0.525,1.6949,1.246,75.1329,1.836,0.0,0.0,1.9961,43.3124,3.2093,2.02,43.31,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 -house055.xml,63.65,95.907,64.7064,101.6572,0.33855,1.0305,1.0,1.0286,1.06,1.0,46.8598,0.0,0.0,2.0,65.22,5.6,3.2,37.26,10.67,22.28,0.81,0.0,0.8005,0.4595,0.8897,1.2821,0.2625,1.6949,0.9448,42.4581,1.6855,0.0,0.0,1.5131,24.2562,3.2109,1.53,24.26,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.32,6177.35,7636.62,48.98,1.0,48.98,63.65,63.65,0.0,44.55,1.0,44.55,63.65,63.65,0.0,63.18,96.117,64.3697,101.8797,0.33855,1.0305,1.0,1.0286,1.06,1.0,46.681,0.0,0.0,2.07,65.37,5.6,3.32,37.38,10.67,22.28,0.8,0.0,0.8004,0.4591,0.8897,1.2821,0.2625,1.6949,0.9058,42.1785,1.6855,0.0,0.0,1.4508,24.1192,3.2109,1.47,24.12,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 -house056.xml,62.74,73.46,46.5882,74.2554,0.20102,0.997,1.0139,1.0,1.0108,1.0,41.0022,0.0,0.0,26.08,5.19,11.91,41.74,3.46,20.92,29.21,1.07,0.0,1.6099999999999999,0.394,0.9649,2.5642,0.2625,1.6949,13.5076,2.8964,3.3671,0.0,0.0,21.6055,1.93,5.9145,23.27,1.93,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.2,7314.9,4461.47,54.95,1.0,54.95,62.74,62.74,0.0,49.69,1.0,49.69,62.74,62.74,0.0,58.69,77.843,46.1778,78.6858,0.20102,0.997,1.0139,1.0,1.0108,1.0,40.7364,0.0,0.0,30.770000000000003,4.92,11.91,49.230000000000004,3.35,20.93,29.2,1.04,0.0,1.6084,0.3862,0.9648,2.5642,0.2625,1.6949,13.2434,2.8217,3.3668,0.0,0.0,21.183,1.918,5.9145,22.82,1.92,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 -house057.xml,82.27,57.398,47.8961,58.2191,0.16054,1.0143,1.0,1.0,1.0143,1.0,42.4148,0.0,0.0,18.79,4.14,9.97,29.96,2.81,11.53,23.76,0.74,0.0,0.8043,0.3859,0.9612,1.2821,0.2625,1.1111,9.7872,4.2757,2.8562,0.0,0.0,15.6013,2.909,3.3018,17.2,2.91,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.8,5205.6,3593.99,57.91,1.0,57.91,82.27,82.27,0.0,53.16,1.0,53.16,82.27,82.27,0.0,76.75,60.298,46.9394,61.1606,0.16054,1.0143,1.0,1.0,1.0143,1.0,41.5958,0.0,0.0,21.95,3.94,9.97,34.98,2.73,11.53,23.75,0.69,0.0,0.8043,0.3783,0.9611,1.2821,0.2625,1.1111,9.6849,4.1065,2.8559,0.0,0.0,15.4381,2.85,3.3018,17.02,2.85,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 -house058.xml,64.67,122.076,79.9278,123.5861,0.33378,0.9896,1.023,1.0,1.0124,1.0,56.8062,0.0,0.0,3.5,82.49,6.68,5.61,47.61,12.49,28.44,0.97,0.0,0.8004,0.4549,0.9226,1.2821,0.2625,1.7241,1.2468,50.6799,5.6171,0.0,0.0,1.997,29.2513,10.4971,2.02,29.25,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.94,7859.71,9712.32,50.79,1.0,50.79,64.67,64.67,0.0,46.18,1.0,46.18,64.67,64.67,0.0,63.22,123.585,79.0928,125.1138,0.33378,0.9896,1.023,1.0,1.0124,1.0,56.3918,0.0,0.0,4.05,83.53,6.68,6.48,48.4,12.49,28.43,0.89,0.0,0.8002,0.4531,0.9225,1.2821,0.2625,1.7241,1.1303,50.0422,5.6162,0.0,0.0,1.811,28.9933,10.4971,1.83,28.99,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house059.xml,55.25,35.115,20.8325,37.7062,0.19106,1.071,0.9868,1.016,1.0738,1.0,18.6486,0.0,0.0,7.78,2.94,7.97,6.04,1.48,15.04,16.0,0.42,0.0,0.5709,0.5221,0.8987,0.4432,0.2625,1.6949,3.7302,0.8929,2.0045,0.0,0.0,2.896,0.449,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.3,2428.54,2168.39,50.59,1.0,50.59,55.25,55.25,0.0,46.25,1.0,46.25,55.25,55.25,0.0,54.28,35.707,20.8118,38.3419,0.19106,1.071,0.9868,1.016,1.0738,1.0,18.5946,0.0,0.0,8.47,2.86,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5794,0.5203,0.8981,0.4432,0.2625,1.6949,3.7216,0.886,2.0031,0.0,0.0,2.847,0.447,3.7805,2.85,0.45,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 -house060.xml,73.73,113.169,84.3393,114.3841,0.23111,0.9795,1.0319,1.0,1.0107,1.0,62.3128,0.0,0.0,32.08,33.58,11.5,51.32,20.1,19.92,36.01,0.0,0.0,1.6028,0.8773,0.995,2.5642,0.525,1.7241,27.7984,20.3841,7.9589,0.0,0.0,44.4703,12.2012,13.7916,44.94,12.2,13.79,27.35,0.85,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,92.58,16224.51,17337.82,50.12,1.0,50.12,73.73,73.73,0.0,46.41,1.0,46.41,73.73,73.73,0.0,67.84,115.918,79.4825,117.1627,0.23111,0.9795,1.0319,1.0,1.0107,1.0,59.1526,0.0,0.0,34.96,33.46,11.5,55.9,20.52,19.92,36.01,0.0,0.0,1.6037,0.8559,0.9949,2.5642,0.525,1.7241,25.0297,19.1404,7.9585,0.0,0.0,40.0201,11.7422,13.7916,40.44,11.74,13.79,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house061.xml,66.68,27.402,19.4607,29.1873,0.20357,1.0775,0.9719,1.0171,1.0652,1.0,18.2968,0.0,0.0,4.91,3.05,5.78,7.83,1.77,6.8,13.47,0.19,0.0,0.804,0.4531,0.9248,1.2821,0.2625,1.087,5.6096,0.7645,3.9607,0.0,0.0,8.9451,0.443,4.655,9.81,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,94.78,2994.11,2965.73,59.98,1.0,59.98,66.68,66.68,0.0,50.96,1.0,50.96,66.68,66.68,0.0,64.31,28.31,19.3936,30.1544,0.20357,1.0775,0.9719,1.0171,1.0652,1.0,18.2622,0.0,0.0,5.95,2.98,5.78,9.48,1.77,6.8,13.46,0.13,0.0,0.8041,0.4426,0.9243,1.2821,0.2625,1.087,5.5759,0.7333,3.9583,0.0,0.0,8.8904,0.435,4.655,9.75,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 -house062.xml,74.71,38.176,30.3589,40.6337,0.24834,1.0796,0.9657,1.0209,1.0644,1.0,26.032,0.0,0.0,9.63,8.95,5.18,7.42,5.1,6.18,14.41,0.0,0.0,0.5754,0.4607,0.911,0.4432,0.2625,1.087,10.5363,6.2161,3.9835,0.0,0.0,8.1161,3.542,4.753,8.12,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.25,4609.9,5755.22,49.38,1.0,49.38,74.71,74.71,0.0,45.89,1.0,45.89,74.71,74.71,0.0,74.09,38.339,30.2356,40.8072,0.24834,1.0796,0.9657,1.0209,1.0644,1.0,25.96,0.0,0.0,9.81,8.94,5.18,7.55,5.12,6.18,14.41,0.0,0.0,0.5764,0.4581,0.911,0.4432,0.2625,1.087,10.483,6.146,3.9835,0.0,0.0,8.0621,3.522,4.753,8.06,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house063.xml,78.22,89.608,70.4861,90.1099,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,52.3548,0.0,0.0,16.56,40.19,6.02,26.52,23.58,12.48,26.01,0.83,0.0,0.8005,0.4475,0.8313,1.2821,0.2625,1.7241,14.0448,27.1462,4.2481,0.0,0.0,22.494,15.9251,8.8105,22.73,15.93,9.47,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.34,10938.09,10325.45,49.31,1.0,49.31,78.22,78.22,0.0,46.44,1.0,46.44,78.22,78.22,0.0,75.63,90.818,69.0732,91.3267,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,51.6382,0.0,0.0,17.65,40.35,6.02,28.27,24.04,12.47,26.01,0.79,0.0,0.8005,0.4406,0.8314,1.2821,0.2625,1.7241,13.6265,26.3912,4.2484,0.0,0.0,21.823,15.7261,8.8105,22.05,15.73,9.47,20.83,3.97,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house064.xml,71.05,74.796,55.2751,77.7972,0.27453,1.0363,0.9811,1.0231,1.0401,1.0,40.5016,0.0,0.0,14.49,32.36,6.02,23.2,19.04,12.17,21.4,0.53,0.0,0.8005,0.4462,0.8378,1.2821,0.2625,1.6949,11.067,21.0934,3.9388,0.0,0.0,17.725,12.4121,7.9687,17.91,12.41,8.4,16.81,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,96.97,8655.31,8581.84,53.93,1.0,53.93,71.05,71.05,0.0,50.71,1.0,50.71,71.05,71.05,0.0,68.21,75.798,53.7786,78.8394,0.27453,1.0363,0.9811,1.0231,1.0401,1.0,39.6366,0.0,0.0,15.43,32.49,6.02,24.71,19.43,12.17,21.4,0.47,0.0,0.8006,0.439,0.8377,1.2821,0.2625,1.6949,10.5984,20.4266,3.9385,0.0,0.0,16.9729,12.2151,7.9687,17.15,12.22,8.4,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house065.xml,76.49,97.824,77.4717,101.2802,0.25234,0.9965,1.0174,1.0212,1.0353,1.0,58.1176,0.0,0.0,16.6,41.93,8.98,26.59,25.15,16.31,29.28,1.05,0.0,0.8003,0.4377,0.9485,1.2821,0.2625,1.7241,15.0361,27.078,6.2816,0.0,0.0,24.0872,16.2411,11.4181,24.34,16.24,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.12,12217.48,11443.76,47.97,1.0,47.97,76.49,76.49,0.0,45.18,1.0,45.18,76.49,76.49,0.0,74.26,99.133,76.2207,102.6355,0.25234,0.9965,1.0174,1.0212,1.0353,1.0,57.4956,0.0,0.0,17.77,42.11,8.98,28.46,25.62,16.31,29.27,1.01,0.0,0.8003,0.4315,0.9485,1.2821,0.2625,1.7241,14.6524,26.4018,6.2816,0.0,0.0,23.4717,16.0621,11.4181,23.72,16.06,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house066.xml,74.11,73.08,56.7816,76.6175,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.394,0.0,0.0,12.03,30.82,7.52,8.88,17.9,8.75,21.92,0.79,0.0,0.6004,0.452,0.9549,0.4432,0.2625,1.1111,8.316,21.4501,5.6426,0.0,0.0,6.1391,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.14,8758.25,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.831,56.1715,77.4048,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.105,0.0,0.0,12.7,30.92,7.52,9.35,18.15,8.75,21.91,0.78,0.0,0.602,0.4472,0.9549,0.4432,0.2625,1.1111,8.1906,21.0414,5.6426,0.0,0.0,6.0311,12.3541,6.5657,6.03,12.35,6.42,17.79,3.51,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house067.xml,60.48,86.432,54.1759,89.5739,0.29327,1.0114,1.0,1.0247,1.0364,1.0,40.5484,0.0,0.0,15.33,36.99,7.52,24.56,22.05,14.11,25.79,0.8,0.0,0.8003,0.4405,0.9034,1.2821,0.2625,1.6949,9.863,21.1379,2.9799,0.0,0.0,15.7992,12.5991,5.5908,15.97,12.6,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.81,8507.31,10034.12,48.76,1.0,48.76,60.48,60.48,0.0,45.91,1.0,45.91,60.48,60.48,0.0,58.49,87.796,53.2145,90.9875,0.29327,1.0114,1.0,1.0247,1.0364,1.0,40.1628,0.0,0.0,16.57,37.18,7.52,26.54,22.56,14.11,25.79,0.75,0.0,0.8004,0.4326,0.9034,1.2821,0.2625,1.6949,9.5611,20.5155,2.9799,0.0,0.0,15.3153,12.4491,5.5908,15.48,12.45,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house068.xml,74.6,117.763,85.7515,114.9538,0.25155,0.9761,1.0,1.0,0.9761,1.0,65.0516,0.0,0.0,24.83,51.58,7.52,39.769999999999996,30.76,14.44,32.85,0.98,0.0,1.6014,0.8729,0.898,2.5642,0.525,1.7241,17.904400000000003,29.1914,5.2856,0.0,0.0,28.6761,17.4021,10.1487,28.979999999999997,17.4,10.91,26.89,6.48,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.26,13537.37,13561.25,50.42,1.0,50.42,74.6,74.6,0.0,47.24,1.0,47.24,74.6,74.6,0.0,69.14,121.865,82.246,118.9579,0.25155,0.9761,1.0,1.0,0.9761,1.0,63.1312,0.0,0.0,28.46,52.190000000000005,7.52,45.58,32.239999999999995,14.44,32.84,0.86,0.0,1.6014,0.8422000000000001,0.8979,2.5642,0.525,1.7241,17.043,27.4808,5.2853,0.0,0.0,27.296599999999998,16.9811,10.1487,27.58,16.98,10.91,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 -house069.xml,73.17,109.905,79.6239,108.8156,0.2756,0.9901,1.0,1.0,0.9901,1.0,58.4106,0.0,0.0,26.04,46.7,7.52,41.72,27.55,14.16,29.32,0.33,0.0,0.8003,0.4451,0.8997,1.2821,0.2625,1.6949,19.2227,28.3878,5.2964,0.0,0.0,30.7949,16.7452,9.9777,31.12,16.75,10.52,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.66,12693.47,12488.7,56.18,1.0,56.18,73.17,73.17,0.0,52.95,1.0,52.95,73.17,73.17,0.0,69.43,113.927,78.3145,112.7978,0.2756,0.9901,1.0,1.0,0.9901,1.0,58.2668,0.0,0.0,29.67,47.28,7.52,47.53,28.99,14.16,29.31,0.15,0.0,0.8003,0.4282,0.8997,1.2821,0.2625,1.6949,19.0925,27.1996,5.2954,0.0,0.0,30.5841,16.6782,9.9758,30.9,16.68,10.52,22.98,3.75,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house070.xml,47.27,181.205,81.4375,172.2652,0.20124,0.9376,1.0139,1.0,0.9507,1.0,71.51,0.0,0.0,88.69,25.04,11.77,65.75,14.03,13.08,53.58,2.13,0.0,0.5978,0.4686,0.9994,0.4432,0.2625,1.1111,31.522,5.6831,8.2403,0.0,0.0,23.3712,3.184,9.1612,23.37,3.18,8.96,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8021.14,17265.59,52.08,1.0,52.08,47.27,47.27,1.0,46.09,1.0,46.09,47.27,47.27,0.0,43.15,195.801,80.3248,186.1411,0.20124,0.9376,1.0139,1.0,0.9507,1.0,71.009,0.0,0.0,103.81,24.64,11.77,77.29,14.58,13.09,53.57,2.01,0.0,0.5953,0.4437,0.9992,0.4432,0.2625,1.1111,30.8227,5.3014,8.2357,0.0,0.0,22.9492,3.137,9.1581,22.95,3.14,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house071.xml,75.59,58.726,46.6824,61.7558,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.317,0.0,0.0,20.49,8.6,9.85,16.29,4.89,11.46,19.19,0.58,0.0,1.4445999999999999,0.4621,0.9555,1.7253,0.2625,1.1111,22.8428,3.7986,7.0929,0.0,0.0,18.185299999999998,2.158,8.2483,18.240000000000002,2.16,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.93,4782.47,5911.95,51.53,1.0,51.53,75.59,75.59,0.0,46.49,1.0,46.49,75.59,75.59,0.0,72.01,61.249,46.3832,64.409,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.2112,0.0,0.0,23.19,8.49,9.85,18.470000000000002,4.97,11.46,19.19,0.53,0.0,1.4311,0.4481,0.9555,1.7253,0.2625,1.1111,22.7004,3.642,7.0929,0.0,0.0,18.099500000000003,2.134,8.2483,18.15,2.13,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 -house072.xml,61.3,132.313,79.7365,130.0764,0.228,0.98,0.9843,1.0191,0.9831,1.0,64.519,0.0,0.0,88.36,1.24,10.45,138.71,1.75,18.75,31.12,1.14,0.0,1.3274,0.1866,0.9613,1.7253,0.2625,1.7241,52.3525,0.6725,5.2854,0.0,0.0,80.3276,0.946,9.4796,88.24000000000001,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.14,16205.13,10556.75,55.89,1.0,55.89,61.3,61.3,0.0,49.01,1.0,49.01,61.3,61.3,0.0,55.28,146.193,79.4474,143.7218,0.228,0.98,0.9843,1.0191,0.9831,1.0,64.2202,0.0,0.0,102.46000000000001,1.05,10.45,160.72,1.67,18.77,31.11,1.11,0.0,1.3484,0.1651,0.96,1.7253,0.2625,1.7241,52.161100000000005,0.5949,5.2784,0.0,0.0,79.7403,0.946,9.4796,87.59,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 -house073.xml,32.73,221.348,114.3861,210.9364,0.16689,0.9421,1.0115,1.0,0.953,0.6036,90.8886,36.031,0.0,118.89,26.94,11.77,97.69999999999999,15.079999999999998,26.81,61.14,2.62,0.0,1.9848,0.9383,0.9976,2.1364,0.525,2.2727,28.4122,23.7307,14.8433,0.0,0.0,25.023500000000002,13.2821,33.8161,25.830000000000002,13.28,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.81,13740.36,20952.93,50.58,1.0,50.58,54.23,54.23,0.0,47.77,1.0,47.77,54.23,54.23,0.0,46.36,237.646,112.3444,226.4678,0.16689,0.9421,1.0115,1.0,0.953,0.9345,90.5474,5.9301,0.0,135.53,26.6,11.77,112.08,15.76,26.83,61.13,2.62,0.0,1.9764,0.8861,0.9967,2.1364,0.525,2.2727,28.0027,22.1113,14.8305,0.0,0.0,24.8293,13.107099999999999,33.8172,25.630000000000003,13.11,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house074.xml,72.32,78.283,59.6104,82.424,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.478,0.0,0.0,14.56,33.26,7.52,10.62,19.37,8.67,22.21,0.73,0.0,0.6076,0.4508,0.9528,0.4432,0.2625,1.0989,8.9211,22.8098,5.7265,0.0,0.0,6.5081,13.2851,6.6048,6.51,13.29,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.02,7266.11,9323.58,43.82,1.0,43.82,72.32,72.32,0.0,42.15,1.0,42.15,72.32,72.32,0.0,70.46,79.528,58.9975,83.7349,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.298,0.0,0.0,15.68,33.41,7.52,11.35,19.82,8.67,22.21,0.71,0.0,0.6126,0.4424,0.9528,0.4432,0.2625,1.0989,8.9,22.244,5.7265,0.0,0.0,6.4401,13.1991,6.6048,6.44,13.2,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house075.xml,71.02,82.174,60.5263,85.2269,0.21668,1.0219,1.015,1.0,1.0372,1.0,47.9968,0.0,0.0,32.55,15.53,11.38,52.0,9.82,19.4,22.71,0.0,0.0,0.8026,0.4151,0.9943,1.2821,0.2625,1.6949,22.9206,8.651,10.3037,0.0,0.0,36.6148,5.471,17.5642,39.69,5.47,18.52,17.68,0.98,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.27,12814.78,12969.57,46.66,1.0,46.66,71.02,71.02,0.0,43.88,1.0,43.88,71.02,71.02,0.0,61.28,86.1,54.7189,89.2988,0.21668,1.0219,1.015,1.0,1.0372,1.0,43.7354,0.0,0.0,36.47,15.55,11.38,58.26,10.06,19.41,22.7,0.0,0.0,0.8026,0.4056,0.9938,1.2821,0.2625,1.6949,18.8128,7.933,10.2912,0.0,0.0,30.0525,5.135,17.5518,32.58,5.14,18.5,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house076.xml,65.66,31.484,21.8604,33.2933,0.17959,1.0683,0.9752,1.015,1.0575,1.0,19.1096,0.0,0.0,6.97,4.85,5.78,11.12,3.45,12.13,13.69,0.19,0.0,0.8042,0.3688,0.8083,1.2821,0.2625,1.6949,5.4157,2.9472,2.7976,0.0,0.0,8.6342,2.098,5.8665,9.52,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,110.51,3938.29,3370.1,52.65,1.0,52.65,65.66,65.66,0.0,46.98,1.0,46.98,65.66,65.66,0.0,63.9,32.2,21.7577,34.0505,0.17959,1.0683,0.9752,1.015,1.0575,1.0,19.0722,0.0,0.0,7.83,4.77,5.78,12.48,3.45,12.14,13.68,0.13,0.0,0.8042,0.3628,0.8075,1.2821,0.2625,1.6949,5.3856,2.8783,2.7948,0.0,0.0,8.5861,2.083,5.8665,9.47,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house077.xml,77.39,39.288,32.5331,42.0367,0.20652,1.0669,0.9858,1.0173,1.07,1.0,31.0468,0.0,0.0,9.12,5.06,8.65,14.57,3.62,9.53,15.25,1.21,0.0,0.8024,0.3673,0.9764,1.2821,0.2625,1.0753,5.5271,2.6356,6.5863,0.0,0.0,8.8314,1.884,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.34,7529.68,8547.17,56.2,1.0,56.2,77.39,77.39,0.0,46.41,1.0,46.41,77.39,77.39,0.0,74.37,40.715,32.3999,43.5636,0.20652,1.0669,0.9858,1.0173,1.07,1.0,31.0006,0.0,0.0,10.72,4.89,8.65,17.12,3.59,9.53,15.24,1.22,0.0,0.8026,0.3577,0.976,1.2821,0.2625,1.0753,5.4805,2.5518,6.5835,0.0,0.0,8.7543,1.873,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house078.xml,57.41,134.788,76.387,133.0612,0.26735,0.9693,1.0184,1.0,0.9872,1.0,57.3592,0.0,0.0,30.33,57.23,8.98,48.58,32.68,16.25,36.97,1.29,0.0,0.8004,0.4598,0.9359,1.2821,0.2625,1.6949,13.9211,30.4257,3.7552,0.0,0.0,22.2976,17.3722,6.8003,24.45,17.37,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.57,12015.59,15297.07,53.89,1.0,53.89,57.41,57.41,0.0,50.74,1.0,50.74,57.41,57.41,0.0,54.65,139.367,75.1901,137.5815,0.26735,0.9693,1.0184,1.0,0.9872,1.0,57.2196,0.0,0.0,34.39,57.81,8.98,55.08,34.11,16.25,36.97,1.23,0.0,0.8004,0.445,0.9359,1.2821,0.2625,1.6949,13.8299,29.32,3.7552,0.0,0.0,22.1516,17.2972,6.8003,24.29,17.3,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house079.xml,49.27,93.28,44.636,90.5885,0.21789,0.9711,1.0,1.0,0.9711,1.0,39.198,0.0,0.0,46.24,2.96,10.35,32.44,1.47,12.36,33.73,0.0,0.0,1.2599,1.0585,0.9517,0.8864,0.525,1.1364,19.144,0.2339,2.8421,0.0,0.0,13.4191,0.116,3.3935,13.42,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,49.25,2743.87,5736.7,55.84,1.0,55.84,49.27,49.27,1.0,50.45,1.0,50.45,49.27,49.27,1.0,45.34,101.502,44.6979,98.5733,0.21789,0.9711,1.0,1.0,0.9711,1.0,39.105,0.0,0.0,54.85,2.58,10.35,38.08,1.3,12.36,33.72,0.0,0.0,1.2734,1.0387,0.9516,0.8864,0.525,1.1364,19.215400000000002,0.22560000000000002,2.8419,0.0,0.0,13.331100000000001,0.114,3.3935,13.329999999999998,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house080.xml,41.24,144.486,57.968,140.5774,0.27986,0.9545,1.0193,1.0,0.9729,1.0,46.636,0.0,0.0,32.14,63.38,8.98,23.36,37.129999999999995,10.83,37.29,2.7,0.0,1.2187000000000001,0.8961,0.9641,0.8864,0.525,1.1628,9.675699999999999,21.4744,1.6249,0.0,0.0,7.036,12.5781,1.9598,7.04,12.58,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.11,7098.27,16923.7,46.45,1.0,46.45,41.24,41.24,1.0,44.68,1.0,44.68,41.24,41.24,1.0,38.96,150.44,57.0231,146.3703,0.27986,0.9545,1.0193,1.0,0.9729,1.0,46.514,0.0,0.0,37.2,64.28,8.98,26.75,39.230000000000004,10.83,37.29,2.7,0.0,1.2328000000000001,0.8599,0.9636,0.8864,0.525,1.1628,9.7045,20.5006,1.625,0.0,0.0,6.978,12.513100000000001,1.9609,6.98,12.51,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house081.xml,65.16,25.582,18.9708,29.1137,0.16865,1.1489,0.9767,1.0141,1.1381,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5026,0.4514,0.9399,0.4432,0.2625,1.0638,3.3198,1.8586,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.13,3195.08,4182.44,41.98,1.0,41.98,65.16,65.16,0.0,40.6,1.0,40.6,65.16,65.16,0.0,64.78,25.709,18.9543,29.2582,0.16865,1.1489,0.9767,1.0141,1.1381,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house082.xml,63.08,159.502,99.1116,157.1164,0.26392,0.9504,1.0364,1.0,0.985,1.0,75.2902,0.0,0.0,35.56,68.7,10.4,56.96,39.85,18.4,44.06,0.79,0.0,1.6006,0.9053,0.9584,2.5642,0.525,1.6949,23.964,36.903999999999996,2.5587,0.0,0.0,38.390299999999996,21.4052,4.5249,41.38,21.41,9.11,30.29,5.39,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.47,16155.88,18128.3,54.93,1.0,54.93,63.08,63.08,0.0,51.61,1.0,51.61,63.08,63.08,0.0,57.4,165.55,93.6078,163.0739,0.26392,0.9504,1.0364,1.0,0.985,1.0,71.8246,0.0,0.0,41.14,69.46,10.4,65.92,41.76,18.4,44.05,0.48,0.0,1.6006,0.8734,0.9584,2.5642,0.525,1.6949,23.1931,34.3401,2.5587,0.0,0.0,37.153800000000004,20.644199999999998,4.5249,40.06,20.65,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 -house083.xml,54.38,32.894,20.1355,37.0256,0.32012,1.1467,0.9558,1.027,1.1256,1.0,17.879,0.0,0.0,3.14,12.23,4.42,2.61,7.08,5.4,12.77,0.34,0.0,0.5335,0.4537,0.8905,0.4432,0.2625,1.087,1.6454,6.3565,3.1696,0.0,0.0,1.367,3.678,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.51,2655.34,4174.59,50.52,1.0,50.52,54.38,54.38,0.0,45.55,1.0,45.55,54.38,54.38,0.0,53.65,33.166,20.0281,37.3318,0.32012,1.1467,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4486,0.8903,0.4432,0.2625,1.087,1.6524,6.2436,3.1682,0.0,0.0,1.352,3.654,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house084.xml,12.32,139.751,88.6655,137.0862,0.1644,0.9676,1.0,1.0138,0.9809,0.1904,73.0452,59.137,0.0,71.38,16.04,10.48,116.88,10.61,18.32,39.52,2.32,0.0,0.7634,1.1803,1.9404,1.25,0.7875000000000001,3.3898,43.0046,8.4329,6.6602,0.0,0.0,70.4131,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12881.39,10080.01,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.49,148.019,88.4403,145.1966,0.1644,0.9676,1.0,1.0138,0.9809,0.9111,72.822,6.4772,0.0,79.7,16.0,10.48,130.14,10.61,18.34,39.52,2.32,0.0,0.7655,1.1764000000000001,1.9394,1.25,0.7875000000000001,3.3898,42.9217,8.2927,6.66,0.0,0.0,70.0849,5.509,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 -house085.xml,-25.28,118.946,70.182,118.249,0.2259,0.9641,1.0312,1.0,0.9941,-0.4259,59.453,84.775,0.0,52.64,14.0,14.53,39.81,7.09,16.3,37.79,0.0,0.0,1.1657,1.0367,1.0245,0.8864,0.525,1.1494,41.334,1.6152,2.6597,0.0,0.0,31.2393,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.81,8607.59,52.58,1.0,52.58,59.35,59.35,0.0,47.34,1.0,47.34,59.35,59.35,0.0,51.59,130.711,70.5645,129.9451,0.2259,0.9641,1.0312,1.0,0.9941,0.95,59.271,2.9636,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.0314,1.0241,0.8864,0.525,1.1494,41.7725,1.5602,2.6599,0.0,0.0,31.0813,0.794,2.9852,31.080000000000002,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 -house086.xml,52.91,74.196,40.9202,77.3411,0.30318,1.0164,1.0,1.0255,1.0424,1.0,33.686,0.0,0.0,21.8,19.27,8.82,16.29,10.93,10.26,23.15,0.93,0.23,0.593,0.4629,0.9554,0.4432,0.2625,1.1111,14.4405,8.7534,1.4643,0.0,0.0,10.7941,4.964,1.703,10.79,4.96,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0,53.57,6093.41,10911.39,50.03,1.0,50.03,52.91,52.91,0.0,48.62,1.0,48.62,52.91,52.91,0.0,52.31,74.617,40.685,77.78,0.30318,1.0164,1.0,1.0255,1.0424,1.0,33.569,0.0,0.0,22.22,19.26,8.82,16.62,11.0,10.26,23.15,0.93,0.24,0.5927,0.4598,0.9554,0.4432,0.2625,1.1111,14.3109,8.6479,1.4643,0.0,0.0,10.7021,4.938,1.703,10.7,4.94,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0 -house087.xml,48.82,29.58,15.6556,32.0689,0.21133,1.0973,0.9708,1.0177,1.0841,1.0,15.5404,0.0,0.0,6.57,4.35,5.78,5.47,2.47,12.14,12.56,0.32,0.0,0.5323,0.4631,0.8078,0.4432,0.2625,3.3898,3.7686,2.7167,1.0493,0.0,0.0,3.138,1.54,2.2016,3.14,1.54,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026,77.94,2633.54,3116.88,47.4,1.0,47.4,48.82,48.82,0.0,42.95,1.0,42.95,48.82,48.82,0.0,47.41,30.323,15.5849,32.8744,0.21133,1.0973,0.9708,1.0177,1.0841,1.0,15.4904,0.0,0.0,7.37,4.3,5.78,6.05,2.49,12.15,12.55,0.31,0.0,0.5399,0.4535,0.8071,0.4432,0.2625,3.3898,3.7824,2.6342,1.0483,0.0,0.0,3.105,1.525,2.2016,3.11,1.53,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026 -house088.xml,55.92,125.436,69.6151,124.4973,0.27196,0.9742,1.0188,1.0,0.9925,1.0,54.5306,0.0,0.0,55.73,23.27,11.38,88.93,14.17,19.75,33.88,1.18,0.0,0.8034,0.431,0.9936,1.2821,0.2625,1.7241,28.7666,10.0054,8.4341,0.0,0.0,45.9075,6.0941,14.6358,49.77,6.09,15.74,21.85,0.56,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,99.45,13216.11,13388.99,51.4,1.0,51.4,55.92,55.92,0.0,48.26,1.0,48.26,55.92,55.92,0.0,51.64,133.593,68.4683,132.5933,0.27196,0.9742,1.0188,1.0,0.9925,1.0,53.9388,0.0,0.0,63.89,23.35,11.38,101.96,14.71,19.77,33.87,1.11,0.0,0.8033,0.4166,0.993,1.2821,0.2625,1.7241,28.1888,9.4765,8.429,0.0,0.0,44.9869,5.9721,14.6358,48.77,5.97,15.74,21.85,0.52,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house001.xml,62.67,31.972,21.37,34.0979,0.21374,1.0795,0.9705,1.0179,1.0665,1.0,19.864,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2477,0.8521,1.2821,0.2625,1.6393,5.5795,1.1293,4.0052,0.0,0.0,8.9135,1.197,7.7055,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5819.88,7644.8,57.42,1.0,57.42,62.67,62.67,0.0,46.56,1.0,46.56,62.67,62.67,0.0,59.89,33.336,21.2934,35.5526,0.21374,1.0795,0.9705,1.0179,1.0665,1.0,19.8364,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8026,0.2396,0.8512,1.2821,0.2625,1.6393,5.5506,1.0868,4.0011,0.0,0.0,8.8663,1.191,7.7055,9.78,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house002.xml,70.23,115.239,79.5892,113.323,0.18473,0.9834,1.0,1.0,0.9834,1.0,69.18,0.0,0.0,52.3,21.41,9.53,42.22,12.28,10.55,30.8,1.19,0.0,0.5491,0.4579,0.9819,0.4432,0.2625,1.087,34.1428,11.1073,8.5301,0.0,0.0,27.5612,6.3691,9.443,27.56,6.37,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.11,12589.03,18002.31,50.88,1.0,50.88,70.23,70.23,0.0,48.41,1.0,48.41,70.23,70.23,0.0,64.81,123.611,78.7839,121.5558,0.18473,0.9834,1.0,1.0,0.9834,1.0,68.716,0.0,0.0,60.62,21.5,9.53,48.65,12.81,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.9157,10.5849,8.5293,0.0,0.0,27.2172,6.3051,9.443,27.22,6.31,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 +house003.xml,62.92,88.645,55.362,87.9853,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.5606,0.0,0.0,28.19,21.63,8.82,31.39,12.32,16.03,29.0,1.0,0.0,1.4119000000000002,0.461,0.9324,1.7253,0.2625,1.6949,18.2952,11.9779,1.9778,0.0,0.0,18.9375,6.8221,3.5952,19.729999999999997,6.82,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,74.02,9462.7,12880.13,49.15,1.0,49.15,62.92,62.92,0.0,47.2,1.0,47.2,62.92,62.92,0.0,59.44,92.157,54.3728,91.4712,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.2032,0.0,0.0,31.95,21.43,8.82,35.08,12.76,16.04,29.0,0.97,0.0,1.4140000000000001,0.441,0.9318,1.7253,0.2625,1.6949,17.9941,11.3373,1.9764,0.0,0.0,18.5709,6.7491,3.5952,19.35,6.75,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 +house004.xml,60.97,90.446,57.5881,94.4507,0.3198,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.75,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1652,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.53,4964.51,7146.14,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.931,57.7752,104.3555,0.31979,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.38,0.5657,4.8635,0.0,0.0,30.6663,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 +house005.xml,60.32,28.235,18.3565,30.4326,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.788,0.0,0.0,5.0,4.01,5.78,4.33,2.28,12.12,12.72,0.72,0.0,0.5125,0.4626,0.8089,0.4432,0.2625,1.6949,1.5782,2.8722,0.8716,2.3849,0.0366,1.365,1.63,1.8264,1.37,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.36,2692.93,2997.34,49.97,1.0,49.97,60.32,60.32,0.0,44.75,1.0,44.75,60.32,60.32,0.0,58.43,29.066,18.3044,31.3282,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.7682,0.0,0.0,5.92,3.94,5.78,4.97,2.29,12.13,12.71,0.72,0.0,0.5275,0.4518,0.8079,0.4432,0.2625,1.6949,1.6137,2.791,0.8706,2.3805,0.0366,1.356,1.622,1.8264,1.36,1.62,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 +house006.xml,71.74,92.114,67.327,93.844,0.23948,1.0022,1.0165,1.0,1.0188,1.0,57.422,0.0,0.0,32.58,20.6,10.53,24.52,11.92,11.82,27.5,0.91,0.0,1.1782,0.9077999999999999,0.9796,0.8864,0.525,1.0989,22.3455,12.8279,9.4726,0.0,0.0,16.813200000000002,7.42,10.6265,16.82,7.42,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.99,10225.1,13750.82,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.095,66.747,95.8622,0.23948,1.0022,1.0165,1.0,1.0188,1.0,57.268,0.0,0.0,34.74,20.48,10.53,26.18,12.16,11.82,27.49,0.85,0.0,1.1766,0.8844000000000001,0.9796,0.8864,0.525,1.0989,22.1667,12.4267,9.4726,0.0,0.0,16.7002,7.378,10.6265,16.700000000000003,7.38,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 +house007.xml,76.94,46.876,38.1153,49.5388,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,15.98,4.62,8.84,13.68,2.59,9.87,17.03,0.41,0.0,0.518,0.4679,0.9739,0.4432,0.2625,1.087,13.3192,1.08,7.592,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.2,8954.51,10697.87,57.11,1.0,57.11,76.94,76.94,0.0,48.03,1.0,48.03,76.94,76.94,0.0,73.9,48.977,38.2493,51.7591,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,18.29,4.48,8.84,15.47,2.57,9.87,17.02,0.35,0.0,0.5242,0.4572,0.9735,0.4432,0.2625,1.087,13.4809,1.0554,7.589,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 +house008.xml,62.86,161.24,98.5552,156.7814,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.8726,0.0,0.0,97.9,10.46,13.21,155.99,6.65,22.24,38.43,1.24,0.0,0.8046,0.4129,1.0241,1.2821,0.2625,1.7241,47.6657,5.6347,7.7118,0.0,0.0,75.9538,3.583,12.9828,83.84,3.58,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.57,24536.57,34298.38,51.56,1.0,51.56,62.86,62.86,0.0,46.66,1.0,46.66,62.86,62.86,0.0,57.41,175.769,98.115,170.9086,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.7344,0.0,0.0,112.92,10.12,13.21,179.93,6.72,22.26,38.43,1.1,0.0,0.8046,0.3951,1.0235,1.2821,0.2625,1.7241,47.5117,5.354,7.7073,0.0,0.0,75.7083,3.558,12.9828,83.57,3.56,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 +house009.xml,62.57,99.612,63.8505,102.0464,0.28589,1.0046,1.0197,1.0,1.0244,1.0,47.5506,0.0,0.0,20.07,41.83,8.98,32.15,24.91,16.38,27.85,0.88,0.0,0.8004,0.4409,0.9448,1.2821,0.2625,1.7241,11.1288,22.589,6.2937,0.0,0.0,17.8259,13.4511,11.4851,18.01,13.45,12.35,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.95,10149.88,11527.01,48.9,1.0,48.9,62.57,62.57,0.0,45.72,1.0,45.72,62.57,62.57,0.0,59.53,102.499,62.5055,105.004,0.28589,1.0046,1.0197,1.0,1.0244,1.0,47.0992,0.0,0.0,22.63,42.24,8.98,36.25,25.92,16.38,27.84,0.82,0.0,0.8004,0.4278,0.9448,1.2821,0.2625,1.7241,10.7693,21.652,6.2942,0.0,0.0,17.25,13.2881,11.486,17.43,13.29,12.35,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house010.xml,63.25,256.9707,147.284,232.8321,0.28135,0.9061,1.0,1.0,0.9061,0.9999,104.568,0.006,0.0,53.019999999999996,137.79,7.1,84.82,76.19,13.56,59.06,0.0,0.0,2.4048,1.4233,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.1554,75.0145,1.7482,0.0,0.0,40.243900000000004,41.4794,3.3382,43.879999999999995,41.48,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.39,17438.59,19968.19,54.59,1.0,54.59,63.26,63.26,0.0,49.22,1.0,49.22,63.26,63.26,0.0,60.6,266.8179,146.5169,241.7543,0.28135,0.9061,1.0,1.0,0.9061,0.9999,104.1554,0.006,0.0,59.61,141.05,7.1,95.37,78.11,13.56,59.06,0.0,0.0,2.4049,1.4212,1.7748,3.8463000000000003,0.7875000000000001,3.3898,24.8397,74.5644,1.7478,0.0,0.0,39.7376,41.2934,3.3382,43.32,41.3,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 +house011.xml,68.57,40.222,29.4229,42.9106,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.7284,0.0,0.0,8.92,6.49,7.88,14.28,4.48,8.89,16.77,0.16,0.0,0.8011,0.3803,0.9632,1.2821,0.2625,1.087,6.9487,2.4888,7.2764,0.0,0.0,11.1201,1.718,8.211,12.26,1.72,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,96.79,4269.58,4134.75,56.82,1.0,56.82,68.57,68.57,0.0,53.21,1.0,53.21,68.57,68.57,0.0,66.31,41.435,29.3104,44.2047,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.6828,0.0,0.0,10.35,6.37,7.88,16.57,4.48,8.89,16.77,0.07,0.0,0.8013,0.3727,0.9629,1.2821,0.2625,1.087,6.9043,2.4231,7.2739,0.0,0.0,11.0466,1.707,8.211,12.18,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house012.xml,49.98,70.802,37.0256,74.0781,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,54.29,1.0,54.29,49.98,49.98,1.0,46.06,76.71,36.9649,80.2595,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.4553,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house013.xml,59.02,44.135,27.466,46.5394,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.993,0.0,0.0,12.88,1.84,10.35,9.36,0.87,11.96,18.45,0.61,0.0,0.6098,0.5556,0.9616,0.4432,0.2625,1.1111,9.7201,0.383,2.9779,0.0,0.0,7.0651,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.51,1719.33,2835.28,52.76,1.0,52.76,59.02,59.02,0.0,47.39,1.0,47.39,59.02,59.02,0.0,57.68,45.035,27.3935,47.4884,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.878,0.0,0.0,13.89,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5539,0.9616,0.4432,0.2625,1.1111,9.6581,0.384,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 +house014.xml,55.26,184.213,100.4373,181.7437,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.361,0.0,0.0,89.78999999999999,28.339999999999996,15.5,66.25,15.399999999999999,17.19,47.42,3.17,0.0,1.2001,0.9657,1.0132,0.8864,0.525,1.1236,43.5969,12.916599999999999,3.4267,0.0,0.0,32.1693,7.018,3.7999,32.17,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9572.09,17328.52,48.4,1.0,48.4,55.26,55.26,0.0,46.03,1.0,46.03,55.26,55.26,0.0,50.66,199.236,99.589,196.5653,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.182,0.0,0.0,105.25999999999999,27.91,15.5,77.56,15.98,17.19,47.41,3.17,0.0,1.2027999999999999,0.9164,1.0132,0.8864,0.525,1.1236,43.4562,12.2101,3.4267,0.0,0.0,32.0213,6.989000000000001,3.7999,32.019999999999996,6.99,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 +house015.xml,16.79,37.845,21.3741,42.9423,0.27913,1.1531,0.9615,1.0235,1.1347,0.3373,17.126,11.35,0.0,0.24,22.01,3.31,0.29,11.91,5.92,12.0,0.29,0.0,0.36,0.4853,0.6894,0.4432,0.2625,1.2346,0.1771,10.4922,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.6,879.17,3428.3,49.73,1.0,49.73,49.77,49.77,1.0,47.7,1.0,47.7,49.77,49.77,0.0,47.2,37.906,21.3686,43.0115,0.27913,1.1531,0.9615,1.0235,1.1347,0.95,17.126,0.8563,0.0,0.26,22.06,3.31,0.3,11.95,5.92,12.0,0.29,0.0,0.373,0.4848,0.6894,0.4432,0.2625,1.2346,0.1835,10.4803,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 +house016.xml,51.6,104.473,56.1773,108.8666,0.27655,1.0184,1.0,1.0233,1.0421,1.0,39.1962,0.0,0.0,0.68,72.2,5.6,0.59,38.95,11.56,25.13,0.87,0.0,0.5134,0.4866,0.8215,0.4432,0.2625,1.6949,0.3127,34.2035,2.9331,0.0,0.0,0.27,18.4522,6.0515,0.27,18.45,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.33,6035.93,8008.6,51.13,1.0,51.13,51.6,51.6,0.0,48.95,1.0,48.95,51.6,51.6,0.0,51.28,104.747,55.9715,109.1521,0.27655,1.0184,1.0,1.0233,1.0421,1.0,39.1012,0.0,0.0,0.74,72.42,5.6,0.63,39.12,11.56,25.13,0.85,0.0,0.5251,0.486,0.8211,0.4432,0.2625,1.6949,0.3128,34.0019,2.9318,0.0,0.0,0.264,18.3672,6.0515,0.26,18.37,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 +house017.xml,69.43,58.607,42.6244,61.3934,0.20237,1.0301,1.0,1.017,1.0475,1.0,37.1856,0.0,0.0,21.1,5.63,10.94,33.64,3.77,18.88,20.27,0.67,0.0,0.8043,0.3915,0.9819,1.2821,0.2625,1.6949,22.0678,2.0373,2.3734,0.0,0.0,35.178,1.366,4.0967,38.68,1.37,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,180.19,8417.14,4459.13,52.58,1.0,52.58,69.43,69.43,0.0,47.67,1.0,47.67,69.43,69.43,0.0,65.11,61.847,42.1859,64.7875,0.20237,1.0301,1.0,1.017,1.0475,1.0,36.8728,0.0,0.0,24.58,5.43,10.94,39.17,3.69,18.9,20.26,0.64,0.0,0.8046,0.3866,0.981,1.2821,0.2625,1.6949,21.6972,1.9956,2.3711,0.0,0.0,34.5722,1.355,4.0967,38.01,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 +house018.xml,31.37,276.4361,144.2302,264.9727,0.22628,0.9122,1.0625,0.9891,0.9585,0.5763,114.9892,48.722,0.0,152.29000000000002,32.43,17.32,242.51,21.15,27.24,72.71,1.67,0.0,2.4159,1.2037,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.8717,14.3819,5.9486,0.0,0.0,119.2298,9.38,9.3478,130.71,9.379999999999999,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.62,24796.13,25966.26,51.27,1.0,51.27,54.43,54.43,0.0,47.29,1.0,47.29,54.43,54.43,0.0,45.69,297.5593,143.2268,285.2199,0.22628,0.9122,1.0625,0.9891,0.9585,0.9099,114.611,10.3285,0.0,174.45999999999998,31.94,17.32,277.71,21.57,27.24,72.7,1.12,0.0,2.4171,1.1632,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.50450000000001,13.749300000000002,5.946,0.0,0.0,118.58680000000001,9.289,9.3478,130.01,9.29,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 +house019.xml,64.86,163.996,103.8723,160.1461,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.7478,0.0,0.0,98.89,10.31,13.21,157.58,6.86,22.25,41.58,0.0,0.0,0.8046,0.3947,1.0241,1.2821,0.2625,1.7241,59.2672,3.1091,7.336,0.0,0.0,94.4402,2.068,12.3506,104.19,2.07,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,77.67,26309.23,34689.05,52.01,1.0,52.01,64.86,64.86,0.0,46.8,1.0,46.8,64.86,64.86,0.0,59.12,179.483,103.6132,175.2695,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.5956,0.0,0.0,114.74,9.96,13.21,182.83,6.72,22.26,41.57,0.0,0.0,0.8046,0.3891,1.0235,1.2821,0.2625,1.7241,59.0725,3.0455,7.3322,0.0,0.0,94.1293,2.055,12.3515,103.85,2.06,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 +house020.xml,39.65,160.6119,130.0403,157.1826,0.25999,0.9408,1.0179,1.0219,0.9786,0.4793,108.1472,56.311,0.0,90.99,12.98,13.07,105.52999999999999,7.4399999999999995,14.11,43.46,0.11,0.0,1.9514,2.0103,1.0069,2.1364,1.05,1.087,72.1544,8.864,12.112,0.0,0.0,86.994,5.101,13.075,93.85000000000001,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,114.0,13147.67,11784.94,56.22,1.0,56.22,82.73,82.73,0.0,52.04,1.0,52.04,82.73,82.73,0.0,71.76,172.9472,130.4341,169.2545,0.25999,0.9408,1.0179,1.0219,0.9786,0.9311,108.1472,7.4461,0.0,103.67999999999999,12.64,13.07,119.67999999999999,7.3,14.11,43.45,0.11,0.0,1.9665,1.9933,1.0067,2.1364,1.05,1.087,72.6046,8.81,12.1094,0.0,0.0,86.994,5.101,13.075,93.85000000000001,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 +house021.xml,59.6,107.634,67.3106,112.9349,0.27058,1.0115,1.0373,1.0,1.0492,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8046,0.3864,1.0544,1.2821,0.2625,1.6949,28.9019,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.52,23392.86,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.173,66.9515,120.8452,0.27058,1.0115,1.0373,1.0,1.0492,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6424,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 +house022.xml,54.49,80.919,45.8202,84.0895,0.24278,1.0358,0.9832,1.0204,1.0392,1.0,32.4456,0.0,0.0,0.53,53.6,4.49,0.5,29.4,5.69,21.32,0.98,0.0,0.4744,0.4787,0.8759,0.4432,0.2625,1.1111,0.7203,25.3301,1.8308,0.0,0.0,0.673,13.8911,2.3225,0.67,13.89,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.03,4106.82,6371.48,50.9,1.0,50.9,54.49,54.49,0.0,48.57,1.0,48.57,54.49,54.49,0.0,54.12,81.205,45.6667,84.3867,0.24278,1.0358,0.9832,1.0204,1.0392,1.0,32.3626,0.0,0.0,0.6,53.82,4.49,0.54,29.56,5.69,21.32,0.98,0.0,0.4907,0.478,0.8757,0.4432,0.2625,1.1111,0.7317,25.1652,1.8297,0.0,0.0,0.661,13.8221,2.3215,0.66,13.82,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 +house023.xml,72.62,87.921,64.2202,88.4272,0.26062,1.0022,0.982,1.0219,1.0058,1.0,51.112,0.0,0.0,16.78,39.79,6.02,12.25,22.62,7.25,24.51,0.83,0.0,0.6071,0.4618,0.9221,0.4432,0.2625,1.1111,10.6811,25.7509,4.9491,0.0,0.0,7.7981,14.6411,5.9636,7.8,14.64,5.83,18.81,4.03,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.44,7661.57,10232.75,45.82,1.0,45.82,72.62,72.62,0.0,44.01,1.0,44.01,72.62,72.62,0.0,70.35,89.142,63.0756,89.6552,0.26062,1.0022,0.982,1.0219,1.0058,1.0,50.507,0.0,0.0,17.88,39.95,6.02,12.99,23.07,7.25,24.51,0.79,0.0,0.6101,0.4547,0.922,0.4432,0.2625,1.1111,10.4629,25.0623,4.9485,0.0,0.0,7.6011,14.4711,5.9636,7.6,14.47,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house024.xml,68.95,107.282,74.6711,108.2993,0.27108,0.9909,1.0187,1.0,1.0095,1.0,55.9756,0.0,0.0,22.26,45.03,8.98,35.66,26.9,16.05,30.27,0.76,0.0,0.8002,0.4395,0.9477,1.2821,0.2625,1.6949,15.2715,24.3432,6.6384,0.0,0.0,24.4663,14.5421,11.8729,24.72,14.54,12.52,23.87,4.55,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.62,11944.85,12374.68,53.03,1.0,53.03,68.95,68.95,0.0,49.92,1.0,49.92,68.95,68.95,0.0,64.75,110.753,72.3894,111.8033,0.27108,0.9909,1.0187,1.0,1.0095,1.0,54.8028,0.0,0.0,25.4,45.52,8.98,40.69,28.12,16.05,30.27,0.6,0.0,0.8003,0.425,0.9476,1.2821,0.2625,1.6949,14.7936,23.1628,6.638,0.0,0.0,23.7003,14.3071,11.8729,23.95,14.31,12.52,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house025.xml,9.54,195.002,105.1975,186.8374,0.15772,0.9551,1.0109,0.9924,0.9581,0.1694,84.722,70.37,0.0,108.46,19.58,12.53,80.1,10.36,13.85,51.62,2.81,0.0,1.2004,0.9924,1.0048,0.8864,0.525,1.1111,53.4253,9.9823,2.4219,0.0,0.0,39.4534,5.282,2.6782,39.45,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.68,2941.35,13536.25,51.07,1.0,51.07,56.3,56.3,0.0,46.05,1.0,46.05,56.3,56.3,0.0,49.63,209.107,104.8069,200.3518,0.15772,0.9551,1.0109,0.9924,0.9581,0.9488,84.239,4.3122,0.0,122.46,19.68,12.53,89.84,10.44,13.86,51.62,2.81,0.0,1.2084,0.9905999999999999,1.0045,0.8864,0.525,1.1111,53.3054,9.7122,2.4232,0.0,0.0,39.1064,5.148,2.6803,39.11,5.15,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 +house026.xml,65.17,72.568,49.4041,75.8062,0.21422,1.0262,1.0,1.018,1.0446,1.0,37.8916,0.0,0.0,12.1,29.5,7.52,19.38,17.78,14.12,22.79,0.66,0.0,0.8003,0.4357,1.8052,1.2821,0.2625,3.3898,6.22,16.6625,7.0676,0.0,0.0,9.9646,10.0401,13.272,10.99,10.04,14.26,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.76,8167.79,8520.99,47.29,1.0,47.29,65.17,65.17,0.0,44.51,1.0,44.51,65.17,65.17,0.0,62.95,74.057,48.6982,77.3617,0.21422,1.0262,1.0,1.018,1.0446,1.0,37.6504,0.0,0.0,13.44,29.7,7.52,21.53,18.3,14.12,22.78,0.62,0.0,0.8003,0.4261,1.8048,1.2821,0.2625,3.3898,6.0345,16.1781,7.0666,0.0,0.0,9.6672,9.9671,13.272,10.66,9.97,14.26,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 +house027.xml,66.92,87.976,61.0968,91.3031,0.30309,1.012,1.0,1.0255,1.0378,1.0,45.7152,0.0,0.0,16.18,37.74,7.52,25.92,22.48,14.43,25.76,0.78,0.0,0.8004,0.4409,0.8981,1.2821,0.2625,1.7241,10.6143,20.9711,6.0934,0.0,0.0,17.0016,12.4881,11.698,17.18,12.49,11.7,19.66,3.76,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,91.0,9657.78,10226.65,51.99,1.0,51.99,66.92,66.92,0.0,48.92,1.0,48.92,66.92,66.92,0.0,64.38,89.151,59.5675,92.5225,0.30309,1.012,1.0,1.0255,1.0378,1.0,44.8116,0.0,0.0,17.27,37.9,7.52,27.66,22.92,14.43,25.76,0.71,0.0,0.8004,0.4341,0.8982,1.2821,0.2625,1.7241,10.1567,20.2587,6.0932,0.0,0.0,16.2683,12.2511,11.696,16.44,12.25,11.7,19.66,3.4,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 +house028.xml,66.25,114.58,77.329,116.7181,0.28673,0.9799,1.0396,1.0,1.0187,1.0,62.146,0.0,0.0,23.19,48.32,10.4,16.75,28.12,11.65,31.53,1.14,0.0,0.6137,0.4512,0.9924,0.4432,0.2625,1.1111,13.8194,28.9563,8.0122,0.0,0.0,9.9811,16.8482,8.971,9.98,16.85,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.34,9361.79,13448.73,44.76,1.0,44.76,66.25,66.25,0.0,42.91,1.0,42.91,66.25,66.25,0.0,62.87,118.33,75.7854,120.5381,0.28673,0.9799,1.0396,1.0,1.0187,1.0,61.597,0.0,0.0,26.5,48.86,10.4,18.96,29.3,11.65,31.52,1.05,0.0,0.6196,0.4378,0.9924,0.4432,0.2625,1.1111,13.6426,27.6505,8.0122,0.0,0.0,9.7601,16.5811,8.971,9.76,16.58,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house029.xml,61.74,112.478,69.441,112.4709,0.25558,0.9826,1.0176,1.0,0.9999,1.0,53.0334,0.0,0.0,22.84,47.42,8.98,36.599999999999994,28.72,16.06,32.24,1.0,0.0,1.6003,0.8659,1.8954,2.5642,0.525,3.3898,14.4869,23.913899999999998,3.7572,0.0,0.0,23.2125,14.484200000000001,6.7198,23.45,14.489999999999998,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.85,11182.76,13026.54,49.5,1.0,49.5,61.74,61.74,0.0,46.36,1.0,46.36,61.74,61.74,0.0,58.26,116.33,67.768,116.3227,0.25558,0.9826,1.0176,1.0,0.9999,1.0,52.4388,0.0,0.0,26.240000000000002,47.980000000000004,8.98,42.06,30.060000000000002,16.06,32.24,0.9,0.0,1.6003,0.8371,1.8952,2.5642,0.525,3.3898,13.9912,22.811799999999998,3.757,0.0,0.0,22.4177,14.2912,6.7198,22.659999999999997,14.29,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 +house030.xml,60.16,135.548,81.7643,135.9003,0.29437,0.9635,1.0406,1.0,1.0026,1.0,61.6232,0.0,0.0,29.14,57.67999999999999,10.4,46.69,34.74,17.92,37.11,1.21,0.0,1.6004,0.869,1.9678,2.5642,0.525,3.3898,18.4629,31.954900000000002,2.6766,0.0,0.0,29.5815,19.2682,4.6108,29.900000000000002,19.27,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.81,13111.07,15603.29,50.33,1.0,50.33,60.16,60.16,0.0,46.99,1.0,46.99,60.16,60.16,0.0,56.55,140.242,79.5103,140.6065,0.29437,0.9635,1.0406,1.0,1.0026,1.0,60.828,0.0,0.0,33.28,58.36,10.4,53.33,36.36,17.92,37.11,1.08,0.0,1.6004,0.8400000000000001,1.9676,2.5642,0.525,3.3898,17.8245,30.4285,2.6764,0.0,0.0,28.5583,18.9812,4.6108,28.86,18.990000000000002,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 +house031.xml,55.71,208.0042,116.6366,209.3557,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,94.18,0.0,0.0,122.45000000000002,19.84,14.53,89.82,10.48,17.32,50.05,1.16,0.0,2.4168,1.9881,1.0352,1.7728,1.05,1.2346,60.229600000000005,13.917200000000001,3.1868,0.0,0.0,44.1804,7.352,3.8004,44.18,7.36,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8085.37,14528.41,49.52,1.0,49.52,55.71,55.71,0.0,44.8,1.0,44.8,55.71,55.71,0.0,51.8,222.9991,116.2575,224.448,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,93.735,0.0,0.0,137.38,19.88,14.53,100.2,10.53,17.33,50.04,1.16,0.0,2.4322999999999997,1.9832,1.035,1.7728,1.05,1.2346,60.158899999999996,13.6127,3.187,0.0,0.0,43.8784,7.208,3.8015,43.87,7.21,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 +house032.xml,70.85,125.942,90.8774,128.2737,0.26783,0.978,1.0185,1.0225,1.0185,1.0,66.9232,0.0,0.0,26.45,56.43,8.98,42.35,33.53,16.33,33.12,0.96,0.0,1.6019999999999999,0.8782,0.9474,2.5642,0.525,1.7241,18.1945,33.9395,7.1814,0.0,0.0,29.1293,20.1682,13.0697,29.43,20.17,13.07,25.94,5.63,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.47,15478.66,14408.54,54.66,1.0,54.66,70.85,70.85,0.0,51.33,1.0,51.33,70.85,70.85,0.0,67.29,127.974,87.7085,130.3433,0.26783,0.978,1.0185,1.0225,1.0185,1.0,64.9386,0.0,0.0,28.36,56.7,8.98,45.39,34.3,16.33,33.12,0.82,0.0,1.6021,0.8627,0.9474,2.5642,0.525,1.7241,17.3396,32.6015,7.1814,0.0,0.0,27.7587,19.7222,13.0697,28.05,19.72,13.07,25.94,4.65,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house033.xml,66.99,151.344,98.293,146.7317,0.22297,0.9548,1.0154,1.0,0.9695,1.0,81.1744,0.0,0.0,69.81,28.159999999999997,11.38,111.38999999999999,17.62,19.4,42.0,0.0,0.0,1.6073,0.8359,0.9947,2.5642,0.525,1.6949,52.339600000000004,11.2348,3.4067,0.0,0.0,83.5082,7.022,5.8048,92.34,7.0200000000000005,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,95.48,22069.44,23841.22,52.58,1.0,52.58,66.99,66.99,0.0,49.36,1.0,49.36,66.99,66.99,0.0,61.83,162.856,97.6232,157.8929,0.22297,0.9548,1.0154,1.0,0.9695,1.0,80.9784,0.0,0.0,81.28999999999999,28.19,11.38,129.7,18.28,19.41,41.99,0.0,0.0,1.6072,0.8071,0.994,2.5642,0.525,1.6949,52.152100000000004,10.755700000000001,3.4044,0.0,0.0,83.2107,6.965,5.8048,92.00999999999999,6.970000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 +house034.xml,62.02,60.576,38.6477,62.3131,0.18761,1.0127,1.0,1.0157,1.0287,1.0,33.4906,0.0,0.0,19.58,4.47,9.97,31.34,3.08,18.48,24.53,2.03,0.0,0.8008,0.3809,0.9149,1.2821,0.2625,1.6949,9.3181,2.9086,4.2021,0.0,0.0,14.9184,2.005,7.7844,16.45,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.48,5830.03,3668.8,55.62,1.0,55.62,62.02,62.02,0.0,50.24,1.0,50.24,62.02,62.02,0.0,60.5,61.939,38.5456,63.7152,0.18761,1.0127,1.0,1.0157,1.0287,1.0,33.4334,0.0,0.0,21.05,4.36,9.97,33.7,3.03,18.48,24.53,2.03,0.0,0.8008,0.3776,0.9149,1.2821,0.2625,1.6949,9.2534,2.8724,4.2018,0.0,0.0,14.8141,1.997,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house035.xml,70.11,103.362,72.1977,102.9709,0.19291,0.9804,1.0,1.0162,0.9962,1.0,61.004,0.0,0.0,52.39,6.54,11.06,83.48,4.69,12.38,32.3,1.06,0.0,0.8046,0.3663,0.9925,1.2821,0.2625,1.1111,39.6214,2.9786,9.1447,0.0,0.0,63.1352,2.135,10.2376,68.44,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.29,18231.32,22793.42,55.91,1.0,55.91,70.11,70.11,0.0,49.51,1.0,49.51,70.11,70.11,0.0,64.68,110.234,71.0251,109.8169,0.19291,0.9804,1.0,1.0162,0.9962,1.0,60.1914,0.0,0.0,59.6,6.31,11.06,94.98,4.61,12.39,32.3,0.97,0.0,0.8046,0.3595,0.9922,1.2821,0.2625,1.1111,38.5711,2.9081,9.1408,0.0,0.0,61.4618,2.124,10.2365,66.63,2.12,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house036.xml,68.18,113.983,76.2184,111.7202,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.9054,0.035,0.0,61.66,8.82,8.65,98.27,5.91,15.94,33.62,1.24,0.0,0.8044,0.3914,0.9197,1.2821,0.2625,1.6949,38.9004,4.8421,2.3779,0.0,0.0,61.9964,3.248,4.3819,68.16,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.34,18849.36,24238.98,55.49,1.0,55.49,68.22,68.22,0.0,49.87,1.0,49.87,68.22,68.22,0.0,63.3,121.85,75.6393,119.431,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.4868,0.035,0.0,69.78,8.6,8.65,111.2,5.79,15.96,33.61,1.21,0.0,0.8045,0.3902,0.9191,1.2821,0.2625,1.6949,38.4776,4.7356,2.3761,0.0,0.0,61.3216,3.186,4.3819,67.42,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 +house037.xml,67.03,113.262,76.7413,114.4834,0.19359,0.9975,1.0134,1.0,1.0108,1.0,64.8088,0.0,0.0,65.19,6.7,13.21,103.97,4.84,14.55,27.32,0.84,0.0,0.8039,0.363,1.0094,1.2821,0.2625,1.1111,41.1178,3.9656,10.1998,0.0,0.0,65.5732,2.868,11.2281,71.09,2.87,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.29,19280.27,24365.15,52.9,1.0,52.9,67.03,67.03,0.0,47.97,1.0,47.97,67.03,67.03,0.0,60.87,122.6,75.4338,123.9221,0.19359,0.9975,1.0134,1.0,1.0108,1.0,63.908,0.0,0.0,74.87,6.48,13.21,119.3,4.82,14.55,27.32,0.73,0.0,0.8046,0.3534,1.0091,1.2821,0.2625,1.1111,40.0273,3.8065,10.197,0.0,0.0,63.7827,2.828,11.2281,69.15,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house038.xml,65.16,130.313,82.5796,126.7265,0.26727,0.9549,1.0184,1.0,0.9725,1.0,62.9332,0.0,0.0,39.6,39.93,9.92,35.15,22.42,17.57,39.59,1.29,0.0,1.8868,0.9351,0.9565,2.1685,0.525,1.6949,27.578899999999997,21.4891,5.0656,0.0,0.0,24.746699999999997,12.065100000000001,8.9761,24.85,12.07,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14041.27,19636.38,47.38,1.0,47.38,65.16,65.16,0.0,45.3,1.0,45.3,65.16,65.16,0.0,62.0,133.884,80.72,130.1992,0.26727,0.9549,1.0184,1.0,0.9725,1.0,62.0392,0.0,0.0,43.410000000000004,39.82,9.92,38.15,22.94,17.57,39.59,1.14,0.0,1.8883,0.9111,0.9564,2.1685,0.525,1.6949,26.698900000000002,20.6101,5.065,0.0,0.0,24.026,11.8761,8.9761,24.12,11.879999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house039.xml,59.43,157.779,153.8177,157.3805,0.09394,0.9784,1.0194,1.0,0.9975,0.6081,113.0822,44.319,0.0,73.85,20.25,16.5,117.81,13.25,29.71,47.17,0.0,0.0,2.4121,1.1898,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.6704,10.0455,15.1348,0.0,0.0,147.8168,6.566,27.2586,151.58,6.57,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,238.22,26536.13,11167.47,54.29,1.0,54.29,97.74,97.74,0.0,49.76,1.0,49.76,97.74,97.74,0.0,80.64,172.104,153.2715,171.6693,0.09394,0.9784,1.0194,1.0,0.9975,0.9032,112.6972,10.9135,0.0,88.18,20.25,16.5,140.60999999999999,13.26,29.71,47.16,0.0,0.0,2.4127,1.19,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.3202,9.8498,15.1354,0.0,0.0,147.2083,6.442,27.2597,150.95,6.4399999999999995,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 +house040.xml,63.71,195.689,119.2807,187.2327,0.18492,0.9568,1.0,1.0,0.9568,1.0,92.541,0.0,0.0,125.31,12.48,11.06,199.68,8.0,19.45,44.92,1.91,0.0,0.8046,0.4097,0.9804,1.2821,0.2625,1.7241,63.6893,14.1047,7.1827,0.0,0.0,101.487,9.0381,12.6309,112.22,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.84,29248.27,40843.67,52.88,1.0,52.88,63.71,63.71,0.0,49.75,1.0,49.75,63.71,63.71,0.0,58.85,211.23,118.9278,202.1021,0.18492,0.9568,1.0,1.0,0.9568,1.0,92.2718,0.0,0.0,141.2,12.14,11.06,224.99,7.76,19.46,44.92,1.91,0.0,0.8046,0.411,0.9799,1.2821,0.2625,1.7241,63.4691,13.9762,7.1795,0.0,0.0,101.1361,8.9281,12.6317,111.83,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house041.xml,79.71,72.738,59.3529,74.4596,0.13119,1.0035,1.0091,1.011,1.0237,1.0,48.279,0.0,0.0,25.92,8.19,12.53,41.33,5.19,20.93,26.11,0.0,0.0,0.8039,0.4141,1.0143,1.2821,0.2625,1.6949,17.7774,6.1636,11.573,0.0,0.0,28.3498,3.908,19.3379,30.56,3.91,20.39,23.35,0.49,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.22,9768.61,5354.42,52.96,1.0,52.96,79.71,79.71,0.0,46.88,1.0,46.88,79.71,79.71,0.0,73.45,75.378,56.6731,77.1621,0.13119,1.0035,1.0091,1.011,1.0237,1.0,46.2706,0.0,0.0,28.64,8.11,12.53,45.66,5.16,20.94,26.11,0.0,0.0,0.8041,0.4127,1.014,1.2821,0.2625,1.6949,15.6282,6.1309,11.5641,0.0,0.0,24.9185,3.9,19.3303,26.86,3.9,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house042.xml,90.13,114.912,103.3237,114.6328,0.21956,0.9827,1.0151,1.0,0.9976,1.0,77.679,0.0,0.0,50.3,21.01,11.38,80.28,12.91,19.73,32.22,0.0,0.0,0.8033,0.4272,0.9946,1.2821,0.2625,1.7241,51.6684,16.2331,8.3472,0.0,0.0,82.4656,9.9751,14.4703,83.33,9.98,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.34,21271.39,18171.67,50.09,1.0,50.09,90.13,90.13,0.0,47.02,1.0,47.02,90.13,90.13,0.0,83.77,122.65,102.4991,122.352,0.21956,0.9827,1.0151,1.0,0.9976,1.0,77.4926,0.0,0.0,58.04,21.01,11.38,92.65,13.35,19.75,32.22,0.0,0.0,0.8032,0.4132,0.9939,1.2821,0.2625,1.7241,51.4854,15.5985,8.3412,0.0,0.0,82.1777,9.9101,14.4693,83.04,9.91,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house043.xml,-8.1,52.033,21.8478,53.8573,0.30156,1.0351,1.0,1.0,1.0351,-0.1996,20.615,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.351,2.5087,2.3731,0.0,0.0,1.077,1.313,2.669,1.08,1.31,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.53,22.01,4017.42,53.47,1.0,53.47,40.57,40.57,1.0,47.89,1.0,47.89,40.57,40.57,1.0,35.68,56.143,21.824,58.1114,0.30156,1.0351,1.0,1.0,1.0351,0.95,20.585,1.0293,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4991,0.9875,0.4432,0.2625,1.1111,1.3791,2.4579,2.373,0.0,0.0,1.067,1.293,2.67,1.07,1.29,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 +house044.xml,69.13,42.878,31.249,45.2029,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.749,0.0,0.0,19.12,3.36,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3155,0.9207,1.2821,0.2625,1.1111,14.5687,2.2243,4.5241,0.0,0.0,23.2658,1.851,5.4597,25.58,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.25,7639.23,9380.61,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.93,44.161,31.1576,46.5554,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.707,0.0,0.0,20.47,3.3,6.35,32.67,2.8,7.66,13.7,0.34,0.0,0.8035,0.3089,0.9205,1.2821,0.2625,1.1111,14.54,2.1637,4.5229,0.0,0.0,23.2013,1.839,5.4597,25.51,1.84,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +house045.xml,88.8,180.374,153.7624,173.1551,0.22009,0.9417,1.0304,0.9893,0.96,1.0,124.728,0.0,0.0,75.19,42.92,12.22,56.32,24.57,21.3,50.05,0.0,0.0,0.5917,0.4586,1.9438,0.4432,0.2625,3.3898,64.4963,31.2496,13.7026,0.0,0.0,48.3134,17.8892,23.895,48.31,17.89,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,99.99,25492.22,26558.55,49.73,1.0,49.73,88.8,88.8,0.0,45.81,1.0,45.81,88.8,88.8,0.0,82.85,190.595,151.5943,182.967,0.22009,0.9417,1.0304,0.9893,0.96,1.0,124.159,0.0,0.0,85.94,42.39,12.22,64.25,25.48,21.3,50.05,0.0,0.0,0.5929,0.4368,1.9438,0.4432,0.2625,3.3898,64.0499,29.5295,13.702,0.0,0.0,47.8854,17.7492,23.895,47.89,17.75,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 +house046.xml,-4.25,132.817,49.242,132.162,0.27774,0.9896,1.0192,0.9866,0.9951,-0.1142,46.134,51.401,0.0,75.55,12.01,12.93,62.72,6.72,13.96,29.19,3.15,0.0,0.5338,0.469,1.0064,0.4432,0.2625,1.087,16.3487,2.5295,9.7587,0.0,0.0,13.5741,1.416,10.54,13.57,1.42,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.86,2778.49,28322.25,50.18,1.0,50.18,37.26,37.26,1.0,44.16,1.0,44.16,37.26,37.26,1.0,32.42,144.426,49.044,143.7138,0.27774,0.9896,1.0192,0.9866,0.9951,0.95,46.063,2.3032,0.0,87.51,11.66,12.93,72.58,6.85,13.97,29.18,3.15,0.0,0.5344,0.4467,1.0062,0.4432,0.2625,1.087,16.2902,2.3922,9.7566,0.0,0.0,13.5111,1.406,10.54,13.51,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 +house047.xml,63.74,84.063,53.8118,84.4234,0.20919,0.987,1.0,1.0176,1.0043,1.0,42.9956,0.0,0.0,32.66,9.13,10.49,52.01,5.62,11.8,30.7,1.09,0.0,0.805,0.4266,0.9872,1.2821,0.2625,1.1111,26.1557,3.8628,2.4723,0.0,0.0,41.6572,2.377,2.7825,45.67,2.38,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.63,10572.9,6169.99,58.44,1.0,58.44,63.74,63.74,0.0,53.2,1.0,53.2,63.74,63.74,0.0,58.63,90.516,53.3014,90.9041,0.20919,0.987,1.0,1.0176,1.0043,1.0,42.6386,0.0,0.0,39.21,9.07,10.49,62.45,5.6,11.81,30.69,1.05,0.0,0.805,0.425,0.9868,1.2821,0.2625,1.1111,25.7521,3.772,2.4703,0.0,0.0,41.0133,2.33,2.7815,44.97,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 +house048.xml,66.13,98.438,68.8483,104.1034,0.33386,1.0286,1.0,1.0282,1.0576,1.0,46.4292,0.0,0.0,1.98,65.85,5.6,3.17,37.7,10.95,24.41,0.6,0.0,0.8005,0.4586,0.8822,1.2821,0.2625,1.7241,0.5005,44.0908,3.7459,0.0,0.0,0.8016,25.2412,7.3207,0.81,25.24,7.59,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.97,6732.91,7672.88,50.84,1.0,50.84,66.13,66.13,0.0,46.29,1.0,46.29,66.13,66.13,0.0,65.26,98.65,68.0827,104.3276,0.33386,1.0286,1.0,1.0282,1.0576,1.0,45.965,0.0,0.0,2.09,66.05,5.6,3.35,37.86,10.95,24.4,0.51,0.0,0.8003,0.458,0.8822,1.2821,0.2625,1.7241,0.438,43.5088,3.7459,0.0,0.0,0.7016,24.9392,7.3207,0.71,24.94,7.59,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house049.xml,52.33,43.64,24.0148,45.8873,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.59,16.62,17.28,1.37,0.0,0.606,0.5153,0.813,0.4432,0.2625,1.6949,4.7937,1.1012,2.9789,0.0,0.0,3.506,0.561,6.2103,3.51,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.66,2584.2,2740.94,49.11,1.0,49.11,52.33,52.33,0.0,44.16,1.0,44.16,52.33,52.33,0.0,51.24,44.549,24.0039,46.8431,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6418,0.0,0.0,14.88,3.06,7.97,10.81,1.56,16.62,17.27,1.37,0.0,0.6102,0.5128,0.813,0.4432,0.2625,1.6949,4.7921,1.0919,2.9789,0.0,0.0,3.481,0.559,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 +house050.xml,86.66,66.535,58.583,67.6045,0.16654,1.0045,1.0115,1.0,1.0161,1.0,50.436,0.0,0.0,21.4,4.92,11.91,34.11,3.21,21.36,27.26,1.05,0.0,0.8042,0.4029,0.9617,1.2821,0.2625,1.7241,9.1034,4.2601,8.3976,0.0,0.0,14.5118,2.776,15.0553,15.91,2.78,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.07,7503.93,4147.44,55.71,1.0,55.71,86.66,86.66,0.0,50.46,1.0,50.46,86.66,86.66,0.0,82.0,69.961,58.2888,71.0856,0.16654,1.0045,1.0115,1.0,1.0161,1.0,50.2664,0.0,0.0,25.08,4.68,11.91,39.98,3.11,21.36,27.25,1.04,0.0,0.8043,0.3952,0.9616,1.2821,0.2625,1.7241,9.0189,4.1241,8.3968,0.0,0.0,14.3768,2.74,15.0553,15.76,2.74,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house051.xml,55.17,45.5,25.7069,46.5952,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.4128,0.0,0.0,11.33,2.81,9.97,8.56,1.44,18.47,20.61,0.77,0.0,0.587,0.5114,0.9154,0.4432,0.2625,1.6949,5.6285,0.452,2.0155,0.0,0.0,4.25,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.43,2727.41,2913.1,51.66,1.0,51.66,55.17,55.17,0.0,46.34,1.0,46.34,55.17,55.17,0.0,52.64,47.809,25.7734,48.9597,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.3748,0.0,0.0,13.85,2.62,9.97,10.23,1.36,18.47,20.6,0.77,0.0,0.6,0.5044,0.9153,0.4432,0.2625,1.6949,5.7061,0.4419,2.0153,0.0,0.0,4.215,0.23,3.7319,4.22,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 +house052.xml,58.77,44.421,27.63,47.0167,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.766,0.0,0.0,13.19,1.69,10.35,9.57,0.8,11.96,18.54,0.66,0.0,0.6109,0.5529,0.9619,0.4432,0.2625,1.1111,6.0861,0.2359,7.148,0.0,0.0,4.416,0.112,8.2565,4.42,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.37,1795.03,2856.59,53.24,1.0,53.24,58.77,58.77,0.0,48.05,1.0,48.05,58.77,58.77,0.0,57.11,45.747,27.6506,48.4202,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.739,0.0,0.0,14.65,1.57,10.35,10.52,0.75,11.96,18.53,0.65,0.0,0.6168,0.5496,0.9619,0.4432,0.2625,1.1111,6.1091,0.2345,7.148,0.0,0.0,4.39,0.112,8.2565,4.39,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 +house053.xml,70.9,66.037,47.6358,67.1844,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.707,0.0,0.0,21.53,4.76,11.91,34.33,3.13,21.31,26.94,0.88,0.0,0.8043,0.3994,0.9637,1.2821,0.2625,1.7241,13.1925,3.0608,8.0595,0.0,0.0,21.03,2.012,14.4194,22.67,2.01,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.81,7447.59,4117.09,55.57,1.0,55.57,70.9,70.9,0.0,50.34,1.0,50.34,70.9,70.9,0.0,66.53,69.568,47.0894,70.7768,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.345,0.0,0.0,25.37,4.52,11.91,40.44,3.03,21.32,26.93,0.83,0.0,0.8043,0.3916,0.9635,1.2821,0.2625,1.7241,12.7723,2.9951,8.058,0.0,0.0,20.3593,2.008,14.4194,21.95,2.01,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house054.xml,62.26,170.097,108.2936,173.9389,0.33489,0.9506,1.0462,1.0282,1.0226,1.0,76.5686,0.0,0.0,3.6599999999999997,120.1,7.75,5.85,69.11,13.55,37.12,1.49,0.0,1.6014,0.9113,0.9688,2.5642,0.525,1.6949,1.3447,75.4195,1.8344,0.0,0.0,2.1534,43.4024,3.2093,2.18,43.4,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.7,9805.02,13372.43,49.9,1.0,49.9,62.26,62.26,0.0,45.25,1.0,45.25,62.26,62.26,0.0,61.56,170.831,107.5442,174.6895,0.33489,0.9506,1.0462,1.0282,1.0226,1.0,76.175,0.0,0.0,3.92,120.63,7.75,6.27,69.53999999999999,13.55,37.11,1.42,0.0,1.6007,0.9098999999999999,0.9687,2.5642,0.525,1.6949,1.2565,74.82050000000001,1.8343,0.0,0.0,2.0128,43.1284,3.2093,2.03,43.129999999999995,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house055.xml,63.63,95.876,64.6653,101.6245,0.33857,1.0305,1.0,1.0286,1.06,1.0,46.8366,0.0,0.0,2.0,65.19,5.6,3.2,37.24,10.68,22.28,0.81,0.0,0.8006,0.4596,0.8893,1.2821,0.2625,1.6949,0.9461,42.4165,1.6847,0.0,0.0,1.5151,24.2312,3.2109,1.53,24.23,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.3,6174.94,7634.85,48.98,1.0,48.98,63.63,63.63,0.0,44.55,1.0,44.55,63.63,63.63,0.0,63.16,96.084,64.3295,101.845,0.33857,1.0305,1.0,1.0286,1.06,1.0,46.6578,0.0,0.0,2.07,65.34,5.6,3.32,37.36,10.68,22.28,0.8,0.0,0.8004,0.4591,0.8893,1.2821,0.2625,1.6949,0.9069,42.1379,1.6847,0.0,0.0,1.4528,24.0952,3.2109,1.47,24.1,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 +house056.xml,62.74,73.45,46.5841,74.2454,0.20104,0.997,1.0139,1.0,1.0108,1.0,41.0018,0.0,0.0,26.09,5.17,11.91,41.75,3.45,20.93,29.21,1.07,0.0,1.6101,0.3937,0.9647,2.5642,0.2625,1.6949,13.5153,2.8855,3.3663,0.0,0.0,21.6175,1.924,5.9145,23.28,1.92,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.23,7316.55,4461.54,54.96,1.0,54.96,62.74,62.74,0.0,49.7,1.0,49.7,62.74,62.74,0.0,58.69,77.834,46.1747,78.6768,0.20104,0.997,1.0139,1.0,1.0108,1.0,40.736,0.0,0.0,30.78,4.9,11.91,49.24,3.34,20.93,29.2,1.04,0.0,1.6084,0.386,0.9646,2.5642,0.2625,1.6949,13.2517,2.811,3.366,0.0,0.0,21.196,1.912,5.9145,22.84,1.91,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 +house057.xml,82.27,57.391,47.8899,58.2118,0.1605,1.0143,1.0,1.0,1.0143,1.0,42.4114,0.0,0.0,18.8,4.13,9.97,29.96,2.81,11.53,23.76,0.74,0.0,0.8042,0.3859,0.9611,1.2821,0.2625,1.1111,9.7918,4.2652,2.8559,0.0,0.0,15.6095,2.902,3.3018,17.21,2.9,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.84,5206.68,3593.78,57.91,1.0,57.91,82.27,82.27,0.0,53.16,1.0,53.16,82.27,82.27,0.0,76.74,60.292,46.9322,61.1542,0.1605,1.0143,1.0,1.0,1.0143,1.0,41.5934,0.0,0.0,21.95,3.93,9.97,34.99,2.73,11.53,23.75,0.69,0.0,0.8043,0.3781,0.961,1.2821,0.2625,1.1111,9.69,4.0945,2.8557,0.0,0.0,15.4462,2.843,3.3018,17.03,2.84,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 +house058.xml,64.66,122.032,79.8818,123.5415,0.33376,0.9896,1.023,1.0,1.0124,1.0,56.7802,0.0,0.0,3.5,82.44,6.68,5.6,47.58,12.5,28.44,0.97,0.0,0.8005,0.4549,0.9222,1.2821,0.2625,1.7241,1.2488,50.633,5.616,0.0,0.0,2.0,29.2223,10.5,2.02,29.22,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.93,7857.32,9709.67,50.8,1.0,50.8,64.66,64.66,0.0,46.18,1.0,46.18,64.66,64.66,0.0,63.21,123.541,79.0508,125.0692,0.33376,0.9896,1.023,1.0,1.0124,1.0,56.3668,0.0,0.0,4.05,83.49,6.68,6.48,48.37,12.5,28.43,0.89,0.0,0.8004,0.4532,0.9222,1.2821,0.2625,1.7241,1.1331,49.9978,5.616,0.0,0.0,1.815,28.9663,10.5,1.83,28.97,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house059.xml,55.26,35.102,20.8276,37.6918,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.6476,0.0,0.0,7.78,2.93,7.97,6.04,1.47,15.04,16.0,0.42,0.0,0.5709,0.5224,0.8987,0.4432,0.2625,1.6949,3.7326,0.8855,2.0045,0.0,0.0,2.898,0.445,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.32,2428.55,2168.1,50.61,1.0,50.61,55.26,55.26,0.0,46.27,1.0,46.27,55.26,55.26,0.0,54.29,35.695,20.8087,38.3286,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.5936,0.0,0.0,8.47,2.85,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5795,0.5203,0.8981,0.4432,0.2625,1.6949,3.7246,0.88,2.0031,0.0,0.0,2.849,0.444,3.7805,2.85,0.44,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 +house060.xml,71.58,113.139,81.8536,114.3538,0.23111,0.9795,1.0319,1.0,1.0107,1.0,60.4044,0.0,0.0,32.1,33.54,11.5,51.34,20.06,19.93,36.01,0.0,0.0,1.6029,0.8775999999999999,0.9947,2.5642,0.525,1.7241,26.6695,19.8701,7.9621,0.0,0.0,42.6643,11.8882,13.8006,43.12,11.89,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,89.84,15743.85,17337.78,50.12,1.0,50.12,71.58,71.58,0.0,46.41,1.0,46.41,71.58,71.58,0.0,69.26,115.89,81.131,117.1344,0.23111,0.9795,1.0319,1.0,1.0107,1.0,60.242,0.0,0.0,34.98,33.42,11.5,55.93,20.490000000000002,19.93,36.01,0.0,0.0,1.6036,0.8563000000000001,0.9946,2.5642,0.525,1.7241,26.5333,19.2844,7.9613,0.0,0.0,42.4248,11.8262,13.8006,42.88,11.83,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house061.xml,69.96,27.219,20.2833,28.9926,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.892,0.0,0.0,4.95,3.02,5.78,7.89,1.75,6.8,13.47,0.0,0.0,0.8039,0.4535,0.9248,1.2821,0.2625,1.087,6.4358,0.7618,3.9607,0.0,0.0,10.2631,0.441,4.655,11.25,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,102.17,3205.25,2945.22,63.31,1.0,63.31,69.96,69.96,0.0,50.98,1.0,50.98,69.96,69.96,0.0,67.33,28.185,20.2141,30.0216,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.8572,0.0,0.0,5.98,2.96,5.78,9.53,1.76,6.8,13.46,0.0,0.0,0.8041,0.4432,0.9243,1.2821,0.2625,1.087,6.4007,0.731,3.9583,0.0,0.0,10.2047,0.433,4.655,11.19,0.43,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 +house062.xml,76.11,38.169,30.9208,40.6264,0.24836,1.0796,0.9657,1.0209,1.0644,1.0,26.462,0.0,0.0,9.63,8.95,5.18,7.42,5.09,6.18,14.41,0.0,0.0,0.5754,0.4612,0.911,0.4432,0.2625,1.087,11.0933,6.2222,3.9843,0.0,0.0,8.5451,3.542,4.754,8.55,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,76.71,4698.37,5754.32,49.37,1.0,49.37,76.11,76.11,0.0,45.88,1.0,45.88,76.11,76.11,0.0,75.49,38.332,30.7994,40.7999,0.24836,1.0796,0.9657,1.0209,1.0644,1.0,26.388,0.0,0.0,9.81,8.93,5.18,7.55,5.11,6.18,14.41,0.0,0.0,0.5764,0.4587,0.911,0.4432,0.2625,1.087,11.0409,6.1532,3.9843,0.0,0.0,8.4911,3.522,4.754,8.49,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house063.xml,78.21,89.575,70.4451,90.0767,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,52.3312,0.0,0.0,16.56,40.16,6.02,26.52,23.55,12.48,26.01,0.83,0.0,0.8005,0.4476,0.8309,1.2821,0.2625,1.7241,14.0545,27.0921,4.2484,0.0,0.0,22.5088,15.8901,8.8161,22.75,15.89,9.48,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.36,10936.48,10322.51,49.31,1.0,49.31,78.21,78.21,0.0,46.44,1.0,46.44,78.21,78.21,0.0,75.62,90.787,69.0402,91.2955,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,51.6182,0.0,0.0,17.66,40.32,6.02,28.28,24.02,12.48,26.01,0.79,0.0,0.8005,0.4407,0.8309,1.2821,0.2625,1.7241,13.6351,26.3477,4.2484,0.0,0.0,21.8369,15.6951,8.8161,22.07,15.7,9.48,20.83,3.98,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house064.xml,71.0,74.716,55.179,77.7138,0.27451,1.0363,0.9811,1.0231,1.0401,1.0,40.4504,0.0,0.0,14.5,32.27,6.02,23.22,18.98,12.18,21.4,0.53,0.0,0.8005,0.4463,0.8368,1.2821,0.2625,1.6949,11.1119,20.9505,3.9385,0.0,0.0,17.7963,12.3241,7.9772,17.98,12.32,8.41,16.8,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,97.04,8654.63,8574.97,53.92,1.0,53.92,71.0,71.0,0.0,50.71,1.0,50.71,71.0,71.0,0.0,68.17,75.718,53.6852,78.756,0.27451,1.0363,0.9811,1.0231,1.0401,1.0,39.5846,0.0,0.0,15.45,32.39,6.02,24.74,19.36,12.18,21.4,0.47,0.0,0.8006,0.4392,0.8368,1.2821,0.2625,1.6949,10.6399,20.2897,3.9385,0.0,0.0,17.0382,12.1291,7.9772,17.22,12.13,8.41,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house065.xml,76.47,97.781,77.4167,101.2356,0.25233,0.9965,1.0174,1.0212,1.0353,1.0,58.086,0.0,0.0,16.61,41.88,8.98,26.6,25.11,16.32,29.28,1.05,0.0,0.8003,0.4378,0.9482,1.2821,0.2625,1.7241,15.0685,26.9874,6.2818,0.0,0.0,24.1387,16.1831,11.4228,24.39,16.18,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.15,12217.65,11439.87,47.97,1.0,47.97,76.47,76.47,0.0,45.18,1.0,45.18,76.47,76.47,0.0,74.25,99.087,76.1681,102.5877,0.25233,0.9965,1.0174,1.0212,1.0353,1.0,57.4662,0.0,0.0,17.77,42.06,8.98,28.47,25.58,16.32,29.27,1.01,0.0,0.8003,0.4316,0.9481,1.2821,0.2625,1.7241,14.6834,26.3152,6.2814,0.0,0.0,23.5212,16.0071,11.4228,23.77,16.01,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house066.xml,74.11,73.08,56.7816,76.6174,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.394,0.0,0.0,12.03,30.82,7.52,8.88,17.9,8.75,21.92,0.79,0.0,0.6004,0.452,0.9549,0.4432,0.2625,1.1111,8.316,21.4501,5.6426,0.0,0.0,6.1391,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.14,8758.25,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.831,56.1715,77.4048,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.105,0.0,0.0,12.7,30.92,7.52,9.35,18.15,8.75,21.91,0.78,0.0,0.602,0.4472,0.9549,0.4432,0.2625,1.1111,8.1906,21.0414,5.6426,0.0,0.0,6.0311,12.3541,6.5657,6.03,12.35,6.42,17.79,3.51,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house067.xml,60.44,86.331,54.0713,89.4686,0.29321,1.0114,1.0,1.0247,1.0363,1.0,40.4848,0.0,0.0,15.35,36.88,7.52,24.58,21.97,14.12,25.79,0.8,0.0,0.8004,0.4406,0.9026,1.2821,0.2625,1.6949,9.8954,21.0045,2.9774,0.0,0.0,15.8507,12.5151,5.5908,16.02,12.51,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.83,8501.85,10025.26,48.76,1.0,48.76,60.44,60.44,0.0,45.9,1.0,45.9,60.44,60.44,0.0,58.44,87.699,53.1167,90.8863,0.29321,1.0114,1.0,1.0247,1.0363,1.0,40.1002,0.0,0.0,16.58,37.06,7.52,26.56,22.48,14.12,25.79,0.75,0.0,0.8003,0.4329,0.9026,1.2821,0.2625,1.6949,9.5929,20.3894,2.9774,0.0,0.0,15.3667,12.3661,5.5908,15.53,12.37,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house068.xml,74.6,117.679,85.6889,114.8719,0.25155,0.9761,1.0,1.0,0.9761,1.0,65.0198,0.0,0.0,24.86,51.480000000000004,7.52,39.81,30.69,14.44,32.85,0.98,0.0,1.6014,0.873,0.8975,2.5642,0.525,1.7241,17.9568,29.072100000000002,5.285,0.0,0.0,28.760199999999998,17.3291,10.1524,29.07,17.33,10.92,26.89,6.49,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.33,13540.29,13554.81,50.41,1.0,50.41,74.6,74.6,0.0,47.23,1.0,47.23,74.6,74.6,0.0,69.14,121.782,82.1929,118.877,0.25155,0.9761,1.0,1.0,0.9761,1.0,63.1012,0.0,0.0,28.48,52.08,7.52,45.620000000000005,32.18,14.44,32.84,0.86,0.0,1.6014,0.8424,0.8975,2.5642,0.525,1.7241,17.0934,27.3746,5.285,0.0,0.0,27.3767,16.9121,10.1524,27.67,16.91,10.92,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 +house069.xml,73.15,109.742,79.4836,108.6545,0.27554,0.9901,1.0,1.0,0.9901,1.0,58.334,0.0,0.0,26.08,46.5,7.52,41.79,27.42,14.18,29.32,0.33,0.0,0.8003,0.4453,0.8987,1.2821,0.2625,1.6949,19.3239,28.1412,5.2964,0.0,0.0,30.9581,16.5931,9.9891,31.28,16.59,10.53,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.81,12697.39,12474.23,56.16,1.0,56.16,73.15,73.15,0.0,52.94,1.0,52.94,73.15,73.15,0.0,69.43,113.769,78.2052,112.6416,0.27554,0.9901,1.0,1.0,0.9901,1.0,58.1996,0.0,0.0,29.71,47.08,7.52,47.59,28.85,14.18,29.31,0.15,0.0,0.8004,0.4284,0.8986,1.2821,0.2625,1.6949,19.1956,26.9796,5.2961,0.0,0.0,30.7483,16.5321,9.9891,31.07,16.53,10.53,22.98,3.76,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house070.xml,47.28,181.182,81.4352,172.245,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.507,0.0,0.0,88.71,25.0,11.77,65.77,13.99,13.08,53.58,2.13,0.0,0.5978,0.4692,0.9994,0.4432,0.2625,1.1111,31.5376,5.6615,8.244,0.0,0.0,23.3822,3.168,9.1652,23.38,3.17,8.97,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8020.17,17263.2,52.1,1.0,52.1,47.28,47.28,1.0,46.1,1.0,46.1,47.28,47.28,0.0,43.16,195.781,80.3251,186.1239,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.008,0.0,0.0,103.84,24.6,11.77,77.31,14.54,13.09,53.57,2.01,0.0,0.5953,0.4441,0.9992,0.4432,0.2625,1.1111,30.8395,5.2813,8.2394,0.0,0.0,22.9612,3.122,9.1622,22.96,3.12,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house071.xml,75.64,58.701,46.6916,61.7297,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.3238,0.0,0.0,20.51,8.57,9.85,16.3,4.86,11.46,19.19,0.58,0.0,1.4445999999999999,0.4632,0.9555,1.7253,0.2625,1.1111,22.8696,3.7811,7.0929,0.0,0.0,18.207199999999997,2.143,8.2483,18.259999999999998,2.14,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.96,4783.29,5909.97,51.55,1.0,51.55,75.64,75.64,0.0,53.48,1.0,53.48,75.64,75.64,0.0,72.06,61.226,46.3978,64.3849,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.221,0.0,0.0,23.21,8.45,9.85,18.48,4.94,11.46,19.19,0.53,0.0,1.4311,0.4489,0.9555,1.7253,0.2625,1.1111,22.7347,3.6232,7.0929,0.0,0.0,18.1254,2.119,8.2483,18.189999999999998,2.12,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 +house072.xml,61.3,132.316,79.74,130.0794,0.22799,0.98,0.9843,1.0191,0.9831,1.0,64.5236,0.0,0.0,88.37,1.24,10.45,138.72,1.74,18.75,31.12,1.14,0.0,1.3274,0.1862,0.9613,1.7253,0.2625,1.7241,52.3583,0.6703,5.2854,0.0,0.0,80.3367,0.945,9.4796,88.25,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.15,16206.33,10557.2,55.89,1.0,55.89,61.3,61.3,0.0,49.01,1.0,49.01,61.3,61.3,0.0,55.28,146.2,79.4515,143.7287,0.22799,0.98,0.9843,1.0191,0.9831,1.0,64.2244,0.0,0.0,102.47,1.05,10.45,160.74,1.66,18.77,31.11,1.11,0.0,1.3484,0.1651,0.96,1.7253,0.2625,1.7241,52.167,0.5942,5.2784,0.0,0.0,79.7485,0.945,9.4796,87.60000000000001,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 +house073.xml,32.76,221.323,114.4698,210.9093,0.16694,0.9421,1.0115,1.0,0.9529,0.6037,90.9106,36.031,0.0,118.91,26.9,11.77,97.71000000000001,15.030000000000001,26.81,61.14,2.62,0.0,1.9849,0.9402,0.9976,2.1364,0.525,2.2727,28.4236,23.8029,14.8433,0.0,0.0,25.0332,13.2961,33.8161,25.85,13.3,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.84,13743.71,20949.04,50.6,1.0,50.6,54.27,54.27,0.0,47.79,1.0,47.79,54.27,54.27,0.0,46.39,237.62,112.4174,226.4395,0.16694,0.9421,1.0115,1.0,0.9529,0.9345,90.5728,5.9315,0.0,135.55,26.55,11.77,112.08,15.71,26.84,61.13,2.62,0.0,1.9765,0.8875,0.9965,2.1364,0.525,2.2727,28.016299999999998,22.1734,14.8277,0.0,0.0,24.841700000000003,13.1221,33.8172,25.65,13.129999999999999,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house074.xml,72.27,78.2,59.5064,82.3377,0.24387,1.0318,1.0,1.0205,1.0529,1.0,48.411,0.0,0.0,14.57,33.17,7.52,10.63,19.3,8.67,22.21,0.73,0.0,0.6076,0.4511,0.9528,0.4432,0.2625,1.0989,8.9464,22.6805,5.7265,0.0,0.0,6.5261,13.1991,6.6048,6.53,13.2,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.99,7256.82,9315.36,43.82,1.0,43.82,72.27,72.27,0.0,42.14,1.0,42.14,72.27,72.27,0.0,70.41,79.445,58.9,83.6485,0.24387,1.0318,1.0,1.0205,1.0529,1.0,48.232,0.0,0.0,15.7,33.31,7.52,11.36,19.75,8.67,22.21,0.71,0.0,0.6126,0.4428,0.9528,0.4432,0.2625,1.0989,8.9273,22.1181,5.7265,0.0,0.0,6.4591,13.1131,6.6048,6.46,13.11,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house075.xml,67.25,82.167,57.3073,85.2197,0.21668,1.0219,1.015,1.0,1.0372,1.0,45.5168,0.0,0.0,32.56,15.52,11.38,52.01,9.82,19.4,22.71,0.0,0.0,0.8025,0.4151,0.9943,1.2821,0.2625,1.6949,20.737,8.322,10.2992,0.0,0.0,33.127,5.264,17.5566,35.91,5.26,18.51,17.68,0.27,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,89.9,12093.47,12969.68,46.66,1.0,46.66,67.25,67.25,0.0,43.88,1.0,43.88,67.25,67.25,0.0,62.14,86.093,55.4824,89.2915,0.21668,1.0219,1.015,1.0,1.0372,1.0,44.2816,0.0,0.0,36.47,15.54,11.38,58.27,10.06,19.41,22.7,0.0,0.0,0.8026,0.4055,0.9938,1.2821,0.2625,1.6949,19.5503,7.9583,10.2928,0.0,0.0,31.2304,5.152,17.5537,33.86,5.15,18.51,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house076.xml,66.44,31.439,22.0875,33.2457,0.17958,1.0683,0.9752,1.015,1.0575,1.0,19.2756,0.0,0.0,6.98,4.84,5.78,11.13,3.44,12.13,13.69,0.15,0.0,0.804,0.3687,0.8083,1.2821,0.2625,1.6949,5.6429,2.948,2.7976,0.0,0.0,8.9978,2.099,5.8665,9.92,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,112.32,3996.89,3365.18,52.65,1.0,52.65,66.44,66.44,0.0,46.98,1.0,46.98,66.44,66.44,0.0,64.65,32.152,21.9815,33.9997,0.17958,1.0683,0.9752,1.015,1.0575,1.0,19.2376,0.0,0.0,7.84,4.76,5.78,12.5,3.45,12.14,13.68,0.08,0.0,0.8041,0.3626,0.8075,1.2821,0.2625,1.6949,5.6126,2.8755,2.7954,0.0,0.0,8.9489,2.082,5.8673,9.87,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house077.xml,77.4,39.284,32.5341,42.0326,0.20653,1.0669,0.9857,1.0173,1.07,1.0,31.0452,0.0,0.0,9.12,5.06,8.65,14.57,3.61,9.53,15.25,1.21,0.0,0.8023,0.3678,0.9764,1.2821,0.2625,1.0753,5.5274,2.6364,6.5863,0.0,0.0,8.8323,1.882,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.35,7529.46,8545.66,56.2,1.0,56.2,77.4,77.4,0.0,46.39,1.0,46.39,77.4,77.4,0.0,74.38,40.711,32.399,43.5594,0.20653,1.0669,0.9857,1.0173,1.07,1.0,30.9986,0.0,0.0,10.72,4.88,8.65,17.12,3.58,9.53,15.24,1.22,0.0,0.8026,0.3582,0.976,1.2821,0.2625,1.0753,5.4803,2.5512,6.5835,0.0,0.0,8.7543,1.87,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house078.xml,57.38,134.713,76.3128,132.9869,0.26738,0.9693,1.0184,1.0,0.9872,1.0,57.3132,0.0,0.0,30.34,57.14,8.98,48.6,32.61,16.25,36.97,1.29,0.0,0.8004,0.46,0.9359,1.2821,0.2625,1.6949,13.944,30.3286,3.7552,0.0,0.0,22.3341,17.3092,6.8003,24.49,17.31,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.58,12012.05,15289.41,53.89,1.0,53.89,57.38,57.38,0.0,50.74,1.0,50.74,57.38,57.38,0.0,54.63,139.297,75.1227,137.5122,0.26738,0.9693,1.0184,1.0,0.9872,1.0,57.1734,0.0,0.0,34.4,57.73,8.98,55.1,34.04,16.25,36.97,1.23,0.0,0.8004,0.4452,0.9359,1.2821,0.2625,1.6949,13.8539,29.2277,3.7552,0.0,0.0,22.1899,17.2342,6.8003,24.33,17.23,9.47,27.69,0.6,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house079.xml,54.41,93.273,49.2866,90.5821,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.455,0.0,0.0,46.269999999999996,2.9299999999999997,10.35,32.46,1.45,12.36,33.73,0.0,0.0,1.26,1.0615,0.9516,0.8864,0.525,1.1364,23.8625,0.1921,2.827,0.0,0.0,16.7241,0.095,3.3758,16.73,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,53.67,2989.74,5736.19,55.89,1.0,55.89,54.41,54.41,1.0,50.5,1.0,50.5,54.41,54.41,0.0,50.09,101.5,49.3755,98.5717,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.346,0.0,0.0,54.88,2.55,10.35,38.1,1.28,12.36,33.72,0.0,0.0,1.2735,1.0436999999999999,0.9516,0.8864,0.525,1.1364,23.9558,0.1888,2.8268,0.0,0.0,16.6171,0.095,3.3758,16.62,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house080.xml,41.23,144.393,57.9292,140.4867,0.27987,0.9545,1.0193,1.0,0.9729,1.0,46.61,0.0,0.0,32.15,63.269999999999996,8.98,23.380000000000003,37.04,10.83,37.29,2.7,0.0,1.2188,0.8966000000000001,0.9641,0.8864,0.525,1.1628,9.693100000000001,21.4172,1.6258,0.0,0.0,7.048,12.5381,1.9609,7.050000000000001,12.54,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.1,7093.23,16914.92,46.44,1.0,46.44,41.23,41.23,1.0,44.68,1.0,44.68,41.23,41.23,1.0,38.96,150.35,56.9946,146.2826,0.27987,0.9545,1.0193,1.0,0.9729,1.0,46.488,0.0,0.0,37.22,64.17,8.98,26.76,39.14,10.83,37.29,2.7,0.0,1.2328000000000001,0.8605,0.9636,0.8864,0.525,1.1628,9.725999999999999,20.4506,1.625,0.0,0.0,6.993,12.4731,1.9609,6.99,12.48,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house081.xml,65.16,25.582,18.9708,29.1148,0.1687,1.149,0.9767,1.0141,1.1381,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5026,0.4514,0.9399,0.4432,0.2625,1.0638,3.3198,1.8586,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.12,3195.08,4182.44,41.98,1.0,41.98,65.16,65.16,0.0,40.6,1.0,40.6,65.16,65.16,0.0,64.78,25.709,18.9543,29.2593,0.1687,1.149,0.9767,1.0141,1.1381,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house082.xml,63.08,159.433,99.0699,157.0486,0.2639,0.9504,1.0364,1.0,0.985,1.0,75.2468,0.0,0.0,35.54,68.64,10.4,56.94,39.769999999999996,18.4,44.06,0.79,0.0,1.6006,0.9061,0.9582,2.5642,0.525,1.6949,23.9813,36.8425,2.5581,0.0,0.0,38.4172,21.3482,4.5249,41.42,21.35,9.11,30.29,5.4,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.5,16152.32,18119.27,54.94,1.0,54.94,63.08,63.08,0.0,51.62,1.0,51.62,63.08,63.08,0.0,57.41,165.482,93.5744,163.0071,0.2639,0.9504,1.0364,1.0,0.985,1.0,71.7858,0.0,0.0,41.14,69.4,10.4,65.92,41.68,18.4,44.05,0.48,0.0,1.6006,0.8744000000000001,0.9582,2.5642,0.525,1.6949,23.2091,34.2902,2.5581,0.0,0.0,37.1797,20.5912,4.5249,40.08,20.59,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house083.xml,54.39,32.893,20.1359,37.0243,0.32011,1.1467,0.9558,1.027,1.1256,1.0,17.878,0.0,0.0,3.14,12.23,4.42,2.61,7.07,5.4,12.77,0.34,0.0,0.5335,0.4538,0.8905,0.4432,0.2625,1.087,1.6454,6.3569,3.1696,0.0,0.0,1.367,3.678,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.51,2655.27,4174.48,50.52,1.0,50.52,54.39,54.39,0.0,45.54,1.0,45.54,54.39,54.39,0.0,53.65,33.166,20.0273,37.3316,0.32011,1.1467,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4487,0.8903,0.4432,0.2625,1.087,1.6524,6.2428,3.1682,0.0,0.0,1.352,3.653,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house084.xml,12.32,139.749,88.6674,137.0851,0.16435,0.9676,1.0,1.0138,0.9809,0.1904,73.0472,59.137,0.0,71.39,16.04,10.48,116.88,10.6,18.32,39.52,2.32,0.0,0.7634,1.1802,1.9402,1.25,0.7875000000000001,3.3898,43.0073,8.432300000000001,6.6598,0.0,0.0,70.4175,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12882.13,10080.0,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.5,148.018,88.4444,145.1964,0.16435,0.9676,1.0,1.0138,0.9809,0.9111,72.824,6.4774,0.0,79.71,15.98,10.48,130.15,10.61,18.34,39.52,2.32,0.0,0.7655,1.1763,1.9394,1.25,0.7875000000000001,3.3898,42.9247,8.2938,6.66,0.0,0.0,70.0894,5.51,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 +house085.xml,-25.28,118.944,70.1908,118.2472,0.22585,0.9641,1.0312,1.0,0.9941,-0.4258,59.457,84.775,0.0,52.64,14.0,14.53,39.81,7.08,16.3,37.79,0.0,0.0,1.1657,1.0366,1.0245,0.8864,0.525,1.1494,41.342,1.6151,2.6597,0.0,0.0,31.244300000000003,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.44,8607.55,52.59,1.0,52.59,59.36,59.36,0.0,47.34,1.0,47.34,59.36,59.36,0.0,51.59,130.71,70.5689,129.9443,0.22585,0.9641,1.0312,1.0,0.9941,0.95,59.273,2.9637,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.032,1.0241,0.8864,0.525,1.1494,41.7763,1.5608,2.6599,0.0,0.0,31.0833,0.794,2.9852,31.09,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 +house086.xml,52.9,74.203,40.919,77.3481,0.30315,1.0164,1.0,1.0255,1.0424,1.0,33.686,0.0,0.0,21.78,19.28,8.82,16.29,10.93,10.26,23.15,0.93,0.24,0.5929,0.4631,0.9554,0.4432,0.2625,1.1111,14.4403,8.7554,1.4643,0.0,0.0,10.7951,4.964,1.703,10.8,4.96,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0,53.57,6093.81,10912.92,50.01,1.0,50.01,52.9,52.9,0.0,48.61,1.0,48.61,52.9,52.9,0.0,52.32,74.635,40.7043,77.7984,0.30315,1.0164,1.0,1.0255,1.0424,1.0,33.569,0.0,0.0,22.23,19.27,8.82,16.61,10.99,10.26,23.15,0.93,0.24,0.593,0.4604,0.9554,0.4432,0.2625,1.1111,14.3231,8.6559,1.4643,0.0,0.0,10.7051,4.936,1.703,10.71,4.94,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0 +house087.xml,48.82,29.58,15.6556,32.0688,0.21132,1.0972,0.9708,1.0177,1.0841,1.0,15.5404,0.0,0.0,6.57,4.35,5.78,5.47,2.47,12.14,12.56,0.32,0.0,0.5323,0.4631,0.8078,0.4432,0.2625,3.3898,3.7686,2.7167,1.0493,0.0,0.0,3.138,1.54,2.2016,3.14,1.54,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026,77.94,2633.55,3116.88,47.4,1.0,47.4,48.82,48.82,0.0,42.94,1.0,42.94,48.82,48.82,0.0,47.41,30.323,15.5849,32.8743,0.21132,1.0972,0.9708,1.0177,1.0841,1.0,15.4904,0.0,0.0,7.37,4.3,5.78,6.05,2.49,12.15,12.55,0.31,0.0,0.5399,0.4535,0.8071,0.4432,0.2625,3.3898,3.7824,2.6342,1.0483,0.0,0.0,3.105,1.525,2.2016,3.11,1.53,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026 +house088.xml,55.92,125.433,69.613,124.4943,0.27198,0.9742,1.0188,1.0,0.9925,1.0,54.5298,0.0,0.0,55.73,23.26,11.38,88.93,14.17,19.75,33.88,1.18,0.0,0.8034,0.431,0.9936,1.2821,0.2625,1.7241,28.7688,10.0011,8.4341,0.0,0.0,45.9112,6.0921,14.6358,49.77,6.09,15.74,21.85,0.56,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,99.45,13216.35,13388.99,51.4,1.0,51.4,55.92,55.92,0.0,48.26,1.0,48.26,55.92,55.92,0.0,51.64,133.591,68.4674,132.5913,0.27198,0.9742,1.0188,1.0,0.9925,1.0,53.938,0.0,0.0,63.89,23.34,11.38,101.96,14.71,19.77,33.87,1.11,0.0,0.8033,0.4166,0.993,1.2821,0.2625,1.7241,28.1914,9.4729,8.429,0.0,0.0,44.9906,5.9701,14.6358,48.77,5.97,15.74,21.85,0.52,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 diff --git a/workflow/tests/base_results/sample_files1.csv b/workflow/tests/base_results/sample_files1.csv index 66c03f1be..6a24e4889 100644 --- a/workflow/tests/base_results/sample_files1.csv +++ b/workflow/tests/base_results/sample_files1.csv @@ -1,97 +1,97 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-appliances-dehumidifier-ief-portable.xml,71.47,63.464,48.6822,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8638,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,3.7915,22.9916,5.9401,0.0,0.0,6.0239,13.5671,6.716,6.49,13.57,6.72,15.09,0.78,0.09,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6305.76,7601.73,48.3,1.0,48.3,71.47,71.47,0.0,46.52,1.0,46.52,71.47,71.47,0.0,65.68,64.054,45.1559,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4514,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5646,21.5066,5.9368,0.0,0.0,4.0861,12.8161,6.713,4.41,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,71.48,63.435,48.6655,68.0869,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.869,0.0,0.0,9.87,26.58,7.52,15.71,15.69,8.5,19.22,0.0,0.25,0.8058,0.4446,0.9614,1.2821,0.2625,1.087,3.785,22.9744,5.9401,0.0,0.0,6.0221,13.5661,6.716,6.49,13.57,6.72,15.09,0.78,0.1,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6306.18,7602.44,48.36,1.0,48.36,71.48,71.48,0.0,46.69,1.0,46.69,71.48,71.48,0.0,65.68,64.015,45.1259,68.7095,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4504,0.0,0.0,10.35,26.65,7.52,16.53,15.9,8.5,19.22,0.0,0.28,0.8029,0.4401,0.9613,1.2821,0.2625,1.087,2.5562,21.4829,5.9368,0.0,0.0,4.0815,12.8151,6.713,4.4,12.82,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-multiple.xml,71.46,63.502,48.7039,68.1589,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8556,0.0,0.0,9.93,26.62,7.52,15.73,15.69,8.5,19.22,0.0,0.21,0.8092,0.4453,0.9613,1.2821,0.2625,1.087,3.8034,23.0071,5.9394,0.0,0.0,6.0258,13.5631,6.716,6.5,13.56,6.72,15.09,0.78,0.09,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.28,6305.25,7601.1,48.16,1.0,48.16,71.46,71.46,0.0,46.2,1.0,46.2,71.46,71.46,0.0,65.68,64.075,45.1676,68.7739,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4462,0.0,0.0,10.41,26.69,7.52,16.56,15.89,8.5,19.22,0.0,0.24,0.806,0.4409,0.9612,1.2821,0.2625,1.087,2.57,21.5176,5.9361,0.0,0.0,4.088,12.8141,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier.xml,71.45,63.464,48.6678,68.1181,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.8524,0.0,0.0,9.89,26.6,7.52,15.71,15.7,8.5,19.22,0.0,0.24,0.8069,0.4449,0.9614,1.2821,0.2625,1.087,3.7909,22.9848,5.9401,0.0,0.0,6.023,13.5631,6.716,6.49,13.56,6.72,15.09,0.78,0.08,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.27,6304.53,7601.73,48.3,1.0,48.3,71.45,71.45,0.0,46.52,1.0,46.52,71.45,71.45,0.0,65.66,64.054,45.1447,68.7513,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.4414,0.0,0.0,10.37,26.68,7.52,16.53,15.9,8.5,19.22,0.0,0.26,0.8046,0.4406,0.9613,1.2821,0.2625,1.087,2.5617,21.5033,5.9368,0.0,0.0,4.0815,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-gas.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9112,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.52,9187.82,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-modified.xml,79.7,76.706,61.7833,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.7282,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.5924,7.9427,8.6881,0.0,0.0,37.586,4.912,9.543,40.52,4.91,9.54,21.44,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.12,8831.02,5561.77,56.97,1.0,56.97,79.7,79.7,0.0,51.28,1.0,51.28,79.7,79.7,0.0,74.9,80.736,61.1108,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.231,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0589,7.9232,8.6857,0.0,0.0,36.728,4.916,9.542,39.59,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-none.xml,80.73,76.706,62.5786,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.5228,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.5237,7.9799,8.608,0.0,0.0,37.4766,4.935,9.455,40.4,4.94,9.46,22.35,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.97,8878.58,5561.77,56.72,1.0,56.72,80.73,80.73,0.0,51.05,1.0,51.05,80.73,80.73,0.0,75.88,80.736,61.906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.026,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.9902,7.9603,8.6056,0.0,0.0,36.6185,4.939,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-oil.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.73,9424.37,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-propane.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.16,9336.27,5561.77,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-wood.xml,79.4,78.469,62.9477,79.2751,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.9108,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,23.2745,8.1585,8.2127,0.0,0.0,37.0814,5.019,9.02,39.98,5.02,9.02,23.18,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.53,1.0,57.53,79.4,79.4,0.0,51.99,1.0,51.99,79.4,79.4,0.0,74.73,82.486,62.2786,83.3334,0.21576,0.9923,1.0,1.0181,1.0103,1.0,50.4162,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4253,0.9895,1.2821,0.2625,1.087,22.7443,8.138,8.2112,0.0,0.0,36.2271,5.024,9.02,39.05,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-cathedral.xml,72.44,79.68,58.2652,80.4342,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.8718,0.0,0.0,33.37,8.6,10.49,53.14,5.22,11.52,27.23,0.0,0.0,0.805,0.4325,0.9896,1.2821,0.2625,1.087,21.4138,7.4045,8.212,0.0,0.0,34.1029,4.495,9.02,36.76,4.5,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.96,8186.79,5753.39,56.19,1.0,56.19,72.44,72.44,0.0,51.47,1.0,51.47,72.44,72.44,0.0,66.91,85.427,57.704,86.2356,0.19887,0.9929,1.0,1.0167,1.0095,1.0,49.4214,0.0,0.0,39.18,8.54,10.49,62.4,5.17,11.52,27.22,0.0,0.0,0.805,0.4338,0.9893,1.2821,0.2625,1.087,20.9515,7.4257,8.2098,0.0,0.0,33.3663,4.494,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-conditioned.xml,74.41,92.434,66.994,90.0293,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,38.38,10.94,10.49,61.13,6.46,11.52,32.63,0.0,0.0,0.8049,0.4443,0.9897,1.2821,0.2625,1.087,24.7767,8.8731,8.1262,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,9396.09,6666.56,57.65,1.0,57.65,74.41,74.41,0.0,51.62,1.0,51.62,74.41,74.41,0.0,68.31,100.681,66.9902,98.0618,0.21385,0.974,1.0,1.0,0.974,1.0,57.0448,0.0,0.0,46.71,10.86,10.49,74.38,6.42,11.52,32.62,0.0,0.0,0.805,0.4441,0.9894,1.2821,0.2625,1.087,24.7785,8.8696,8.1241,0.0,0.0,39.4626,5.243,8.925,42.54,5.24,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-flat.xml,72.05,76.728,55.802,77.4527,0.19844,0.9929,1.0,1.0166,1.0094,1.0,48.1822,0.0,0.0,30.34,8.67,10.49,48.32,5.22,11.52,27.23,0.0,0.0,0.805,0.4359,0.9897,1.2821,0.2625,1.087,19.8213,6.533,8.2127,0.0,0.0,31.5668,3.935,9.02,34.03,3.94,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.1,7748.36,5558.3,56.7,1.0,56.7,72.05,72.05,0.0,51.04,1.0,51.04,72.05,72.05,0.0,67.72,80.74,55.1958,81.5026,0.19844,0.9929,1.0,1.0166,1.0094,1.0,47.7388,0.0,0.0,34.43,8.6,10.49,54.83,5.2,11.52,27.22,0.0,0.0,0.805,0.4343,0.9895,1.2821,0.2625,1.087,19.3578,6.5097,8.2112,0.0,0.0,30.8284,3.935,9.02,33.23,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-radiant-barrier.xml,78.01,63.07,52.1975,66.9081,0.2289,1.0408,1.0,1.0192,1.0609,1.0,41.1706,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,5.6612,24.7379,5.9414,0.0,0.0,9.0693,14.6591,6.719,9.78,14.66,6.72,15.07,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,86.51,6954.43,7577.77,47.26,1.0,47.26,78.01,78.01,0.0,44.31,1.0,44.31,78.01,78.01,0.0,71.67,63.66,48.4049,67.534,0.2289,1.0408,1.0,1.0192,1.0609,1.0,38.591,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,4.2924,23.0935,5.938,0.0,0.0,6.8764,13.8101,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-unvented-insulated-roof.xml,74.69,76.706,57.7995,77.3894,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.7066,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,21.5848,6.7688,8.2129,0.0,0.0,34.3876,4.186,9.021,37.07,4.19,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.27,8207.61,5561.77,56.72,1.0,56.72,74.69,74.69,0.0,51.05,1.0,51.05,74.69,74.69,0.0,70.21,80.736,57.1878,81.4553,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.2486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.1137,6.7467,8.2114,0.0,0.0,33.6298,4.186,9.021,36.25,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-vented.xml,77.23,77.043,60.1304,77.8576,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.7242,0.0,0.0,31.1,8.24,10.49,49.54,5.12,11.82,27.23,0.0,0.0,0.8047,0.4224,0.9644,1.2821,0.2625,1.087,23.7029,7.046,8.1475,0.0,0.0,37.7623,4.379,9.183,40.71,4.38,9.18,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.33,8754.75,5613.45,57.48,1.0,57.48,77.23,77.23,0.0,51.95,1.0,51.95,77.23,77.23,0.0,72.54,81.09,59.4482,81.9474,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2092,0.0,0.0,35.21,8.17,10.49,56.08,5.1,11.82,27.22,0.0,0.0,0.8049,0.4209,0.9644,1.2821,0.2625,1.087,23.16,7.0228,8.1484,0.0,0.0,36.8894,4.38,9.184,39.77,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-battery.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.94,40.543,36.9193,43.981,0.21344,1.0657,1.0,1.0179,1.0848,1.0,33.4254,0.0,0.0,8.48,5.13,10.49,13.56,3.51,11.51,16.45,0.0,0.0,0.8014,0.3843,0.9907,1.2821,0.2625,1.087,10.9321,3.5405,8.7216,0.0,0.0,17.4883,2.419,9.569,18.85,2.42,9.57,12.91,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.6,4843.41,3109.17,67.82,1.0,67.82,83.94,83.94,0.0,58.9,1.0,58.9,83.94,83.94,0.0,71.28,41.508,32.0967,45.0278,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.7806,0.0,0.0,9.49,5.09,10.49,15.18,3.49,11.51,16.44,0.0,0.0,0.8017,0.3829,0.9905,1.2821,0.2625,1.087,6.9738,3.4824,8.7165,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-location-portland-or.xml,77.52,33.869,28.1518,36.3143,0.1828,1.056,1.0,1.0153,1.0722,1.0,27.1314,0.0,0.0,3.99,3.46,9.97,6.39,2.41,10.99,16.45,0.0,0.0,0.8002,0.377,0.9866,1.2821,0.2625,1.087,3.4885,2.6376,8.2767,0.0,0.0,5.5889,1.837,9.119,6.03,1.84,9.12,12.93,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,100.27,2891.65,2689.59,62.67,1.0,62.67,77.52,77.52,0.0,51.43,1.0,51.43,77.52,77.52,0.0,69.92,34.211,25.6474,36.681,0.1828,1.056,1.0,1.0153,1.0722,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.36,10.99,16.45,0.0,0.0,0.8003,0.3719,0.9864,1.2821,0.2625,1.087,1.2937,3.1081,8.2616,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,76.9,38.803,32.479,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.3124,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.6608,5.3263,8.7189,0.0,0.0,7.6261,3.488,9.556,8.43,3.49,9.56,12.96,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.63,3394.3,3068.67,59.93,1.0,59.93,76.9,76.9,0.0,51.25,1.0,51.25,76.9,76.9,0.0,67.89,39.644,29.2917,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.7334,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0028,5.5879,8.7049,0.0,0.0,3.2722,3.684,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.53,38.803,32.7433,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.633,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.9261,5.3263,8.7189,0.0,0.0,8.0602,3.488,9.556,8.91,3.49,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,103.38,3452.94,3068.67,60.07,1.0,60.07,77.53,77.53,0.0,51.35,1.0,51.35,77.53,77.53,0.0,68.2,39.644,29.4285,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.8952,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.1412,5.5864,8.7049,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.0,38.803,32.5205,42.2335,0.22215,1.0685,1.0,1.0186,1.0884,1.0,30.5222,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4009,0.9917,1.25,0.2625,1.087,4.7034,5.3263,8.7189,0.0,0.0,7.6958,3.488,9.556,8.51,3.49,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.47,3388.93,3068.67,60.07,1.0,60.07,77.0,77.0,0.0,51.35,1.0,51.35,77.0,77.0,0.0,67.93,39.644,29.3116,43.1489,0.22215,1.0685,1.0,1.0186,1.0884,1.0,27.839,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7651,0.3982,0.9914,1.25,0.2625,1.087,2.0228,5.5879,8.7049,0.0,0.0,3.3048,3.684,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.43,38.801,31.8076,42.1705,0.21837,1.0673,1.0,1.0183,1.0868,1.0,30.0146,0.0,0.0,5.970000000000001,5.88,10.49,9.3,3.85,11.5,16.47,0.0,0.0,1.1058,0.4009,0.9917,1.6932,0.2625,1.087,3.9905,5.3263,8.7189,0.0,0.0,6.4251,3.488,9.556,7.06,3.49,9.56,12.95,0.82,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,95.02,3168.99,3068.67,59.05,1.0,59.05,75.43,75.93,0.0,50.8,1.0,50.8,75.43,75.93,0.0,67.33,39.642,29.0101,43.0845,0.21837,1.0673,1.0,1.0183,1.0868,1.0,27.6032,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3982,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5864,8.7049,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.62,38.802,33.9407,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,30.8742,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3773,4.0726,8.7189,0.0,0.0,11.7564,2.667,9.556,11.76,2.67,9.56,12.95,0.82,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,114.66,3817.41,3068.67,64.39,1.0,64.39,80.62,80.62,0.0,52.75,1.0,52.75,80.62,80.62,0.0,67.65,39.644,29.0956,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.4198,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.2683,8.7049,0.0,0.0,4.9807,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.3,38.802,34.6451,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.3338,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,4.7766,8.7189,0.0,0.0,11.7554,3.128,9.556,11.76,3.13,9.56,12.96,0.82,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.67,3851.25,3068.67,64.88,1.0,64.88,82.3,82.3,0.0,53.19,1.0,53.19,82.3,82.3,0.0,69.43,39.644,29.8639,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.9264,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,5.0373,8.7049,0.0,0.0,4.9797,3.321,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,81.14,38.802,34.1576,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.0162,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3773,4.2895,8.7189,0.0,0.0,11.7564,2.809,9.556,11.76,2.81,9.56,12.95,0.82,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,114.97,3827.63,3068.67,64.88,1.0,64.88,81.14,81.14,0.0,53.19,1.0,53.19,81.14,81.14,0.0,68.18,39.644,29.3261,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.5718,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1264,4.4989,8.7049,0.0,0.0,4.9807,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,38.802,38.1374,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,33.6208,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,8.2689,8.7189,0.0,0.0,11.7554,5.415,9.556,11.76,5.42,9.56,12.96,0.82,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,120.64,4016.58,3068.67,68.15,1.0,68.15,90.59,90.59,0.0,56.14,1.0,56.14,90.59,90.59,0.0,78.1,39.644,33.5938,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,30.3864,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,8.7672,8.7049,0.0,0.0,4.9797,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.93,38.802,34.4909,42.0986,0.21382,1.0658,1.0,1.0179,1.085,1.0,31.2328,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8045,0.4009,0.9917,1.2821,0.2625,1.087,7.3766,4.6224,8.7189,0.0,0.0,11.7554,3.027,9.556,11.76,3.03,9.56,12.96,0.82,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.46,3843.96,3068.67,64.52,1.0,64.52,81.93,81.93,0.0,52.86,1.0,52.86,81.93,81.93,0.0,69.05,39.644,29.6986,43.0121,0.21382,1.0658,1.0,1.0179,1.085,1.0,27.8184,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8047,0.3982,0.9914,1.2821,0.2625,1.087,3.1257,4.872,8.7049,0.0,0.0,4.9797,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-generator.xml,72.19,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.967,35.0336,1.1572,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.28,5237.47,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,63.18,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.0,38.806,34.08,42.074,0.21203,1.0653,1.0,1.0178,1.0842,1.0,31.211,0.0,0.0,5.97,5.88,10.49,5.25,2.97,11.5,16.47,0.0,0.0,0.504,0.5192,0.9917,0.4432,0.2625,1.087,5.4143,6.1747,8.7189,0.0,0.0,4.762,3.122,9.556,4.76,3.12,9.56,12.95,0.82,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,79.48,2563.81,2975.19,65.77,1.0,65.77,81.0,81.0,0.0,56.55,1.0,56.55,81.0,81.0,0.0,74.23,39.65,31.9105,42.9891,0.21203,1.0653,1.0,1.0178,1.0842,1.0,28.747,0.0,0.0,6.92,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.518,0.517,0.9914,0.4432,0.2625,1.087,2.9486,7.2611,8.7049,0.0,0.0,2.523,3.687,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.09,38.638,31.0528,41.9103,0.21318,1.0656,1.0,1.0179,1.0847,1.0,25.5648,0.0,0.0,5.61,6.06,10.48,8.98,3.91,18.18,16.47,0.0,0.0,0.8014,0.4073,1.9548,1.2821,0.2625,3.3898,4.4792,4.3952,8.4032,0.0,0.0,7.1658,2.833,14.5728,7.73,2.83,14.58,12.96,0.82,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,143.13,4627.37,2980.53,51.66,1.0,51.66,74.09,74.09,0.0,44.53,1.0,44.53,74.09,74.09,0.0,65.07,39.451,27.8448,42.7921,0.21318,1.0656,1.0,1.0179,1.0847,1.0,23.1036,0.0,0.0,6.54,5.96,10.48,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,1.953,1.2821,0.2625,3.3898,1.854,4.6318,8.359,0.0,0.0,2.9656,3.007,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 -base-bldgtype-mf-unit-shared-laundry-room.xml,71.38,38.638,29.9169,41.9103,0.21318,1.0656,1.0,1.0179,1.0847,1.0,24.7864,0.0,0.0,5.61,6.06,10.49,8.98,3.91,18.19,16.47,0.0,0.0,0.8014,0.4073,0.9774,1.2821,0.2625,1.6949,4.8161,4.2122,7.1196,0.0,0.0,7.7048,2.715,12.3466,8.31,2.72,12.35,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,135.35,4375.76,2980.48,51.66,1.0,51.66,71.38,71.38,0.0,44.53,1.0,44.53,71.38,71.38,0.0,62.14,39.451,26.5896,42.7921,0.21318,1.0656,1.0,1.0179,1.0847,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.87,18.2,16.47,0.0,0.0,0.8015,0.4044,0.9765,1.2821,0.2625,1.6949,2.0848,4.4069,7.1059,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,73.35,39.368,31.3241,42.7063,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.389,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,0.4795,5.1637,8.6979,2.3159,0.1371,0.7671,3.347,9.533,0.83,3.35,9.53,13.04,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.32,2926.25,3020.04,58.21,1.0,58.21,73.35,73.35,0.0,49.6,1.0,49.6,73.35,73.35,0.0,71.67,40.184,31.2433,43.5915,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.3638,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4022,0.9915,1.2821,0.2625,1.087,0.5632,5.0081,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,69.14,39.368,29.5264,42.7063,0.21344,1.0657,1.0,1.0179,1.0848,1.0,28.2198,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,1.7059,4.6207,8.7079,0.0,0.0,2.729,2.995,9.544,2.94,2.99,9.54,13.0,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.85,2615.86,3020.04,58.21,1.0,58.21,69.14,69.14,0.0,49.6,1.0,49.6,69.14,69.14,0.0,67.91,40.184,29.6037,43.5915,0.21344,1.0657,1.0,1.0179,1.0848,1.0,28.2992,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4022,0.9915,1.2821,0.2625,1.087,1.8443,4.5638,8.7066,0.0,0.0,2.9498,2.979,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,16.45,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.2204,30.2398,24.448,0.873,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,45.24,1459.98,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,61.99,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv.xml,12.5,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,0.1675,29.3668,24.448,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,49.98,1613.25,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,61.99,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4445,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,72.91,38.658,30.5725,41.932,0.21318,1.0656,1.0,1.0179,1.0847,1.0,25.8658,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8012,0.4111,0.9777,1.2821,0.2625,1.6949,4.7159,4.3314,7.7542,0.0,0.0,7.5462,2.766,13.4427,8.14,2.77,13.44,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,137.77,4446.04,2975.19,52.5,1.0,52.5,72.91,72.91,0.0,45.31,1.0,45.31,72.91,72.91,0.0,63.77,39.453,27.2915,42.7943,0.21318,1.0656,1.0,1.0179,1.0847,1.0,23.3522,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-water-heater.xml,71.4,38.658,29.9403,41.932,0.21318,1.0656,1.0,1.0179,1.0847,1.0,24.7698,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8012,0.4111,0.9777,1.2821,0.2625,1.6949,4.7159,4.3314,7.122,0.0,0.0,7.5462,2.766,12.3466,8.14,2.77,12.35,12.95,0.82,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,134.93,4354.5,2975.19,51.62,1.0,51.62,71.4,71.4,0.0,44.58,1.0,44.58,71.4,71.4,0.0,62.3,39.453,26.6598,42.7943,0.21318,1.0656,1.0,1.0179,1.0847,1.0,22.2562,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8014,0.4082,0.9768,1.2821,0.2625,1.6949,2.015,4.5432,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit.xml,74.66,38.802,31.4248,42.0923,0.21344,1.0657,1.0,1.0179,1.0848,1.0,29.3668,0.0,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,4.6532,4.2808,8.7189,0.0,0.0,7.4441,2.788,9.556,8.03,2.79,9.56,12.95,0.82,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,101.89,3288.63,2975.19,58.21,1.0,58.21,74.66,74.66,0.0,49.6,1.0,49.6,74.66,74.66,0.0,65.51,39.645,28.1745,43.0068,0.21344,1.0657,1.0,1.0179,1.0848,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4005,0.9914,1.2821,0.2625,1.087,1.972,4.5017,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-sfa-unit.xml,82.95,56.763,48.9021,58.9514,0.2217,1.0196,1.0,1.0186,1.0386,1.0,42.7902,0.0,0.0,18.68,5.77,10.49,29.79,3.86,11.52,21.83,0.0,0.0,0.804,0.3928,0.9898,1.2821,0.2625,1.087,17.972,4.7632,8.4629,0.0,0.0,28.6568,3.184,9.294,30.89,3.18,9.29,17.01,0.69,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.78,6976.5,4230.64,56.43,1.0,56.43,82.95,82.95,0.0,50.86,1.0,50.86,82.95,82.95,0.0,72.7,59.408,44.8531,61.6984,0.2217,1.0196,1.0,1.0186,1.0386,1.0,39.7286,0.0,0.0,21.4,5.7,10.49,34.11,3.83,11.52,21.82,0.0,0.0,0.8043,0.3911,0.9896,1.2821,0.2625,1.087,14.5747,4.7968,8.4596,0.0,0.0,23.2331,3.22,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-combi-tankless.xml,65.13,76.245,50.2032,77.0829,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.804,0.0,0.0,29.83,8.7,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.4249,0.9711,1.25,0.2625,1.6949,18.8301,7.5829,2.5552,0.0,0.0,30.8291,4.685,4.4598,34.09,4.69,10.29,21.12,0.12,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,149.38,8628.01,5713.08,55.38,1.0,55.38,65.13,65.13,0.0,49.88,1.0,49.88,65.13,65.13,0.0,61.23,80.249,49.6788,81.1309,0.23072,0.9918,1.0,1.0194,1.011,1.0,43.3712,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4234,0.9706,1.25,0.2625,1.6949,18.4514,7.5554,2.5539,0.0,0.0,30.1219,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-desuperheater.xml,84.35,76.706,65.3889,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8666,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.5335,8.2784,6.3411,0.0,0.0,47.0336,5.15,6.965,47.04,5.15,6.97,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.55,9558.21,5713.08,72.13,1.0,72.13,84.35,84.35,0.0,62.69,1.0,62.69,84.35,84.35,0.0,79.08,80.736,64.5197,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.2722,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.8087,8.2576,6.3354,0.0,0.0,45.8796,5.156,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-dwhr.xml,76.02,76.706,58.9305,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.623,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,6.1444,0.0,0.0,37.6408,4.9,6.749,40.58,4.9,6.75,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.8,8588.37,5561.77,56.72,1.0,56.72,76.02,76.02,0.0,51.05,1.0,51.05,76.02,76.02,0.0,71.41,80.736,58.2607,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.1276,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,6.1433,0.0,0.0,36.7837,4.905,6.749,39.65,4.91,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-indirect-standbyloss.xml,68.93,76.193,53.0815,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.9082,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,17.8914,8.0326,5.9195,0.0,0.0,29.2952,4.959,10.5245,32.39,4.96,14.07,21.12,0.12,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,154.64,8955.7,5729.65,55.38,1.0,55.38,68.93,68.93,0.0,49.88,1.0,49.88,68.93,68.93,0.0,64.84,80.194,52.5541,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4762,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.5115,8.0058,5.9159,0.0,0.0,28.5907,4.96,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-gas.xml,78.83,76.194,60.6816,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.3304,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,23.1255,8.1759,8.1432,0.0,0.0,36.844,5.016,14.4781,39.72,5.02,14.23,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,177.88,10025.69,5578.83,54.44,1.0,54.44,78.83,78.83,0.0,48.57,1.0,48.57,78.83,78.83,0.0,74.06,80.195,60.0048,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,47.8354,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.5948,8.1523,8.1377,0.0,0.0,35.9896,5.021,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-hpwh.xml,74.77,76.404,57.7009,77.1744,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.6316,0.0,0.0,30.08,8.61,10.49,47.92,5.3,12.41,27.23,0.0,0.0,0.8047,0.4265,0.9824,1.2821,0.2625,1.1628,26.3882,7.0234,3.0603,0.0,0.0,42.0405,4.323,3.6222,45.32,4.32,3.39,21.11,0.12,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,158.16,8970.48,5615.29,57.04,1.0,57.04,74.77,74.77,0.0,51.34,1.0,51.34,74.77,74.77,0.0,70.2,80.416,57.0203,81.2268,0.21179,0.9924,1.0,1.0178,1.0101,1.0,47.1256,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.8049,0.425,0.9821,1.2821,0.2625,1.1628,25.8508,7.0019,3.0557,0.0,0.0,41.175,4.325,3.618,44.39,4.33,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-jacket-indirect.xml,67.85,76.193,52.2518,77.0124,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.6356,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4253,0.9697,1.25,0.2625,1.7241,18.1621,7.9046,4.9481,0.0,0.0,29.7384,4.88,8.7974,32.88,4.88,13.09,21.12,0.12,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,153.3,8878.15,5729.65,55.38,1.0,55.38,67.85,67.85,0.0,49.88,1.0,49.88,67.85,67.85,0.0,63.81,80.194,51.7246,81.0565,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4238,0.9692,1.25,0.2625,1.7241,17.7829,7.8766,4.9451,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-low-flow-fixtures.xml,78.43,76.706,60.7959,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.672,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.0098,0.0,0.0,37.6408,4.9,8.798,40.58,4.9,8.8,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.73,8752.62,5561.77,56.72,1.0,56.72,78.43,78.43,0.0,51.05,1.0,51.05,78.43,78.43,0.0,73.69,80.736,60.1258,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1766,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.0085,0.0,0.0,36.7837,4.905,8.798,39.65,4.91,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-multiple.xml,68.07,76.706,52.7895,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,43.0294,0.0,0.0,30.56,8.43,10.5,49.99,5.25,11.5,27.23,0.0,0.0,0.7641,0.422,5.9382,1.25,0.2625,6.522,18.2841,7.7945,5.4738,0.0,0.0,29.9093,4.849,6.0120000000000005,33.07,4.85,6.0200000000000005,21.12,0.12,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,133.86,7731.54,5712.89,61.74,1.0,61.74,68.07,68.07,0.0,56.1,1.0,56.1,68.07,68.07,0.0,64.03,80.737,52.2656,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,42.5986,0.0,0.0,34.66,8.37,10.5,56.54,5.23,11.5,27.22,0.0,0.0,0.7663,0.4205,5.9364,1.25,0.2625,6.522,17.9024,7.7707,5.4725,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 -base-dhw-none.xml,82.99,76.246,63.9452,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.924,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,22.8222,8.2968,10.4862,0.0,0.0,36.3597,5.094,18.3029,39.2,5.09,18.3,22.22,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,189.32,10640.75,5561.77,61.63,1.0,61.63,82.99,82.99,0.0,56.57,1.0,56.57,82.99,82.99,0.0,78.02,80.248,63.2686,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.4304,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,22.2916,8.2741,10.4799,0.0,0.0,35.5063,5.099,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-recirc-demand.xml,78.63,76.706,60.9544,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.845,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.1683,0.0,0.0,37.6408,4.9,8.972,40.58,4.9,8.97,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.97,8766.4,5561.77,56.72,1.0,56.72,78.63,78.63,0.0,51.05,1.0,51.05,78.63,78.63,0.0,73.89,80.736,60.2833,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3486,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.1659,0.0,0.0,36.7837,4.905,8.971,39.65,4.91,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-fraction.xml,71.94,76.706,55.7667,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,46.1122,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.7979,7.8587,2.8751,0.0,0.0,37.9135,4.86,3.158,40.87,4.86,3.16,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.38,8339.62,5561.77,56.72,1.0,56.72,71.94,71.94,0.0,51.05,1.0,51.05,71.94,71.94,0.0,67.53,80.736,55.0971,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,45.6168,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.265,7.8394,2.8746,0.0,0.0,37.0564,4.864,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-indirect-flat-plate.xml,70.13,76.706,54.3635,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.5816,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.3851,8.1691,1.5723,0.0,0.0,37.2558,5.052,1.727,40.16,5.05,1.73,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.84,8140.67,5561.77,56.72,1.0,56.72,70.13,70.13,0.0,51.05,1.0,51.05,70.13,70.13,0.0,65.81,80.736,53.6937,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,44.0862,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.8521,8.1505,1.5711,0.0,0.0,36.3987,5.057,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-elec-uef.xml,78.7,76.753,61.049,77.5688,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.951,0.0,0.0,30.64,8.4,10.49,48.81,5.2,11.38,27.23,0.0,0.0,0.8047,0.4243,0.9908,1.2821,0.2625,1.0753,23.593,7.9322,8.2878,0.0,0.0,37.5879,4.908,8.9942,40.52,4.91,9.09,21.12,0.12,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,156.24,8768.62,5553.21,56.97,1.0,56.97,78.7,78.7,0.0,51.25,1.0,51.25,78.7,78.7,0.0,73.95,80.786,60.3773,81.6447,0.22319,0.992,1.0,1.0187,1.0106,1.0,51.4542,0.0,0.0,34.74,8.34,10.49,55.33,5.18,11.38,27.22,0.0,0.0,0.8049,0.4228,0.9906,1.2821,0.2625,1.0753,23.0609,7.9111,8.2863,0.0,0.0,36.7308,4.912,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-gas-uef.xml,78.66,76.344,60.7128,77.1829,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.4998,0.0,0.0,29.99,8.64,10.49,47.78,5.31,17.66,27.23,0.0,0.0,0.8047,0.427,0.9737,1.2821,0.2625,1.6393,23.0488,8.1873,8.2396,0.0,0.0,36.7215,5.034,13.8725,39.59,5.03,14.75,21.12,0.12,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,179.61,10083.55,5553.21,54.44,1.0,54.44,78.66,78.66,0.0,48.57,1.0,48.57,78.66,78.66,0.0,73.91,80.354,60.0383,81.237,0.2307,0.9918,1.0,1.0194,1.011,1.0,48.0056,0.0,0.0,34.07,8.58,10.49,54.27,5.29,17.67,27.22,0.0,0.0,0.8049,0.4253,0.9733,1.2821,0.2625,1.6393,22.5189,8.1636,8.2359,0.0,0.0,35.869,5.039,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-heat-pump-uef.xml,73.89,76.61,57.1937,77.4073,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.9426,0.0,0.0,30.41,8.49,10.49,48.45,5.24,11.81,27.23,0.0,0.0,0.8047,0.4252,0.9872,1.2821,0.2625,1.1111,26.9143,6.8637,2.1887,0.0,0.0,42.879,4.238,2.4636,46.23,4.24,2.41,21.11,0.12,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,159.99,9018.25,5578.83,56.78,1.0,56.78,73.89,73.89,0.0,51.11,1.0,51.11,73.89,73.89,0.0,69.36,80.634,56.5131,81.4732,0.21857,0.9922,1.0,1.0183,1.0104,1.0,46.436,0.0,0.0,34.5,8.42,10.49,54.95,5.22,11.81,27.22,0.0,0.0,0.8049,0.4237,0.987,1.2821,0.2625,1.1111,26.3741,6.8425,2.1865,0.0,0.0,42.0089,4.24,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-oil.xml,79.44,76.194,61.1537,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.649,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.874,8.2737,8.768,0.0,0.0,36.4432,5.076,15.589,39.29,5.08,15.32,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,192.9,10872.57,5578.83,54.44,1.0,54.44,79.44,79.44,0.0,48.57,1.0,48.57,79.44,79.44,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-wood.xml,79.44,76.194,61.1537,76.9798,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.649,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.874,8.2737,8.768,0.0,0.0,36.4432,5.076,15.589,39.29,5.08,15.32,21.12,0.12,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.44,1.0,54.44,79.44,79.44,0.0,48.57,1.0,48.57,79.44,79.44,0.0,74.64,80.195,60.4772,81.0221,0.2166,0.9923,1.0,1.0182,1.0103,1.0,48.1558,0.0,0.0,33.82,8.66,10.49,53.87,5.34,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3438,8.2497,8.7628,0.0,0.0,35.5898,5.081,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-electric-uef.xml,79.07,76.706,61.2927,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.1622,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.8899,7.8247,8.3431,0.0,0.0,38.0601,4.839,9.164,41.03,4.84,9.16,21.12,0.12,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,157.31,8841.33,5561.77,56.86,1.0,56.86,79.07,79.07,0.0,51.19,1.0,51.19,79.07,79.07,0.0,74.3,80.736,60.6222,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.6658,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.3571,7.8056,8.3416,0.0,0.0,37.2029,4.843,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tankless-gas-uef.xml,72.47,76.246,55.8392,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.861,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.8894,7.8815,2.8333,0.0,0.0,38.0601,4.839,4.9453,41.03,4.84,9.66,21.12,0.12,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,169.56,9530.07,5561.77,54.44,1.0,54.44,72.47,72.47,0.0,48.57,1.0,48.57,72.47,72.47,0.0,68.03,80.248,55.1653,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.3646,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,2.8319,0.0,0.0,37.2029,4.843,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-propane.xml,74.77,76.246,57.6076,77.0503,0.22151,0.9921,1.0,1.0186,1.0105,1.0,47.4742,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4276,0.9711,1.2821,0.2625,1.6949,23.8894,7.8815,4.6018,0.0,0.0,38.0601,4.839,8.032,41.03,4.84,11.19,21.12,0.12,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,179.65,10097.25,5561.77,54.44,1.0,54.44,74.77,74.77,0.0,48.57,1.0,48.57,74.77,74.77,0.0,70.21,80.248,56.9329,81.0945,0.22151,0.9921,1.0,1.0186,1.0105,1.0,46.9778,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.3567,7.8587,4.5995,0.0,0.0,37.2029,4.843,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-enclosure-2stories-garage.xml,76.88,92.009,69.3027,90.148,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,40.03,10.63,10.49,63.76,6.24,11.52,30.87,0.0,0.0,0.8049,0.4467,0.9896,1.2821,0.2625,1.087,25.3051,12.0508,8.1737,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.48,6613.03,56.75,1.0,56.75,76.88,76.88,0.0,51.54,1.0,51.54,76.88,76.88,0.0,70.46,100.555,69.4154,98.5212,0.2217,0.9798,1.0,1.0,0.9798,1.0,57.7034,0.0,0.0,48.62,10.59,10.49,77.43,6.17,11.52,30.86,0.0,0.0,0.805,0.4509,0.9892,1.2821,0.2625,1.087,25.3065,12.165,8.1709,0.0,0.0,40.304,7.0831,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-2stories.xml,76.8,104.694,77.621,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,30.5132,11.7682,8.0706,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,11119.81,7501.77,56.51,1.0,56.51,76.8,76.8,0.0,51.2,1.0,51.2,76.8,76.8,0.0,70.42,114.3,77.7037,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,64.6108,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,30.5147,11.8522,8.0678,0.0,0.0,48.5987,6.8431,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-1.xml,82.55,69.215,55.9746,67.8046,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,29.82,7.9,6.15,47.49,4.93,7.18,25.34,0.0,0.0,0.805,0.4209,0.931,1.2821,0.2625,1.087,24.1297,7.467,4.6918,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.11,8466.05,4992.31,58.3,1.0,58.3,82.55,82.55,0.0,53.07,1.0,53.07,82.55,82.55,0.0,78.02,73.247,55.985,71.7544,0.22188,0.9921,0.9694,1.0186,0.9796,1.0,46.9364,0.0,0.0,33.92,7.84,6.15,54.01,4.89,7.19,25.33,0.0,0.0,0.805,0.4214,0.9307,1.2821,0.2625,1.087,24.132,7.4765,4.6905,0.0,0.0,38.4311,4.658,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-2.xml,80.08,73.023,58.1936,72.665,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,30.19,8.17,8.39,48.09,5.07,9.42,26.28,0.0,0.0,0.8048,0.4227,0.9679,1.2821,0.2625,1.087,23.6058,7.6976,6.4882,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.64,8548.6,5281.97,57.49,1.0,57.49,80.08,80.08,0.0,52.01,1.0,52.01,80.08,80.08,0.0,75.8,77.056,58.1246,76.6782,0.22178,0.9921,0.9847,1.0186,0.9951,1.0,49.2016,0.0,0.0,34.29,8.11,8.39,54.6,5.08,9.42,26.28,0.0,0.0,0.8051,0.4186,0.9677,1.2821,0.2625,1.087,23.6122,7.6235,6.4868,0.0,0.0,37.6027,4.781,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-4.xml,80.49,80.327,66.3384,82.4157,0.22158,0.9921,1.0153,1.0186,1.026,1.0,56.525,0.0,0.0,30.93,8.7,12.53,49.29,5.36,13.56,28.17,0.0,0.0,0.8046,0.4264,1.0042,1.2821,0.2625,1.087,25.7777,8.1322,9.8995,0.0,0.0,41.0757,5.007,10.715,44.28,5.01,10.72,21.83,0.7,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.64,9559.66,5836.33,55.91,1.0,55.91,80.49,80.49,0.0,50.09,1.0,50.09,80.49,80.49,0.0,72.15,84.356,62.4478,86.5495,0.22158,0.9921,1.0153,1.0186,1.026,1.0,53.559,0.0,0.0,35.03,8.63,12.53,55.81,5.33,13.56,28.17,0.0,0.0,0.8048,0.4249,1.0041,1.2821,0.2625,1.087,22.5792,8.1394,9.8971,0.0,0.0,35.9711,5.029,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-5.xml,80.42,83.91,70.281,87.3877,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,60.0782,0.0,0.0,31.3,8.97,14.53,49.89,5.5,15.56,29.11,0.0,0.0,0.8045,0.4281,1.0148,1.2821,0.2625,1.087,26.7913,8.3491,11.5646,0.0,0.0,42.6972,5.12,12.387,46.03,5.12,12.39,22.54,1.04,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.01,10042.06,6102.48,55.13,1.0,55.13,80.42,80.42,0.0,49.16,1.0,49.16,80.42,80.42,0.0,70.5,87.938,64.563,91.5826,0.22154,0.9921,1.0306,1.0186,1.0414,1.0,55.7096,0.0,0.0,35.4,8.9,14.53,56.41,5.48,15.56,29.11,0.0,0.0,0.8047,0.4267,1.0147,1.2821,0.2625,1.087,22.0764,8.3784,11.5612,0.0,0.0,35.1742,5.155,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-ceilingtypes.xml,88.91,76.706,68.4559,76.9934,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.9174,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,30.9684,8.0446,8.2129,0.0,0.0,49.3371,4.975,9.021,53.19,4.98,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,190.63,10642.17,5561.77,56.61,1.0,56.61,88.91,88.91,0.0,50.95,1.0,50.95,88.91,88.91,0.0,83.67,80.736,67.803,81.0385,0.07895,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,30.4586,8.0199,8.2114,0.0,0.0,48.5143,4.976,9.021,52.3,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-floortypes.xml,103.78,56.885,62.5105,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,51.6758,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,31.28,7.1022,8.3953,0.0,0.0,49.9456,4.51,9.219,53.84,4.51,9.22,14.95,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,231.6,10236.05,4173.95,54.96,1.0,54.96,103.78,103.78,0.0,49.58,1.0,49.58,103.78,103.78,0.0,93.59,58.457,57.9333,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,48.1844,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,27.5626,7.023,8.3937,0.0,0.0,44.0024,4.468,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-garage.xml,78.37,75.021,59.4159,75.813,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.276,0.0,0.0,30.44,6.97,10.49,48.49,4.5,11.73,27.12,0.0,0.0,0.8048,0.4068,0.9721,1.2821,0.2625,1.087,25.0974,5.1097,8.1448,0.0,0.0,39.9812,3.298,9.107,43.1,3.3,9.11,20.95,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.21,9013.15,5498.43,57.34,1.0,57.34,78.37,78.37,0.0,51.49,1.0,51.49,78.37,78.37,0.0,73.46,79.12,58.7329,79.9553,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.7522,0.0,0.0,34.58,6.93,10.49,55.07,4.49,11.73,27.12,0.0,0.0,0.805,0.4056,0.9721,1.2821,0.2625,1.087,24.5468,5.0964,8.1457,0.0,0.0,39.0944,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ach-house-pressure.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm-house-pressure.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm50.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ela.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-ach.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-cfm.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-overhangs.xml,78.55,76.706,60.8864,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.842,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.8201,7.6193,8.212,0.0,0.0,37.9487,4.712,9.02,40.91,4.71,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.67,8805.35,5561.77,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,73.8,80.736,60.2156,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3456,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.2872,7.6009,8.2105,0.0,0.0,37.0916,4.716,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-skylights.xml,79.24,76.706,61.3698,77.4444,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.9404,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.7347,9.183,8.211,0.0,0.0,36.2197,5.6791,9.019,39.05,5.68,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.35,8610.91,5561.77,56.72,1.0,56.72,79.24,79.24,0.0,51.05,1.0,51.05,79.24,79.24,0.0,74.47,80.736,60.7057,81.5132,0.20223,0.9928,1.0,1.017,1.0096,1.0,51.454,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2103,9.1627,8.2087,0.0,0.0,35.3765,5.6851,9.018,38.14,5.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-walltypes.xml,92.57,76.661,70.8272,76.5127,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,59.2934,0.0,0.0,30.52,8.42,10.49,48.63,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,34.9619,6.4257,8.2147,0.0,0.0,55.7014,3.973,9.023,60.05,3.97,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,207.83,11531.4,5559.26,56.84,1.0,56.84,92.57,92.57,0.0,51.16,1.0,51.16,92.57,92.57,0.0,87.15,80.692,70.1859,80.5359,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.809,0.0,0.0,34.62,8.36,10.49,55.15,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,34.4215,6.4441,8.2133,0.0,0.0,54.8276,3.999,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-ambient.xml,86.97,56.885,52.3844,60.2347,0.2217,1.0395,1.0,1.0186,1.0589,1.0,44.225,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4134,0.9898,1.2821,0.2625,1.087,19.266,8.9683,8.3871,0.0,0.0,30.7625,5.6951,9.21,33.16,5.69,9.21,14.98,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.43,7311.46,4173.95,55.15,1.0,55.15,86.97,86.97,0.0,49.78,1.0,49.78,86.97,86.97,0.0,77.34,58.457,47.87,61.8993,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.8378,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4127,0.9898,1.2821,0.2625,1.087,15.5006,8.9957,8.3837,0.0,0.0,24.746,5.7231,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-basement-garage.xml,81.01,68.04,57.0367,70.4061,0.2217,1.0159,1.0,1.0186,1.0348,1.0,48.3424,0.0,0.0,27.7,7.1,10.49,44.11,4.46,11.52,22.76,0.0,0.0,0.805,0.4176,0.9895,1.2821,0.2625,1.087,22.376,7.9614,8.4243,0.0,0.0,35.6343,5.005,9.254,38.42,5.01,9.25,17.62,0.66,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.5,8237.06,4929.0,55.55,1.0,55.55,81.01,81.01,0.0,50.35,1.0,50.35,81.01,81.01,0.0,72.68,70.9,53.3211,73.3656,0.2217,1.0159,1.0,1.0186,1.0348,1.0,45.4954,0.0,0.0,30.61,7.05,10.49,48.74,4.42,11.52,22.76,0.0,0.0,0.8051,0.4186,0.9893,1.2821,0.2625,1.087,19.2747,8.0037,8.4228,0.0,0.0,30.6939,5.02,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,78.18,76.706,60.6009,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.5642,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.8663,8.2855,8.211,0.0,0.0,36.4293,5.124,9.019,39.27,5.12,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.96,8597.1,5561.77,56.72,1.0,56.72,78.18,78.18,0.0,51.05,1.0,51.05,78.18,78.18,0.0,73.45,80.736,59.9291,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0684,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.3303,8.2681,8.2096,0.0,0.0,35.5676,5.13,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,78.76,74.913,59.6237,75.7039,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.1012,0.0,0.0,29.13,8.07,10.49,46.41,5.04,11.52,27.23,0.0,0.0,0.8047,0.4205,0.9896,1.2821,0.2625,1.087,22.9548,7.2229,8.212,0.0,0.0,36.5722,4.51,9.02,39.43,4.51,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.24,8567.06,5460.9,57.66,1.0,57.66,78.76,78.76,0.0,51.82,1.0,51.82,78.76,78.76,0.0,73.9,78.939,58.9491,79.7724,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6008,0.0,0.0,33.22,8.01,10.49,52.91,5.02,11.52,27.22,0.0,0.0,0.8049,0.419,0.9894,1.2821,0.2625,1.087,22.4211,7.2015,8.2105,0.0,0.0,35.7132,4.512,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-multiple.xml,80.45,55.64,47.3985,58.9164,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.9896,0.0,0.0,19.82,6.53,10.49,31.66,4.24,11.67,18.8,0.0,0.0,0.8027,0.4039,0.9769,1.2821,0.2625,1.087,15.897,7.7029,8.2376,0.0,0.0,25.3916,5.007,9.166,27.37,5.01,9.17,14.78,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.87,6387.97,4107.42,54.55,1.0,54.55,80.45,80.45,0.0,49.0,1.0,49.0,80.45,80.45,0.0,71.08,57.233,43.074,60.6032,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.702,0.0,0.0,21.44,6.5,10.49,34.24,4.24,11.67,18.8,0.0,0.0,0.8028,0.4032,0.9769,1.2821,0.2625,1.087,12.3831,7.6897,8.2412,0.0,0.0,19.7758,5.007,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-slab.xml,71.82,57.803,43.9575,61.2068,0.2217,1.0395,1.0,1.0186,1.0589,1.0,38.579,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.804,0.4053,0.9896,1.2821,0.2625,1.087,13.0258,6.7817,8.384,0.0,0.0,20.7702,4.393,9.209,22.39,4.39,9.21,14.98,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,126.61,5636.68,4204.44,54.27,1.0,54.27,71.82,71.82,0.0,49.11,1.0,49.11,71.82,71.82,0.0,63.8,59.388,40.1238,62.8851,0.2217,1.0395,1.0,1.0186,1.0589,1.0,35.6438,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8041,0.4047,0.9895,1.2821,0.2625,1.087,9.9922,6.7581,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,77.79,55.744,45.9189,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.9354,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,15.1287,7.039,8.2582,0.0,0.0,24.1644,4.546,9.185,26.05,4.55,9.19,14.71,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,141.59,6158.44,4107.52,54.0,1.0,54.0,77.79,77.79,0.0,48.5,1.0,48.5,77.79,77.79,0.0,68.58,57.335,41.6365,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.6778,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,11.6595,7.0202,8.2618,0.0,0.0,18.62,4.541,9.189,20.07,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,84.89,55.744,50.1101,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,42.9738,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,19.6563,6.5466,8.2043,0.0,0.0,31.3961,4.228,9.125,33.85,4.23,9.13,14.92,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.56,7288.05,4107.52,54.0,1.0,54.0,84.89,84.89,0.0,48.5,1.0,48.5,84.89,84.89,0.0,75.63,57.335,45.9174,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,16.3197,6.4775,8.2052,0.0,0.0,26.0623,4.19,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement.xml,80.71,55.744,47.6431,59.0265,0.2217,1.0395,1.0,1.0186,1.0589,1.0,41.1112,0.0,0.0,19.74,6.71,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8027,0.4065,0.9773,1.2821,0.2625,1.087,16.0672,7.8132,8.2537,0.0,0.0,25.6634,5.046,9.18,27.67,5.05,9.18,14.73,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.85,6430.58,4107.52,54.0,1.0,54.0,80.71,80.71,0.0,48.5,1.0,48.5,80.71,80.71,0.0,71.27,57.335,43.2684,60.7112,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7898,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4059,0.9773,1.2821,0.2625,1.087,12.4971,7.8009,8.2564,0.0,0.0,19.9576,5.046,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unvented-crawlspace.xml,78.29,55.446,45.9658,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,39.9562,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,14.0162,7.9024,8.2721,0.0,0.0,22.388,4.974,9.284,24.14,4.97,9.28,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,136.86,5939.3,4098.46,55.85,1.0,55.85,78.29,78.29,0.0,50.41,1.0,50.41,78.29,78.29,0.0,69.34,56.992,41.8426,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,36.823,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,10.6544,7.9106,8.2756,0.0,0.0,17.0162,4.99,9.288,18.34,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace-above-grade.xml,80.82,55.377,47.3901,58.6379,0.2217,1.0395,1.0,1.0186,1.0589,1.0,41.0066,0.0,0.0,18.41,7.35,10.49,29.41,4.64,11.79,19.13,0.0,0.0,0.8026,0.4158,0.9672,1.2821,0.2625,1.087,15.2945,8.0007,8.3229,0.0,0.0,24.4306,5.052,9.353,26.34,5.05,9.35,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.61,6272.86,4096.41,55.99,1.0,55.99,80.82,80.82,0.0,50.56,1.0,50.56,80.82,80.82,0.0,71.49,56.928,43.0944,60.2802,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.31,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8027,0.415,0.9672,1.2821,0.2625,1.087,11.7648,8.0041,8.3265,0.0,0.0,18.7907,5.064,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace.xml,80.48,55.446,47.2479,58.711,0.2217,1.0395,1.0,1.0186,1.0589,1.0,40.9028,0.0,0.0,18.38,7.45,10.49,29.35,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,15.3682,7.769,8.3407,0.0,0.0,24.5475,4.89,9.361,26.46,4.89,9.36,14.99,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,6280.31,4098.46,55.85,1.0,55.85,80.48,80.48,0.0,50.41,1.0,50.41,80.48,80.48,0.0,71.15,56.992,42.9362,60.348,0.2217,1.0395,1.0,1.0186,1.0589,1.0,37.6348,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,11.8276,7.7663,8.3442,0.0,0.0,18.89,4.899,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-walkout-basement.xml,80.2,81.34,64.72,80.6969,0.2217,0.9921,1.0,1.0,0.9921,1.0,54.4118,0.0,0.0,34.15,9.48,10.49,54.41,5.76,11.52,27.23,0.0,0.0,0.8047,0.4323,0.9896,1.2821,0.2625,1.087,26.8345,8.4396,8.2129,0.0,0.0,42.7529,5.125,9.021,46.09,5.13,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.96,9588.64,5859.04,56.45,1.0,56.45,80.2,80.2,0.0,51.25,1.0,51.25,80.2,80.2,0.0,73.42,87.92,64.0413,87.2249,0.2217,0.9921,1.0,1.0,0.9921,1.0,53.9078,0.0,0.0,40.78,9.43,10.49,64.95,5.75,11.52,27.22,0.0,0.0,0.805,0.4308,0.9893,1.2821,0.2625,1.087,26.3005,8.415,8.2107,0.0,0.0,41.8865,5.128,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.63,76.676,66.3469,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,53.4806,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,7.6684,8.2127,0.0,0.0,46.5516,3.909,9.02,46.55,3.91,9.02,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.87,9549.99,5629.63,70.67,1.0,70.67,85.63,85.63,0.0,61.27,1.0,61.27,85.63,85.63,0.0,80.29,80.71,65.4822,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.8842,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,7.6476,8.2105,0.0,0.0,45.3977,3.909,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.62,76.706,67.1366,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,58.268,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,30.0613,7.6274,8.212,0.0,0.0,23.2692,4.745,9.02,23.27,4.75,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.64,4943.66,5713.08,56.2,1.0,56.2,86.62,86.62,0.0,50.29,1.0,50.29,86.62,86.62,0.0,81.65,80.737,66.6081,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.675,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.6009,8.2105,0.0,0.0,22.7922,4.746,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.69,76.714,65.648,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.688,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,29.139,7.0611,8.212,0.0,0.0,21.7422,3.692,9.02,21.74,3.69,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.93,4716.88,5561.77,53.34,1.0,53.34,84.69,84.69,0.0,47.33,1.0,47.33,84.69,84.69,0.0,80.15,80.744,65.3937,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.262,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0157,7.0495,8.2105,0.0,0.0,21.4292,3.696,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.67,76.714,65.6382,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.686,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,29.1483,7.0419,8.212,0.0,0.0,21.7492,3.682,9.02,21.75,3.68,9.02,21.12,0.12,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.9,4715.09,5561.77,53.34,1.0,53.34,84.67,84.67,0.0,47.33,1.0,47.33,84.67,84.67,0.0,80.13,80.744,65.3808,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0238,7.0285,8.2105,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-portable.xml,68.59,63.451,46.7136,68.1039,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.424,0.0,0.0,9.88,26.59,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8067,0.4449,0.9614,1.2821,0.2625,1.087,3.0456,22.2576,5.9383,0.0,0.0,4.8403,13.1351,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.25,5975.91,7601.23,48.29,1.0,48.29,68.59,68.59,0.0,46.5,1.0,46.5,68.59,68.59,0.0,65.69,64.025,45.1417,68.72,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4486,0.0,0.0,10.36,26.66,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.8038,0.4404,0.9613,1.2821,0.2625,1.087,2.5607,21.4953,5.9368,0.0,0.0,4.0843,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,68.6,63.418,46.6927,68.0684,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4272,0.0,0.0,9.86,26.57,7.52,15.7,15.69,8.5,19.22,0.0,0.25,0.8051,0.4445,0.9614,1.2821,0.2625,1.087,3.0383,22.2401,5.9383,0.0,0.0,4.8384,13.1361,6.714,5.22,13.14,6.71,15.09,0.32,0.07,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.96,7602.33,48.36,1.0,48.36,68.6,68.6,0.0,46.67,1.0,46.67,68.6,68.6,0.0,65.69,64.004,45.1241,68.6974,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4468,0.0,0.0,10.35,26.65,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.803,0.4402,0.9613,1.2821,0.2625,1.087,2.5569,21.4815,5.9368,0.0,0.0,4.0824,12.8131,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-multiple.xml,68.57,63.519,46.7475,68.1769,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4158,0.0,0.0,9.94,26.63,7.52,15.74,15.69,8.5,19.22,0.0,0.21,0.8098,0.4455,0.9613,1.2821,0.2625,1.087,3.0585,22.2864,5.9376,0.0,0.0,4.8422,13.1331,6.714,5.22,13.13,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.32,7600.89,48.16,1.0,48.16,68.57,68.57,0.0,46.19,1.0,46.19,68.57,68.57,0.0,65.65,64.13,45.1909,68.8327,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4428,0.0,0.0,10.44,26.71,7.52,16.56,15.89,8.5,19.22,0.0,0.24,0.808,0.4413,0.9612,1.2821,0.2625,1.087,2.5757,21.5351,5.9361,0.0,0.0,4.0871,12.8111,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier.xml,68.58,63.451,46.708,68.1039,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4186,0.0,0.0,9.88,26.59,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8067,0.4449,0.9614,1.2821,0.2625,1.087,3.0451,22.2576,5.9383,0.0,0.0,4.8394,13.1351,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.14,7601.23,48.29,1.0,48.29,68.58,68.58,0.0,46.5,1.0,46.5,68.58,68.58,0.0,65.67,64.025,45.1301,68.72,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4392,0.0,0.0,10.36,26.66,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.8038,0.4404,0.9613,1.2821,0.2625,1.087,2.5601,21.4902,5.9368,0.0,0.0,4.0834,12.8111,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-gas.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4416,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.1,9051.85,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-modified.xml,78.91,76.706,61.1703,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.2564,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.0844,7.9497,8.6872,0.0,0.0,36.7762,4.915,9.542,39.65,4.92,9.54,21.44,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.7,8694.89,5561.74,56.97,1.0,56.97,78.91,78.91,0.0,51.27,1.0,51.27,78.91,78.91,0.0,74.9,80.735,61.1081,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.2304,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0597,7.9197,8.6857,0.0,0.0,36.7289,4.915,9.542,39.6,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-none.xml,79.94,76.706,61.9635,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.051,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.0151,7.9853,8.6071,0.0,0.0,36.6659,4.937,9.454,39.53,4.94,9.45,22.35,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.54,8742.15,5561.74,56.72,1.0,56.72,79.94,79.94,0.0,51.05,1.0,51.05,79.94,79.94,0.0,75.87,80.735,61.9028,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.025,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.9904,7.9568,8.6056,0.0,0.0,36.6185,4.938,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-oil.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.31,9288.39,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-propane.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.74,9200.3,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-wood.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-cathedral.xml,71.75,79.679,57.7115,80.4331,0.19884,0.9929,1.0,1.0167,1.0095,1.0,49.4442,0.0,0.0,33.37,8.6,10.49,53.14,5.22,11.52,27.23,0.0,0.0,0.805,0.4325,0.9896,1.2821,0.2625,1.087,20.9756,7.4009,8.212,0.0,0.0,33.4053,4.493,9.02,36.01,4.49,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.92,8068.0,5753.36,56.19,1.0,56.19,71.75,71.75,0.0,51.47,1.0,51.47,71.75,71.75,0.0,66.92,85.426,57.7042,86.2344,0.19884,0.9929,1.0,1.0167,1.0095,1.0,49.4208,0.0,0.0,39.18,8.53,10.49,62.4,5.16,11.52,27.22,0.0,0.0,0.805,0.4339,0.9893,1.2821,0.2625,1.087,20.9523,7.4252,8.2098,0.0,0.0,33.3673,4.493,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-conditioned.xml,74.41,92.424,66.9821,90.0199,0.21383,0.974,1.0,1.0,0.974,1.0,57.0404,0.0,0.0,38.4,10.91,10.49,61.16,6.45,11.52,32.63,0.0,0.0,0.805,0.4441,0.9897,1.2821,0.2625,1.087,24.7854,8.8516,8.1271,0.0,0.0,39.4756,5.233,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.73,9397.33,6666.53,57.67,1.0,57.67,74.41,74.41,0.0,51.63,1.0,51.63,74.41,74.41,0.0,68.31,100.669,66.9773,98.0504,0.21383,0.974,1.0,1.0,0.974,1.0,57.0404,0.0,0.0,46.73,10.83,10.49,74.42,6.41,11.52,32.62,0.0,0.0,0.805,0.4439,0.9894,1.2821,0.2625,1.087,24.7865,8.8478,8.125,0.0,0.0,39.4756,5.233,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-flat.xml,71.33,76.727,55.2498,77.4517,0.19845,0.9929,1.0,1.0166,1.0094,1.0,47.761,0.0,0.0,30.34,8.67,10.49,48.32,5.22,11.52,27.23,0.0,0.0,0.805,0.4358,0.9897,1.2821,0.2625,1.087,19.3837,6.5304,8.2127,0.0,0.0,30.8692,3.934,9.02,33.28,3.93,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,135.97,7629.2,5558.26,56.7,1.0,56.7,71.33,71.33,0.0,51.04,1.0,51.04,71.33,71.33,0.0,67.72,80.738,55.1954,81.5006,0.19845,0.9929,1.0,1.0166,1.0094,1.0,47.7376,0.0,0.0,34.43,8.6,10.49,54.83,5.2,11.52,27.22,0.0,0.0,0.805,0.4343,0.9895,1.2821,0.2625,1.087,19.3589,6.5083,8.2112,0.0,0.0,30.8302,3.934,9.02,33.24,3.93,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-radiant-barrier.xml,74.84,63.068,50.0748,66.9075,0.22898,1.0409,1.0,1.0192,1.0609,1.0,39.6386,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8002,0.4431,0.9612,1.2821,0.2625,1.087,4.8323,23.9088,5.9396,0.0,0.0,7.7419,14.1671,6.717,8.35,14.17,6.72,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,82.05,6595.88,7577.46,47.26,1.0,47.26,74.84,74.84,0.0,44.31,1.0,44.31,74.84,74.84,0.0,71.67,63.657,48.4017,67.5324,0.22898,1.0409,1.0,1.0192,1.0609,1.0,38.587,0.0,0.0,10.41,26.51,7.52,16.68,15.85,8.5,19.22,0.0,0.0,0.8003,0.4391,0.961,1.2821,0.2625,1.087,4.2924,23.0903,5.938,0.0,0.0,6.8764,13.8071,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-unvented-insulated-roof.xml,73.96,76.706,57.2366,77.3894,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.272,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,21.1344,6.7674,8.2129,0.0,0.0,33.6697,4.184,9.021,36.3,4.18,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.09,8085.35,5561.74,56.72,1.0,56.72,73.96,73.96,0.0,51.05,1.0,51.05,73.96,73.96,0.0,70.21,80.735,57.1854,81.4543,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.248,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.1145,6.7435,8.2114,0.0,0.0,33.6307,4.185,9.021,36.26,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-vented.xml,76.42,77.041,59.495,77.8555,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.231,0.0,0.0,31.1,8.23,10.49,49.54,5.12,11.82,27.23,0.0,0.0,0.8047,0.4224,0.9644,1.2821,0.2625,1.087,23.1812,7.0424,8.1484,0.0,0.0,36.9312,4.377,9.184,39.81,4.38,9.18,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.88,8615.91,5613.41,57.49,1.0,57.49,76.42,76.42,0.0,51.95,1.0,51.95,76.42,76.42,0.0,72.54,81.089,59.4439,81.9463,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2086,0.0,0.0,35.21,8.17,10.49,56.08,5.1,11.82,27.22,0.0,0.0,0.8049,0.4209,0.9644,1.2821,0.2625,1.087,23.1608,7.0177,8.1484,0.0,0.0,36.8903,4.377,9.184,39.77,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-battery.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,78.64,40.542,34.5847,43.9798,0.21343,1.0657,1.0,1.0179,1.0848,1.0,31.6532,0.0,0.0,8.48,5.13,10.49,13.56,3.5,11.51,16.45,0.0,0.0,0.8015,0.3843,0.9907,1.2821,0.2625,1.087,9.0135,3.5145,8.7207,0.0,0.0,14.4179,2.401,9.568,15.54,2.4,9.57,12.92,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.26,4325.87,3109.14,67.83,1.0,67.83,78.64,78.64,0.0,58.9,1.0,58.9,78.64,78.64,0.0,71.29,41.506,32.0967,45.0255,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.7806,0.0,0.0,9.49,5.08,10.49,15.18,3.49,11.51,16.44,0.0,0.0,0.8016,0.3829,0.9905,1.2821,0.2625,1.087,6.9736,3.4827,8.7165,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-location-portland-or.xml,73.83,33.868,26.81,36.3134,0.18282,1.056,1.0,1.0153,1.0722,1.0,26.081,0.0,0.0,3.99,3.46,9.97,6.39,2.41,10.99,16.45,0.0,0.0,0.8002,0.377,0.9866,1.2821,0.2625,1.087,2.3415,2.8232,8.2704,0.0,0.0,3.7513,1.966,9.112,4.04,1.97,9.11,12.95,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.37,2577.1,2689.55,62.66,1.0,62.66,73.83,73.83,0.0,51.43,1.0,51.43,73.83,73.83,0.0,69.92,34.21,25.6471,36.6801,0.18282,1.056,1.0,1.0153,1.0722,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.36,10.99,16.45,0.0,0.0,0.8002,0.3719,0.9864,1.2821,0.2625,1.087,1.2934,3.1081,8.2616,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,72.97,38.802,30.8174,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,28.968,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.2855,5.4247,8.7152,0.0,0.0,5.3759,3.553,9.552,5.94,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.92,3003.26,3068.63,59.94,1.0,59.94,72.97,72.97,0.0,51.25,1.0,51.25,72.97,72.97,0.0,67.88,39.644,29.2903,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.7334,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.003,5.5864,8.7049,0.0,0.0,3.2722,3.683,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,73.46,38.802,31.0219,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,29.212,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.4901,5.4247,8.7152,0.0,0.0,5.7105,3.553,9.552,6.31,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,91.29,3048.95,3068.63,60.07,1.0,60.07,73.46,73.46,0.0,51.36,1.0,51.36,73.46,73.46,0.0,68.2,39.644,29.4287,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.8952,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.1414,5.5864,8.7049,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,73.04,38.802,30.8484,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,29.1282,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.3165,5.4247,8.7152,0.0,0.0,5.4266,3.553,9.552,6.0,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.79,2999.0,3068.63,60.07,1.0,60.07,73.04,73.04,0.0,51.36,1.0,51.36,73.04,73.04,0.0,67.93,39.644,29.3102,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.839,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.0229,5.5864,8.7049,0.0,0.0,3.3048,3.683,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,71.96,38.799,30.3449,42.1681,0.21835,1.0673,1.0,1.0183,1.0868,1.0,28.7572,0.0,0.0,5.970000000000001,5.88,10.49,9.3,3.85,11.5,16.47,0.0,0.0,1.1056,0.4009,0.9917,1.6932,0.2625,1.087,2.8117,5.4261,8.7152,0.0,0.0,4.5283,3.553,9.552,4.97,3.55,9.55,12.97,0.42,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,85.29,2844.61,3068.63,59.04,1.0,59.04,71.96,73.0,0.0,50.8,1.0,50.8,71.96,73.0,0.0,67.33,39.642,29.0101,43.0843,0.21835,1.0673,1.0,1.0183,1.0868,1.0,27.6032,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3982,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5864,8.7049,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.66,38.801,31.431,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.0818,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.176,4.1478,8.7152,0.0,0.0,8.2476,2.716,9.552,8.25,2.72,9.55,12.97,0.42,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.43,3276.98,3068.63,64.39,1.0,64.39,74.66,74.66,0.0,52.75,1.0,52.75,74.66,74.66,0.0,67.64,39.643,29.0945,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.4194,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1253,4.2683,8.7049,0.0,0.0,4.9797,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,76.4,38.801,32.1614,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.5594,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,4.8778,8.7152,0.0,0.0,8.2466,3.194,9.552,8.25,3.19,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.49,3312.26,3068.63,64.88,1.0,64.88,76.4,76.4,0.0,53.19,1.0,53.19,76.4,76.4,0.0,69.43,39.643,29.8614,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.926,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,5.0358,8.7049,0.0,0.0,4.9787,3.32,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.19,38.801,31.6525,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.2268,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.176,4.3693,8.7152,0.0,0.0,8.2476,2.861,9.552,8.25,2.86,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.74,3287.45,3068.63,64.88,1.0,64.88,75.19,75.19,0.0,53.19,1.0,53.19,75.19,75.19,0.0,68.18,39.643,29.325,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.5714,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1253,4.4989,8.7049,0.0,0.0,4.9797,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,84.91,38.801,35.7441,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,31.9054,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,8.4606,8.7152,0.0,0.0,8.2466,5.54,9.552,8.25,5.54,9.55,12.97,0.42,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,104.59,3482.0,3068.63,68.15,1.0,68.15,84.91,84.91,0.0,56.14,1.0,56.14,84.91,84.91,0.0,78.1,39.643,33.5927,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,30.385,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,8.7672,8.7049,0.0,0.0,4.9787,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,76.02,38.801,32.0026,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.4554,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,4.719,8.7152,0.0,0.0,8.2466,3.09,9.552,8.25,3.09,9.55,12.97,0.42,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.26,3304.78,3068.63,64.52,1.0,64.52,76.02,76.02,0.0,52.86,1.0,52.86,76.02,76.02,0.0,69.05,39.643,29.6975,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.817,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,4.872,8.7049,0.0,0.0,4.9787,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-generator.xml,68.23,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.9657,33.7336,1.1572,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.52,4857.8,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,63.18,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,78.44,38.805,33.0021,42.073,0.21203,1.0653,1.0,1.0178,1.0842,1.0,29.967,0.0,0.0,5.97,5.88,10.49,5.25,2.97,11.5,16.47,0.0,0.0,0.504,0.5192,0.9917,0.4432,0.2625,1.087,4.0568,6.8381,8.7152,0.0,0.0,3.568,3.458,9.552,3.57,3.46,9.55,12.97,0.42,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.9,2448.29,2975.15,65.76,1.0,65.76,78.44,78.44,0.0,56.56,1.0,56.56,78.44,78.44,0.0,74.22,39.648,31.9049,42.987,0.21203,1.0653,1.0,1.0178,1.0842,1.0,28.746,0.0,0.0,6.91,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.5179,0.5169,0.9914,0.4432,0.2625,1.087,2.9481,7.2559,8.7049,0.0,0.0,2.523,3.685,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,70.12,38.637,29.3857,41.9089,0.21316,1.0656,1.0,1.0179,1.0847,1.0,24.2808,0.0,0.0,5.61,6.06,10.48,8.98,3.91,18.18,16.47,0.0,0.0,0.8013,0.4073,1.9548,1.2821,0.2625,3.3898,3.1141,4.4883,8.3882,0.0,0.0,4.9822,2.893,14.5468,5.37,2.89,14.54,12.97,0.42,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,131.48,4250.52,2980.5,51.66,1.0,51.66,70.12,70.12,0.0,44.53,1.0,44.53,70.12,70.12,0.0,65.07,39.451,27.8435,42.7918,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.1032,0.0,0.0,6.54,5.96,10.48,10.46,3.87,18.2,16.47,0.0,0.0,0.8016,0.4044,1.953,1.2821,0.2625,3.3898,1.8542,4.6303,8.359,0.0,0.0,2.9656,3.006,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 +base-bldgtype-mf-unit-shared-laundry-room.xml,67.29,38.637,28.2008,41.9089,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.4672,0.0,0.0,5.61,6.06,10.49,8.98,3.91,18.19,16.47,0.0,0.0,0.8013,0.4073,0.9774,1.2821,0.2625,1.6949,3.4069,4.2882,7.1167,0.0,0.0,5.4507,2.764,12.3416,5.88,2.76,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.42,3990.09,2980.45,51.66,1.0,51.66,67.29,67.29,0.0,44.53,1.0,44.53,67.29,67.29,0.0,62.14,39.451,26.5898,42.7918,0.21316,1.0656,1.0,1.0179,1.0847,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.87,18.2,16.47,0.0,0.0,0.8016,0.4044,0.9765,1.2821,0.2625,1.6949,2.085,4.4069,7.1059,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,73.35,39.367,31.3227,42.7051,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.388,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,0.4789,5.1629,8.6979,2.3159,0.1371,0.7662,3.347,9.533,0.83,3.35,9.53,13.04,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.32,2926.13,3020.01,58.21,1.0,58.21,73.35,73.35,0.0,49.59,1.0,49.59,73.35,73.35,0.0,71.67,40.183,31.2424,43.5903,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.3628,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4021,0.9915,1.2821,0.2625,1.087,0.5632,5.0073,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,69.13,39.367,29.5235,42.7051,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.2194,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,1.7053,4.6183,8.7079,0.0,0.0,2.7281,2.994,9.544,2.94,2.99,9.54,13.0,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.85,2615.8,3020.01,58.21,1.0,58.21,69.13,69.13,0.0,49.59,1.0,49.59,69.13,69.13,0.0,67.91,40.183,29.6009,43.5903,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.2978,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4021,0.9915,1.2821,0.2625,1.087,1.8438,4.5615,8.7066,0.0,0.0,2.9489,2.978,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,13.09,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.1853,28.9388,24.448,0.872,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,33.48,1080.57,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,61.99,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv.xml,9.11,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.1289,28.0668,24.448,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,38.22,1233.58,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,61.99,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,68.87,38.657,28.8769,41.9306,0.21316,1.0656,1.0,1.0179,1.0847,1.0,24.5598,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8013,0.4112,0.9777,1.2821,0.2625,1.6949,3.3198,4.4148,7.7513,0.0,0.0,5.3115,2.819,13.4377,5.73,2.82,13.44,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,125.92,4063.56,2975.15,52.5,1.0,52.5,68.87,68.87,0.0,45.31,1.0,45.31,68.87,68.87,0.0,63.77,39.452,27.291,42.7929,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.3522,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8015,0.4081,0.9768,1.2821,0.2625,1.6949,2.0152,4.5424,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-water-heater.xml,67.36,38.657,28.2447,41.9306,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.4638,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8013,0.4112,0.9777,1.2821,0.2625,1.6949,3.3198,4.4148,7.1191,0.0,0.0,5.3115,2.819,12.3416,5.73,2.82,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.08,3972.02,2975.15,51.62,1.0,51.62,67.36,67.36,0.0,44.58,1.0,44.58,67.36,67.36,0.0,62.3,39.452,26.6593,42.7929,0.21316,1.0656,1.0,1.0179,1.0847,1.0,22.2562,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8015,0.4081,0.9768,1.2821,0.2625,1.6949,2.0152,4.5424,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit.xml,70.65,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.0668,0.0,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,90.13,2908.96,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,65.51,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-sfa-unit.xml,78.22,56.763,46.1103,58.9512,0.22168,1.0196,1.0,1.0186,1.0386,1.0,40.67,0.0,0.0,18.68,5.77,10.49,29.79,3.86,11.52,21.83,0.0,0.0,0.8041,0.3927,0.9898,1.2821,0.2625,1.087,15.622,4.7953,8.4611,0.0,0.0,24.9083,3.206,9.292,26.85,3.21,9.29,17.02,0.21,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.52,6349.63,4230.63,56.43,1.0,56.43,78.22,78.22,0.0,50.87,1.0,50.87,78.22,78.22,0.0,72.69,59.408,44.8496,61.6982,0.22168,1.0196,1.0,1.0186,1.0386,1.0,39.7276,0.0,0.0,21.4,5.7,10.49,34.11,3.83,11.52,21.82,0.0,0.0,0.8043,0.391,0.9896,1.2821,0.2625,1.087,14.575,4.793,8.4596,0.0,0.0,23.2331,3.218,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-combi-tankless.xml,64.46,76.244,49.6831,77.0817,0.23068,0.9918,1.0,1.0194,1.011,1.0,43.3936,0.0,0.0,29.83,8.7,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.425,0.9711,1.25,0.2625,1.6949,18.4216,7.5824,2.5552,0.0,0.0,30.1599,4.684,4.4598,33.35,4.68,10.29,21.12,0.01,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,147.34,8510.11,5713.06,55.39,1.0,55.39,64.46,64.46,0.0,49.89,1.0,49.89,64.46,64.46,0.0,61.23,80.247,49.6786,81.1287,0.23068,0.9918,1.0,1.0194,1.011,1.0,43.3702,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4234,0.9706,1.25,0.2625,1.6949,18.4517,7.5551,2.5539,0.0,0.0,30.1228,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-desuperheater.xml,83.33,76.705,64.594,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.3012,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.8475,8.286,6.3365,0.0,0.0,45.9406,5.155,6.96,45.94,5.16,6.96,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.63,9389.68,5713.06,72.13,1.0,72.13,83.33,83.33,0.0,62.7,1.0,62.7,83.33,83.33,0.0,79.08,80.735,64.5202,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.2706,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.8096,8.2572,6.3354,0.0,0.0,45.8806,5.155,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-dwhr.xml,75.23,76.706,58.3174,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.1526,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,6.1444,0.0,0.0,36.831,4.903,6.749,39.71,4.9,6.75,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.38,8452.08,5561.74,56.72,1.0,56.72,75.23,75.23,0.0,51.05,1.0,51.05,75.23,75.23,0.0,71.4,80.735,58.2558,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.1256,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,6.1433,0.0,0.0,36.7837,4.903,6.749,39.65,4.9,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-indirect-standbyloss.xml,68.25,76.192,52.5623,77.0114,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4976,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4252,0.9697,1.25,0.2625,1.7241,17.484,8.0322,5.9191,0.0,0.0,28.6278,4.959,10.5237,31.65,4.96,14.07,21.12,0.01,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,152.61,8838.13,5729.62,55.39,1.0,55.39,68.25,68.25,0.0,49.89,1.0,49.89,68.25,68.25,0.0,64.83,80.193,52.5514,81.0555,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4756,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4237,0.9692,1.25,0.2625,1.7241,17.5122,8.0023,5.9159,0.0,0.0,28.5916,4.959,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-gas.xml,78.03,76.193,60.0694,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,47.8604,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.6193,8.1821,8.1421,0.0,0.0,36.0369,5.02,14.4761,38.85,5.02,14.23,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,175.46,9889.59,5578.79,54.44,1.0,54.44,78.03,78.03,0.0,48.57,1.0,48.57,78.03,78.03,0.0,74.06,80.194,60.0052,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,47.8348,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.5956,8.1518,8.1377,0.0,0.0,35.9905,5.02,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-hpwh.xml,73.95,76.402,57.0713,77.1725,0.21182,0.9924,1.0,1.0178,1.0101,1.0,47.1516,0.0,0.0,30.08,8.61,10.49,47.92,5.3,12.41,27.23,0.0,0.0,0.8047,0.4265,0.9824,1.2821,0.2625,1.1628,25.8736,7.0231,3.0566,0.0,0.0,41.2214,4.323,3.618,44.44,4.32,3.38,21.11,0.01,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,155.72,8832.48,5615.24,57.04,1.0,57.04,73.95,73.95,0.0,51.34,1.0,51.34,73.95,73.95,0.0,70.2,80.415,57.0171,81.226,0.21182,0.9924,1.0,1.0178,1.0101,1.0,47.1246,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.8049,0.425,0.9821,1.2821,0.2625,1.1628,25.8511,6.9983,3.0557,0.0,0.0,41.175,4.323,3.618,44.39,4.32,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-jacket-indirect.xml,67.18,76.192,51.7327,77.0114,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.2264,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4252,0.9697,1.25,0.2625,1.7241,17.7547,7.9043,4.9477,0.0,0.0,29.0709,4.88,8.7968,32.14,4.88,13.09,21.12,0.01,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,151.27,8760.57,5729.62,55.39,1.0,55.39,67.18,67.18,0.0,49.89,1.0,49.89,67.18,67.18,0.0,63.81,80.193,51.723,81.0555,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4237,0.9692,1.25,0.2625,1.7241,17.7831,7.8748,4.9451,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-low-flow-fixtures.xml,77.64,76.706,60.1829,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.2016,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.0098,0.0,0.0,36.831,4.903,8.798,39.71,4.9,8.8,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.3,8616.33,5561.74,56.72,1.0,56.72,77.64,77.64,0.0,51.05,1.0,51.05,77.64,77.64,0.0,73.69,80.735,60.1209,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.1746,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.0085,0.0,0.0,36.7837,4.903,8.798,39.65,4.9,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-multiple.xml,67.41,76.705,52.2732,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,42.621,0.0,0.0,30.56,8.43,10.5,49.99,5.24,11.5,27.23,0.0,0.0,0.7641,0.422,5.9382,1.25,0.2625,6.522,17.8743,7.799,5.4738,0.0,0.0,29.2392,4.852,6.0120000000000005,32.33,4.85,6.0200000000000005,21.12,0.01,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,131.82,7613.4,5712.87,61.74,1.0,61.74,67.41,67.41,0.0,56.11,1.0,56.11,67.41,67.41,0.0,64.03,80.735,52.2664,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,42.5976,0.0,0.0,34.66,8.37,10.5,56.54,5.22,11.5,27.22,0.0,0.0,0.7663,0.4205,5.9364,1.25,0.2625,6.522,17.9021,7.7718,5.4725,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 +base-dhw-none.xml,82.19,76.244,63.3296,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,50.4554,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,22.3158,8.2998,10.4851,0.0,0.0,35.5536,5.097,18.3009,38.33,5.1,18.3,22.22,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,186.91,10504.95,5561.74,61.64,1.0,61.64,82.19,82.19,0.0,56.57,1.0,56.57,82.19,82.19,0.0,78.02,80.247,63.2674,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,50.4288,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,22.2924,8.2721,10.4799,0.0,0.0,35.5073,5.098,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-recirc-demand.xml,77.84,76.706,60.3404,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3746,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.1673,0.0,0.0,36.831,4.903,8.971,39.71,4.9,8.97,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,8630.17,5561.74,56.72,1.0,56.72,77.84,77.84,0.0,51.05,1.0,51.05,77.84,77.84,0.0,73.88,80.735,60.2784,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3476,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.1659,0.0,0.0,36.7837,4.903,8.971,39.65,4.9,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-fraction.xml,71.15,76.706,55.1546,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,45.6418,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.2899,7.8656,2.8751,0.0,0.0,37.1037,4.863,3.158,40.0,4.86,3.16,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.96,8203.53,5561.74,56.72,1.0,56.72,71.15,71.15,0.0,51.05,1.0,51.05,71.15,71.15,0.0,67.53,80.735,55.0938,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,45.6148,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.2653,7.8359,2.8746,0.0,0.0,37.0564,4.863,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-indirect-flat-plate.xml,69.34,76.706,53.7506,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,44.1122,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.8771,8.1761,1.5714,0.0,0.0,36.446,5.055,1.726,39.29,5.06,1.73,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.42,8004.68,5561.74,56.72,1.0,56.72,69.34,69.34,0.0,51.05,1.0,51.05,69.34,69.34,0.0,65.81,80.735,53.691,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,44.0856,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.853,8.1469,1.5711,0.0,0.0,36.3996,5.056,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-elec-uef.xml,77.91,76.752,60.4344,77.5679,0.22321,0.992,1.0,1.0187,1.0106,1.0,51.4802,0.0,0.0,30.64,8.4,10.49,48.81,5.2,11.38,27.23,0.0,0.0,0.8047,0.4243,0.9908,1.2821,0.2625,1.0753,23.085,7.9366,8.2878,0.0,0.0,36.7781,4.911,8.9942,39.65,4.91,9.09,21.12,0.01,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,153.81,8632.28,5553.17,56.97,1.0,56.97,77.91,77.91,0.0,51.25,1.0,51.25,77.91,77.91,0.0,73.95,80.785,60.3757,81.6437,0.22321,0.992,1.0,1.0187,1.0106,1.0,51.4536,0.0,0.0,34.74,8.34,10.49,55.33,5.18,11.38,27.22,0.0,0.0,0.8049,0.4228,0.9906,1.2821,0.2625,1.0753,23.0613,7.9091,8.2863,0.0,0.0,36.7317,4.911,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-gas-uef.xml,77.87,76.343,60.1007,77.1818,0.23067,0.9918,1.0,1.0194,1.011,1.0,48.0306,0.0,0.0,29.99,8.64,10.49,47.78,5.31,17.66,27.23,0.0,0.0,0.8047,0.4269,0.9737,1.2821,0.2625,1.6393,22.5432,8.1919,8.2396,0.0,0.0,35.9154,5.038,13.8725,38.72,5.04,14.75,21.12,0.01,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,177.19,9947.88,5553.17,54.44,1.0,54.44,77.87,77.87,0.0,48.57,1.0,48.57,77.87,77.87,0.0,73.9,80.353,60.0366,81.2358,0.23067,0.9918,1.0,1.0194,1.011,1.0,48.005,0.0,0.0,34.07,8.57,10.49,54.27,5.29,17.67,27.22,0.0,0.0,0.8049,0.4253,0.9733,1.2821,0.2625,1.6393,22.5191,8.1616,8.2359,0.0,0.0,35.869,5.038,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-heat-pump-uef.xml,73.08,76.608,56.5643,77.4053,0.21856,0.9922,1.0,1.0183,1.0104,1.0,46.4616,0.0,0.0,30.41,8.49,10.49,48.45,5.24,11.81,27.23,0.0,0.0,0.8047,0.4253,0.9872,1.2821,0.2625,1.1111,26.3968,6.8647,2.1869,0.0,0.0,42.0553,4.238,2.4615,45.34,4.24,2.41,21.11,0.01,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,157.53,8879.7,5578.79,56.78,1.0,56.78,73.08,73.08,0.0,51.11,1.0,51.11,73.08,73.08,0.0,69.36,80.633,56.5109,81.4722,0.21856,0.9922,1.0,1.0183,1.0104,1.0,46.4346,0.0,0.0,34.5,8.42,10.49,54.95,5.22,11.81,27.22,0.0,0.0,0.8049,0.4237,0.987,1.2821,0.2625,1.1111,26.3738,6.8406,2.1865,0.0,0.0,42.008,4.239,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-oil.xml,78.65,76.193,60.5426,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1808,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3683,8.2799,8.7675,0.0,0.0,35.6371,5.08,15.588,38.42,5.08,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,190.49,10736.8,5578.79,54.44,1.0,54.44,78.65,78.65,0.0,48.57,1.0,48.57,78.65,78.65,0.0,74.64,80.194,60.4771,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1538,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3441,8.2492,8.7628,0.0,0.0,35.5898,5.08,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-wood.xml,78.65,76.193,60.5426,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1808,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3683,8.2799,8.7675,0.0,0.0,35.6371,5.08,15.588,38.42,5.08,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.44,1.0,54.44,78.65,78.65,0.0,48.57,1.0,48.57,78.65,78.65,0.0,74.64,80.194,60.4771,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1538,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3441,8.2492,8.7628,0.0,0.0,35.5898,5.08,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-electric-uef.xml,78.28,76.706,60.679,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.6918,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.3819,7.83,8.3431,0.0,0.0,37.2503,4.841,9.164,40.16,4.84,9.16,21.12,0.01,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,154.88,8705.03,5561.74,56.86,1.0,56.86,78.28,78.28,0.0,51.19,1.0,51.19,78.28,78.28,0.0,74.3,80.735,60.6174,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.6648,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.3573,7.8005,8.3416,0.0,0.0,37.2029,4.841,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tankless-gas-uef.xml,71.67,76.244,55.2208,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.3906,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,23.3807,7.8829,2.8333,0.0,0.0,37.2503,4.841,4.9453,40.16,4.84,9.66,21.12,0.01,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,167.14,9393.76,5561.74,54.44,1.0,54.44,71.67,71.67,0.0,48.57,1.0,48.57,71.67,71.67,0.0,68.02,80.247,55.162,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.3636,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.357,7.8551,2.8319,0.0,0.0,37.2029,4.841,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-propane.xml,73.97,76.244,56.9893,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,47.0038,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,23.3807,7.8829,4.6018,0.0,0.0,37.2503,4.841,8.032,40.16,4.84,11.19,21.12,0.01,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,177.23,9960.95,5561.74,54.44,1.0,54.44,73.97,73.97,0.0,48.57,1.0,48.57,73.97,73.97,0.0,70.2,80.247,56.9296,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.9768,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.357,7.8551,4.5995,0.0,0.0,37.2029,4.841,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-enclosure-2stories-garage.xml,76.87,92.008,69.3002,90.1472,0.22168,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,40.03,10.62,10.49,63.76,6.24,11.52,30.87,0.0,0.0,0.805,0.4467,0.9896,1.2821,0.2625,1.087,25.3056,12.0479,8.1737,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.38,6612.98,56.75,1.0,56.75,76.87,76.87,0.0,51.54,1.0,51.54,76.87,76.87,0.0,70.45,100.553,69.4087,98.5194,0.22168,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,48.62,10.59,10.49,77.43,6.17,11.52,30.86,0.0,0.0,0.805,0.4508,0.9892,1.2821,0.2625,1.087,25.3067,12.1582,8.1709,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-2stories.xml,76.8,104.691,77.616,101.0637,0.22168,0.9654,1.0,1.0,0.9654,1.0,64.6092,0.0,0.0,46.45,12.42,10.49,73.99,7.22,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,30.513,11.7634,8.0706,0.0,0.0,48.5996,6.8401,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,11119.84,7501.69,56.51,1.0,56.51,76.8,76.8,0.0,51.2,1.0,51.2,76.8,76.8,0.0,70.42,114.298,77.7011,110.3379,0.22168,0.9654,1.0,1.0,0.9654,1.0,64.6092,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4548,0.9893,1.2821,0.2625,1.087,30.5152,11.8491,8.0678,0.0,0.0,48.5996,6.8401,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-1.xml,82.55,69.214,55.9735,67.8037,0.22187,0.9921,0.9694,1.0186,0.9796,1.0,46.9358,0.0,0.0,29.82,7.9,6.15,47.5,4.93,7.18,25.34,0.0,0.0,0.805,0.4208,0.931,1.2821,0.2625,1.087,24.1306,7.4651,4.6918,0.0,0.0,38.432,4.657,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.11,8466.04,4992.26,58.3,1.0,58.3,82.55,82.55,0.0,53.07,1.0,53.07,82.55,82.55,0.0,78.02,73.246,55.9839,71.7536,0.22187,0.9921,0.9694,1.0186,0.9796,1.0,46.9358,0.0,0.0,33.92,7.84,6.15,54.01,4.89,7.19,25.33,0.0,0.0,0.805,0.4214,0.9307,1.2821,0.2625,1.087,24.1328,7.4745,4.6905,0.0,0.0,38.432,4.657,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-2.xml,80.08,73.021,58.1916,72.663,0.22176,0.9921,0.9847,1.0186,0.9951,1.0,49.201,0.0,0.0,30.19,8.16,8.39,48.09,5.07,9.42,26.28,0.0,0.0,0.8048,0.4228,0.9679,1.2821,0.2625,1.087,23.6059,7.6955,6.4882,0.0,0.0,37.6037,4.779,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.64,8548.59,5281.93,57.49,1.0,57.49,80.08,80.08,0.0,52.01,1.0,52.01,80.08,80.08,0.0,75.8,77.054,58.1197,76.6762,0.22176,0.9921,0.9847,1.0186,0.9951,1.0,49.201,0.0,0.0,34.29,8.1,8.39,54.61,5.08,9.42,26.28,0.0,0.0,0.805,0.4185,0.9677,1.2821,0.2625,1.087,23.6124,7.6185,6.4868,0.0,0.0,37.6037,4.779,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-4.xml,76.89,80.326,63.3651,82.4147,0.22159,0.9921,1.0153,1.0186,1.026,1.0,54.2468,0.0,0.0,30.93,8.7,12.53,49.29,5.36,13.56,28.17,0.0,0.0,0.8046,0.4263,1.0042,1.2821,0.2625,1.087,23.3178,8.1547,9.8985,0.0,0.0,37.1556,5.022,10.714,40.06,5.02,10.71,21.83,0.16,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.64,8900.68,5836.28,55.92,1.0,55.92,76.89,76.89,0.0,50.09,1.0,50.09,76.89,76.89,0.0,72.15,84.355,62.4444,86.5485,0.22159,0.9921,1.0153,1.0186,1.026,1.0,53.558,0.0,0.0,35.03,8.63,12.53,55.81,5.33,13.56,28.17,0.0,0.0,0.8048,0.4249,1.0041,1.2821,0.2625,1.087,22.5795,8.1358,9.8971,0.0,0.0,35.9711,5.027,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-5.xml,75.92,83.909,66.3404,87.386,0.2215,0.9921,1.0306,1.0186,1.0414,1.0,57.0524,0.0,0.0,31.31,8.97,14.53,49.89,5.5,15.56,29.11,0.0,0.0,0.8045,0.4281,1.0148,1.2821,0.2625,1.087,23.5246,8.3872,11.5637,0.0,0.0,37.4905,5.143,12.386,40.42,5.14,12.39,22.55,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.25,9167.3,6102.43,55.14,1.0,55.14,75.92,75.92,0.0,49.17,1.0,49.17,75.92,75.92,0.0,70.5,87.937,64.5615,91.581,0.2215,0.9921,1.0306,1.0186,1.0414,1.0,55.708,0.0,0.0,35.41,8.9,14.53,56.41,5.48,15.56,29.11,0.0,0.0,0.8046,0.4267,1.0147,1.2821,0.2625,1.087,22.0768,8.3764,11.5612,0.0,0.0,35.1752,5.154,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-ceilingtypes.xml,88.14,76.706,67.8606,76.9933,0.07891,0.9972,1.0,1.0066,1.0037,1.0,56.4626,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,30.482,8.0467,8.2129,0.0,0.0,48.5616,4.975,9.021,52.35,4.98,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.27,10510.48,5561.74,56.61,1.0,56.61,88.14,88.14,0.0,50.95,1.0,50.95,88.14,88.14,0.0,83.67,80.735,67.8027,81.0374,0.07891,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,30.4619,8.0164,8.2114,0.0,0.0,48.5189,4.975,9.021,52.31,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-floortypes.xml,99.25,56.884,59.782,60.2334,0.22168,1.0395,1.0,1.0186,1.0589,1.0,49.5926,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4133,0.9898,1.2821,0.2625,1.087,29.0625,7.0561,8.3944,0.0,0.0,46.404,4.482,9.218,50.03,4.48,9.22,14.95,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,218.1,9639.29,4173.93,54.96,1.0,54.96,99.25,99.25,0.0,49.58,1.0,49.58,99.25,99.25,0.0,93.59,58.456,57.9286,61.898,0.22168,1.0395,1.0,1.0186,1.0589,1.0,48.1834,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4126,0.9898,1.2821,0.2625,1.087,27.563,7.0179,8.3937,0.0,0.0,44.0024,4.466,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-garage.xml,77.54,75.02,58.7809,75.812,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.7844,0.0,0.0,30.44,6.97,10.49,48.49,4.5,11.73,27.12,0.0,0.0,0.8048,0.4068,0.9721,1.2821,0.2625,1.087,24.5731,5.1121,8.1457,0.0,0.0,39.1463,3.299,9.108,42.2,3.3,9.11,20.94,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.69,8873.11,5498.42,57.34,1.0,57.34,77.54,77.54,0.0,51.49,1.0,51.49,77.54,77.54,0.0,73.46,79.119,58.7336,79.9542,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.752,0.0,0.0,34.58,6.93,10.49,55.07,4.48,11.73,27.12,0.0,0.0,0.805,0.4055,0.9721,1.2821,0.2625,1.087,24.5478,5.096,8.1457,0.0,0.0,39.0962,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ach-house-pressure.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm-house-pressure.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm50.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ela.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-ach.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-cfm.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-overhangs.xml,77.76,76.706,60.2738,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.371,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.3126,7.6262,8.212,0.0,0.0,37.1399,4.715,9.02,40.04,4.72,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.25,8669.34,5561.74,56.72,1.0,56.72,77.76,77.76,0.0,51.05,1.0,51.05,77.76,77.76,0.0,73.8,80.735,60.213,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.345,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.288,7.5975,8.2105,0.0,0.0,37.0926,4.715,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-skylights.xml,78.47,76.706,60.7685,77.4443,0.20222,0.9928,1.0,1.017,1.0096,1.0,51.4786,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.2349,9.1935,8.2101,0.0,0.0,35.4228,5.6841,9.018,38.19,5.68,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.95,8476.5,5561.74,56.72,1.0,56.72,78.47,78.47,0.0,51.05,1.0,51.05,78.47,78.47,0.0,74.47,80.735,60.7021,81.5121,0.20222,0.9928,1.0,1.017,1.0096,1.0,51.452,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.2106,9.1589,8.2087,0.0,0.0,35.3765,5.6841,9.018,38.14,5.68,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-walltypes.xml,91.92,76.66,70.3299,76.5118,-0.04085,1.0015,1.0,0.9966,0.9981,1.0,58.8916,0.0,0.0,30.53,8.42,10.49,48.63,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,34.4459,6.5564,8.2147,0.0,0.0,54.8787,4.054,9.023,59.16,4.05,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,205.46,11399.66,5559.23,56.84,1.0,56.84,91.92,91.92,0.0,51.16,1.0,51.16,91.92,91.92,0.0,87.15,80.689,70.1837,80.533,-0.04085,1.0015,1.0,0.9966,0.9981,1.0,58.8088,0.0,0.0,34.62,8.36,10.49,55.15,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,34.422,6.4414,8.2133,0.0,0.0,54.8295,3.998,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-ambient.xml,82.48,56.884,49.6778,60.2334,0.22168,1.0395,1.0,1.0186,1.0589,1.0,42.1908,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4133,0.9898,1.2821,0.2625,1.087,17.0058,8.9847,8.3853,0.0,0.0,27.1532,5.7071,9.208,29.27,5.71,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.66,6703.11,4173.93,55.15,1.0,55.15,82.48,82.48,0.0,49.78,1.0,49.78,82.48,82.48,0.0,77.33,58.456,47.8646,61.898,0.22168,1.0395,1.0,1.0186,1.0589,1.0,40.8368,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4126,0.9898,1.2821,0.2625,1.087,15.5009,8.99,8.3837,0.0,0.0,24.746,5.7211,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-basement-garage.xml,77.24,68.039,54.3807,70.4049,0.22168,1.0159,1.0,1.0186,1.0348,1.0,46.3146,0.0,0.0,27.7,7.09,10.49,44.11,4.46,11.52,22.76,0.0,0.0,0.8051,0.4177,0.9895,1.2821,0.2625,1.087,20.1698,7.9786,8.4243,0.0,0.0,32.1205,5.015,9.254,34.63,5.02,9.25,17.62,0.19,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.92,7646.62,4928.96,55.55,1.0,55.55,77.24,77.24,0.0,50.35,1.0,50.35,77.24,77.24,0.0,72.68,70.9,53.3205,73.3654,0.22168,1.0159,1.0,1.0186,1.0348,1.0,45.4944,0.0,0.0,30.61,7.05,10.49,48.74,4.42,11.52,22.76,0.0,0.0,0.8051,0.4186,0.9893,1.2821,0.2625,1.087,19.2749,8.0028,8.4228,0.0,0.0,30.6939,5.019,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,77.39,76.706,59.9887,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.0934,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.3548,8.2958,8.211,0.0,0.0,35.6139,5.129,9.019,38.39,5.13,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.52,8460.18,5561.74,56.72,1.0,56.72,77.39,77.39,0.0,51.05,1.0,51.05,77.39,77.39,0.0,73.45,80.735,59.9257,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.0664,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.3306,8.2646,8.2096,0.0,0.0,35.5676,5.129,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,77.94,74.912,59.0021,75.7028,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.6258,0.0,0.0,29.13,8.07,10.49,46.41,5.04,11.52,27.23,0.0,0.0,0.8047,0.4204,0.9896,1.2821,0.2625,1.087,22.4457,7.2225,8.212,0.0,0.0,35.7605,4.51,9.02,38.55,4.51,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.77,8430.52,5460.85,57.66,1.0,57.66,77.94,77.94,0.0,51.82,1.0,51.82,77.94,77.94,0.0,73.89,78.938,58.9464,79.7713,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5992,0.0,0.0,33.22,8.01,10.49,52.92,5.02,11.52,27.22,0.0,0.0,0.8049,0.419,0.9894,1.2821,0.2625,1.087,22.422,7.1979,8.2105,0.0,0.0,35.7141,4.51,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-multiple.xml,76.04,55.639,44.7995,58.9151,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.0132,0.0,0.0,19.82,6.53,10.49,31.66,4.24,11.67,18.8,0.0,0.0,0.8027,0.4038,0.9769,1.2821,0.2625,1.087,13.7828,7.6944,8.2394,0.0,0.0,22.0142,5.003,9.168,23.73,5.0,9.17,14.77,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,133.72,5815.88,4107.39,54.55,1.0,54.55,76.04,76.04,0.0,49.0,1.0,49.0,76.04,76.04,0.0,71.07,57.231,43.0691,60.6008,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7006,0.0,0.0,21.44,6.5,10.49,34.24,4.24,11.67,18.8,0.0,0.0,0.8028,0.4031,0.9769,1.2821,0.2625,1.087,12.3821,7.6858,8.2412,0.0,0.0,19.7749,5.006,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-slab.xml,68.07,57.803,41.6614,61.2065,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.8148,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.804,0.4052,0.9896,1.2821,0.2625,1.087,11.2034,6.7699,8.3831,0.0,0.0,17.864,4.386,9.208,19.26,4.39,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.45,5139.9,4204.42,54.26,1.0,54.26,68.07,68.07,0.0,49.11,1.0,49.11,68.07,68.07,0.0,63.8,59.386,40.1215,62.8827,0.22168,1.0395,1.0,1.0186,1.0589,1.0,35.6428,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8041,0.4046,0.9895,1.2821,0.2625,1.087,9.992,6.756,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,73.44,55.742,43.3495,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.9774,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,13.0416,7.0308,8.26,0.0,0.0,20.8315,4.54,9.187,22.46,4.54,9.19,14.7,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.6,5593.37,4107.48,54.0,1.0,54.0,73.44,73.44,0.0,48.5,1.0,48.5,73.44,73.44,0.0,68.58,57.333,41.6341,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.6768,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,11.6591,7.0181,8.2618,0.0,0.0,18.62,4.54,9.189,20.07,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,80.66,55.742,47.6082,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,41.0662,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,17.6585,6.5105,8.2052,0.0,0.0,28.206,4.204,9.126,30.41,4.2,9.13,14.92,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.08,6744.88,4107.48,54.0,1.0,54.0,80.66,80.66,0.0,48.5,1.0,48.5,80.66,80.66,0.0,75.63,57.333,45.9149,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,16.3192,6.4756,8.2052,0.0,0.0,26.0623,4.189,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement.xml,76.28,55.742,45.0212,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.1158,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,13.9209,7.8098,8.2555,0.0,0.0,22.2359,5.043,9.182,23.97,5.04,9.18,14.72,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,134.53,5850.98,4107.48,54.0,1.0,54.0,76.28,76.28,0.0,48.5,1.0,48.5,76.28,76.28,0.0,71.27,57.333,43.266,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7888,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,12.4967,7.7988,8.2564,0.0,0.0,19.9576,5.045,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unvented-crawlspace.xml,74.07,55.444,43.4874,58.7086,0.22168,1.0395,1.0,1.0186,1.0589,1.0,38.0676,0.0,0.0,18.38,7.45,10.49,29.36,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,11.9896,7.91,8.2739,0.0,0.0,19.1515,4.979,9.286,20.65,4.98,9.29,15.0,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,124.23,5391.23,4098.42,55.85,1.0,55.85,74.07,74.07,0.0,50.41,1.0,50.41,74.07,74.07,0.0,69.33,56.99,41.8397,60.3456,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.8216,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,10.6535,7.9086,8.2756,0.0,0.0,17.0152,4.989,9.288,18.34,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace-above-grade.xml,76.42,55.375,44.8112,58.6355,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.0464,0.0,0.0,18.41,7.34,10.49,29.41,4.64,11.79,19.13,0.0,0.0,0.8026,0.4157,0.9672,1.2821,0.2625,1.087,13.168,8.0066,8.3256,0.0,0.0,21.0346,5.056,9.356,22.68,5.06,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.4,5699.34,4096.36,56.0,1.0,56.0,76.42,76.42,0.0,50.56,1.0,50.56,76.42,76.42,0.0,71.49,56.927,43.0922,60.2789,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.31,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8027,0.4149,0.9672,1.2821,0.2625,1.087,11.7646,8.0021,8.3265,0.0,0.0,18.7907,5.063,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace.xml,76.07,55.444,44.6573,58.7086,0.22168,1.0395,1.0,1.0186,1.0589,1.0,38.9342,0.0,0.0,18.38,7.45,10.49,29.36,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,13.2347,7.7702,8.3425,0.0,0.0,21.1404,4.891,9.363,22.79,4.89,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.46,5705.01,4098.42,55.85,1.0,55.85,76.07,76.07,0.0,50.41,1.0,50.41,76.07,76.07,0.0,71.15,56.99,42.9338,60.3456,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.6338,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,11.8273,7.7643,8.3442,0.0,0.0,18.89,4.898,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-walkout-basement.xml,79.43,81.338,64.0947,80.6949,0.22168,0.9921,1.0,1.0,0.9921,1.0,53.9342,0.0,0.0,34.15,9.47,10.49,54.41,5.75,11.52,27.23,0.0,0.0,0.8047,0.4323,0.9896,1.2821,0.2625,1.087,26.3208,8.4401,8.2129,0.0,0.0,41.9347,5.126,9.021,45.21,5.13,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.59,9450.97,5858.99,56.46,1.0,56.46,79.43,79.43,0.0,51.26,1.0,51.26,79.43,79.43,0.0,73.42,87.918,64.037,87.2229,0.22168,0.9921,1.0,1.0,0.9921,1.0,53.9072,0.0,0.0,40.78,9.43,10.49,64.95,5.75,11.52,27.22,0.0,0.0,0.805,0.4308,0.9893,1.2821,0.2625,1.087,26.301,8.4104,8.2107,0.0,0.0,41.8874,5.125,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.59,76.675,65.545,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.9142,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,7.6644,8.2127,0.0,0.0,45.4587,3.907,9.02,45.46,3.91,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.9,9381.28,5629.6,70.68,1.0,70.68,84.59,84.59,0.0,61.27,1.0,61.27,84.59,84.59,0.0,80.28,80.709,65.4785,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.8832,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,7.6436,8.2105,0.0,0.0,45.3977,3.907,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.72,76.705,66.4384,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.706,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4771,7.6254,8.212,0.0,0.0,22.8172,4.744,9.02,22.82,4.74,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.78,4894.02,5713.06,56.21,1.0,56.21,85.72,85.72,0.0,50.29,1.0,50.29,85.72,85.72,0.0,81.65,80.736,66.6073,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.674,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6783,7.6004,8.2105,0.0,0.0,22.7922,4.745,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.04,76.713,65.1497,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.289,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.7486,7.0651,8.212,0.0,0.0,21.4512,3.695,9.02,21.45,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.3,4681.53,5561.74,53.34,1.0,53.34,84.04,84.04,0.0,47.33,1.0,47.33,84.04,84.04,0.0,80.15,80.743,65.3925,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.261,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0165,7.0475,8.2105,0.0,0.0,21.4292,3.695,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.03,76.713,65.1354,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.284,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.7553,7.0441,8.212,0.0,0.0,21.4562,3.684,9.02,21.46,3.68,9.02,21.12,0.01,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.27,4679.6,5561.74,53.34,1.0,53.34,84.03,84.03,0.0,47.33,1.0,47.33,84.03,84.03,0.0,80.13,80.743,65.3816,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0246,7.0284,8.2105,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/base_results/sample_files2.csv b/workflow/tests/base_results/sample_files2.csv index 103424a1c..9f79aa3b0 100644 --- a/workflow/tests/base_results/sample_files2.csv +++ b/workflow/tests/base_results/sample_files2.csv @@ -1,98 +1,98 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-hvac-air-to-air-heat-pump-1-speed.xml,84.44,76.714,65.4563,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.547,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.9473,7.0611,8.212,0.0,0.0,21.5992,3.692,9.02,21.6,3.69,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.67,4702.34,5561.77,53.34,1.0,53.34,84.44,84.44,0.0,47.33,1.0,47.33,84.44,84.44,0.0,79.91,80.744,65.2028,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,55.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8248,7.0495,8.2105,0.0,0.0,21.2882,3.696,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,72.77,76.714,56.4107,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,49.244,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,21.9098,5.0529,8.212,0.0,0.0,16.3481,2.642,9.02,16.35,2.64,9.02,21.12,0.12,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.97,4156.95,5561.77,53.34,1.0,53.34,72.77,72.77,0.0,47.33,1.0,47.33,72.77,72.77,0.0,68.84,80.744,56.1707,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.7973,5.0449,8.2105,0.0,0.0,16.0981,2.645,9.02,16.1,2.65,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,72.58,76.714,56.2601,77.5187,0.22028,0.9921,1.0,1.0185,1.0105,1.0,49.309,0.0,0.0,30.56,8.44,10.49,22.8,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.848,3.9641,8.212,0.0,0.0,17.0482,2.006,9.02,17.05,2.01,9.02,21.12,0.12,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.36,4171.77,5551.65,53.41,1.0,53.41,72.58,72.58,0.0,47.4,1.0,47.4,72.58,72.58,0.0,68.37,80.743,55.7822,81.59,0.22028,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5001,3.9536,8.2105,0.0,0.0,16.6171,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-elec-only.xml,100.61,76.706,77.9834,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,66.663,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,40.9081,7.6274,8.212,0.0,0.0,31.6653,4.745,9.02,31.67,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,98.48,5684.87,5713.08,56.2,1.0,56.2,100.61,100.61,0.0,50.29,1.0,50.29,100.61,100.61,0.0,94.63,80.737,77.2036,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,65.812,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,40.2742,7.6009,8.2105,0.0,0.0,30.9293,4.746,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-gas-only.xml,71.84,76.706,55.7157,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.6184,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6404,7.6274,8.212,0.0,0.0,30.4927,4.745,9.02,33.71,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,134.81,7786.45,5713.08,57.31,1.0,57.31,71.84,71.84,0.0,51.95,1.0,51.95,71.84,71.84,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-oil-only.xml,71.86,76.706,55.7278,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.752,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6525,7.6274,8.212,0.0,0.0,30.5126,4.745,9.02,33.74,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.68,9396.42,5713.08,57.31,1.0,57.31,71.86,71.86,0.0,51.95,1.0,51.95,71.86,71.86,0.0,67.63,80.737,55.2006,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.3158,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2712,7.6009,8.2105,0.0,0.0,29.8035,4.746,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-propane-only.xml,71.84,76.706,55.7157,77.5507,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.6184,0.0,0.0,30.56,8.43,10.49,49.99,5.25,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.6404,7.6274,8.212,0.0,0.0,30.4927,4.745,9.02,33.71,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.49,8807.93,5713.08,57.31,1.0,57.31,71.84,71.84,0.0,51.95,1.0,51.95,71.84,71.84,0.0,67.61,80.737,55.189,81.6261,0.2312,0.9918,1.0,1.0194,1.011,1.0,48.1856,0.0,0.0,34.66,8.37,10.49,56.54,5.23,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2595,7.6009,8.2105,0.0,0.0,29.7845,4.746,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,85.95,76.706,66.6292,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,54.5176,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,7.9504,8.212,0.0,0.0,46.5516,4.946,9.02,46.55,4.95,9.02,21.12,0.12,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.9,9636.16,5713.08,72.13,1.0,72.13,85.95,85.95,0.0,62.69,1.0,62.69,85.95,85.95,0.0,80.6,80.736,65.7639,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9262,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9293,8.2105,0.0,0.0,45.3977,4.951,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed.xml,85.98,76.706,66.6485,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,54.5296,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,7.9697,8.212,0.0,0.0,46.5516,4.958,9.02,46.55,4.96,9.02,21.12,0.12,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,166.92,9637.01,5713.08,72.13,1.0,72.13,85.98,85.98,0.0,62.69,1.0,62.69,85.98,85.98,0.0,80.63,80.736,65.7831,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.9382,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,7.9485,8.2105,0.0,0.0,45.3977,4.963,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-2-speed.xml,83.67,76.706,64.861,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,53.4166,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,6.1823,8.212,0.0,0.0,46.5516,3.846,9.02,46.55,3.85,9.02,21.12,0.12,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.52,9556.36,5713.08,72.13,1.0,72.13,83.67,83.67,0.0,62.69,1.0,62.69,83.67,83.67,0.0,78.44,80.736,63.9973,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.8242,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,6.1627,8.2105,0.0,0.0,45.3977,3.848,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-var-speed.xml,82.62,76.701,64.0386,77.5117,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.8106,0.0,0.0,30.56,8.43,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4344,0.9896,1.2821,0.2625,1.087,29.2308,5.3598,8.212,0.0,0.0,46.5516,3.239,9.02,46.55,3.24,9.02,21.12,0.12,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.06,9511.55,5702.27,72.16,1.0,72.16,82.62,82.62,0.0,62.73,1.0,62.73,82.62,82.62,0.0,77.44,80.731,63.1781,81.5843,0.22194,0.9921,1.0,1.0186,1.0106,1.0,52.2182,0.0,0.0,34.66,8.36,10.49,55.2,5.07,11.52,27.22,0.0,0.0,0.805,0.4327,0.9894,1.2821,0.2625,1.087,28.5061,5.3435,8.2105,0.0,0.0,45.3977,3.242,9.02,45.4,3.24,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.06,76.706,67.4806,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,58.481,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,30.0613,7.9713,8.212,0.0,0.0,23.2692,4.959,9.02,23.27,4.96,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.86,4956.36,5713.08,55.03,1.0,55.03,87.06,87.06,0.0,48.99,1.0,48.99,87.06,87.06,0.0,82.07,80.737,66.9556,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,57.891,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6786,7.9485,8.2105,0.0,0.0,22.7922,4.963,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-dse.xml,79.08,76.706,61.2978,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9806,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.1051,8.7448,8.212,0.0,0.0,36.8096,5.408,9.02,39.68,5.41,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.53,8685.57,5561.77,56.71,1.0,56.71,79.08,79.08,0.0,51.05,1.0,51.05,79.08,79.08,0.0,74.26,80.736,60.584,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.4596,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.5376,8.7178,8.2105,0.0,0.0,35.8978,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.34,76.714,63.0523,77.5178,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.4602,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.5021,0.9896,1.7253,0.2625,1.087,26.5433,7.0611,8.212,0.0,0.0,27.520699999999998,3.692,9.02,29.0,3.69,9.02,21.12,0.12,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,110.58,6214.6,5561.77,53.34,1.0,53.34,81.34,81.34,0.0,47.33,1.0,47.33,81.34,81.34,0.0,76.95,80.744,62.7813,81.59,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0604,0.0,0.0,34.66,8.38,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.403399999999998,7.0495,8.2105,0.0,0.0,27.1156,3.696,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.61,76.713,62.487,77.5162,0.21988,0.9922,1.0,1.0185,1.0105,1.0,53.2388,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.5021,0.9896,1.7253,0.2625,1.087,25.978,7.0611,8.212,0.0,0.0,30.161099999999998,3.692,9.02,32.18,3.69,9.02,21.12,0.12,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,121.41,6823.4,5561.77,53.34,1.0,53.34,80.61,80.61,0.0,47.33,1.0,47.33,80.61,80.61,0.0,76.22,80.744,62.1837,81.5894,0.21988,0.9922,1.0,1.0185,1.0105,1.0,52.8336,0.0,0.0,34.66,8.38,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8057,7.0495,8.2105,0.0,0.0,29.701700000000002,3.696,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-area-fractions.xml,84.25,104.694,85.15,101.0664,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,46.45,12.43,10.49,73.98,7.23,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,37.356,12.4543,8.0706,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.49,12925.65,7501.77,56.51,1.0,56.51,84.25,84.25,0.0,51.2,1.0,51.2,84.25,84.25,0.0,77.25,114.3,85.2379,110.3395,0.2217,0.9654,1.0,1.0,0.9654,1.0,69.194,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4547,0.9893,1.2821,0.2625,1.087,37.3578,12.5433,8.0678,0.0,0.0,59.4973,7.2421,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-buried.xml,76.08,76.706,58.975,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5398,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.1438,7.3833,8.212,0.0,0.0,35.2781,4.566,9.02,38.03,4.57,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.95,8371.53,5561.77,56.72,1.0,56.72,76.08,76.08,0.0,51.05,1.0,51.05,76.08,76.08,0.0,71.46,80.736,58.2998,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.0306,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.6105,7.3607,8.2105,0.0,0.0,34.421,4.567,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-leakage-cfm50.xml,77.11,76.706,59.7722,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0198,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.7388,7.5854,8.212,0.0,0.0,36.2262,4.691,9.02,39.05,4.69,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.88,8536.36,5561.77,56.72,1.0,56.72,77.11,77.11,0.0,51.05,1.0,51.05,77.11,77.11,0.0,72.45,80.736,59.1079,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5286,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,22.2156,7.5638,8.2105,0.0,0.0,35.3848,4.693,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-elec-resistance-only.xml,96.6,76.706,74.8687,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,64.253,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,37.7934,7.6274,8.212,0.0,0.0,29.2543,4.745,9.02,29.25,4.75,9.02,21.12,0.12,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.86,5476.21,5713.08,56.2,1.0,56.2,96.6,96.6,0.0,50.29,1.0,50.29,96.6,96.6,0.0,90.8,80.737,74.0785,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.411,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.149,7.6009,8.2105,0.0,0.0,28.5293,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only-ducted.xml,77.17,76.706,59.8233,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,50.2826,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,1.1445,8.212,0.0,0.0,46.5516,0.712,9.02,46.55,0.71,9.02,21.12,0.12,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.41,9319.01,5713.08,72.13,1.0,72.13,77.17,77.17,0.0,62.69,1.0,62.69,77.17,77.17,0.0,72.28,80.736,58.9727,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6858,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,1.1387,8.2105,0.0,0.0,45.3967,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only.xml,77.01,76.706,59.6947,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,50.2036,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,1.0159,8.212,0.0,0.0,46.5516,0.632,9.02,46.55,0.63,9.02,21.12,0.12,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.32,9313.54,5713.08,72.13,1.0,72.13,77.01,77.01,0.0,62.69,1.0,62.69,77.01,77.01,0.0,72.13,80.736,58.8468,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6072,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,1.0122,8.2105,0.0,0.0,45.3977,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-fireplace-wood-only.xml,77.14,76.706,59.7987,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6262,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7234,7.6274,8.212,0.0,0.0,36.1883,4.745,9.02,36.57,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.89,1.0,57.89,77.14,77.14,0.0,52.34,1.0,52.34,77.14,77.14,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-floor-furnace-propane-only.xml,77.14,76.706,59.7987,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6262,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7234,7.6274,8.212,0.0,0.0,36.1883,4.745,9.02,36.57,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.68,9334.69,5713.08,57.89,1.0,57.89,77.14,77.14,0.0,52.34,1.0,52.34,77.14,77.14,0.0,72.42,80.736,59.0892,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.1464,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1597,7.6009,8.2105,0.0,0.0,35.2907,4.746,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-elec-only.xml,113.15,76.706,87.696,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,74.182,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,50.6207,7.6274,8.212,0.0,0.0,39.1834,4.745,9.02,39.18,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,110.36,6370.86,5713.08,56.2,1.0,56.2,113.15,113.15,0.0,50.29,1.0,50.29,113.15,113.15,0.0,106.42,80.737,86.82,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,73.197,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,49.8906,7.6009,8.2105,0.0,0.0,38.3143,4.746,9.02,38.31,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-only.xml,79.13,76.706,61.3405,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.394,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,24.2652,7.6274,8.212,0.0,0.0,38.6435,4.745,9.02,41.66,4.75,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.15,8899.85,5713.08,57.89,1.0,57.89,79.13,79.13,0.0,52.34,1.0,52.34,79.13,79.13,0.0,74.34,80.736,60.6563,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8922,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,23.7268,7.6009,8.2105,0.0,0.0,37.7864,4.746,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.61,76.676,65.5603,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,53.0796,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,6.8817,8.2127,0.0,0.0,46.5516,3.508,9.02,46.55,3.51,9.02,21.12,0.12,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,167.42,9524.49,5629.63,70.67,1.0,70.67,84.61,84.61,0.0,61.27,1.0,61.27,84.61,84.61,0.0,79.32,80.71,64.6918,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,52.4812,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5061,6.8572,8.2105,0.0,0.0,45.3977,3.505,9.02,45.4,3.51,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.82,76.706,55.6645,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.388,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.5892,7.6274,8.212,0.0,0.0,14.3891,4.745,9.02,14.39,4.75,9.02,21.12,0.12,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.51,4127.86,5713.08,56.2,1.0,56.2,71.82,71.82,0.0,50.29,1.0,50.29,71.82,71.82,0.0,67.7,80.737,55.2286,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,48.935,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.2991,7.6009,8.2105,0.0,0.0,14.0531,4.746,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump.xml,68.95,76.714,53.4497,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.783,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.8262,6.1756,8.212,0.0,0.0,13.3011,3.229,9.02,13.3,3.23,9.02,21.12,0.12,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.55,3909.02,5561.77,53.34,1.0,53.34,68.95,68.95,0.0,47.33,1.0,47.33,68.95,68.95,0.0,65.06,80.744,53.0809,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.356,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5822,6.1702,8.2105,0.0,0.0,12.9851,3.235,9.02,12.99,3.24,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.97,76.714,64.3206,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.849,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,28.4943,6.3783,8.212,0.0,0.0,21.2612,3.335,9.02,21.26,3.34,9.02,21.12,0.12,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,82.66,4645.87,5561.77,53.34,1.0,53.34,82.97,82.97,0.0,47.33,1.0,47.33,82.97,82.97,0.0,78.49,80.744,64.042,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,54.41,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.3468,6.3667,8.2105,0.0,0.0,20.9352,3.338,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.87,76.706,60.3608,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3162,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6605,7.2523,8.212,0.0,0.0,37.6946,4.485,9.02,40.64,4.49,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.98,8766.61,5561.77,56.72,1.0,56.72,77.87,77.87,0.0,51.05,1.0,51.05,77.87,77.87,0.0,73.16,80.736,59.6906,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.8248,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.127,7.235,8.2105,0.0,0.0,36.8365,4.489,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,67.51,76.714,52.3297,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.108,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,17.4215,5.4603,8.212,0.0,0.0,12.9991,2.855,9.02,13.0,2.86,9.02,21.12,0.12,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.59,3854.62,5561.77,53.34,1.0,53.34,67.51,67.51,0.0,47.33,1.0,47.33,67.51,67.51,0.0,63.69,80.744,51.9681,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,45.688,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1827,5.4569,8.2105,0.0,0.0,12.6901,2.861,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.62,76.706,63.2713,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.4286,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.5925,8.212,0.0,0.0,46.5516,2.857,9.02,46.55,2.86,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.28,9484.6,5713.08,72.13,1.0,72.13,81.62,81.62,0.0,62.69,1.0,62.69,81.62,81.62,0.0,76.49,80.736,62.4048,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.5708,8.2105,0.0,0.0,45.3967,2.854,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.61,76.714,52.4127,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.559,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,19.2468,3.718,8.212,0.0,0.0,14.3611,1.944,9.02,14.36,1.94,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.79,3922.38,5561.77,53.34,1.0,53.34,67.61,67.61,0.0,47.33,1.0,47.33,67.61,67.61,0.0,63.79,80.744,52.0465,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.121,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.012,3.7059,8.2105,0.0,0.0,14.0411,1.943,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,81.89,76.706,63.4754,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.5556,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.7966,8.212,0.0,0.0,46.5516,2.984,9.02,46.55,2.98,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.43,9493.63,5713.08,72.13,1.0,72.13,81.89,81.89,0.0,62.69,1.0,62.69,81.89,81.89,0.0,76.73,80.736,62.605,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.9548,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5054,4.771,8.2105,0.0,0.0,45.3967,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,81.08,76.706,62.8485,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,52.1646,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,29.2308,4.1697,8.212,0.0,0.0,46.5516,2.594,9.02,46.55,2.59,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.95,9465.93,5713.08,72.13,1.0,72.13,81.08,81.08,0.0,62.69,1.0,62.69,81.08,81.08,0.0,75.97,80.736,61.9842,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,51.5662,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5061,4.1496,8.2105,0.0,0.0,45.3977,2.591,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.77,76.676,62.5843,77.4848,0.2215,0.9921,1.0,1.0186,1.0105,1.0,51.5616,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,29.2299,3.9058,8.2127,0.0,0.0,46.5516,1.991,9.02,46.55,1.99,9.02,21.12,0.12,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.43,9411.18,5629.63,70.67,1.0,70.67,80.77,80.77,0.0,61.27,1.0,61.27,80.77,80.77,0.0,75.68,80.71,61.7252,81.5613,0.2215,0.9921,1.0,1.0186,1.0105,1.0,50.9648,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5054,3.8913,8.2105,0.0,0.0,45.3967,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.65,76.706,56.3092,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.888,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,19.2339,7.6274,8.212,0.0,0.0,14.8881,4.745,9.02,14.89,4.75,9.02,21.12,0.12,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,72.55,4188.09,5713.08,56.2,1.0,56.2,72.65,72.65,0.0,50.29,1.0,50.29,72.65,72.65,0.0,68.5,80.737,55.8796,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,49.436,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.9502,7.6009,8.2105,0.0,0.0,14.5531,4.746,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,67.97,76.714,52.6909,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.749,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,19.4465,3.7964,8.212,0.0,0.0,14.5101,1.985,9.02,14.51,1.99,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.09,3939.12,5561.77,53.34,1.0,53.34,67.97,67.97,0.0,47.33,1.0,47.33,67.97,67.97,0.0,64.13,80.744,52.3222,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2057,3.788,8.2105,0.0,0.0,14.1841,1.986,9.02,14.18,1.99,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,62.83,76.714,48.7049,77.5191,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.895,0.0,0.0,30.56,8.44,10.49,22.8,4.41,11.52,27.23,0.0,0.0,0.594,0.5021,0.9896,0.4432,0.2625,1.087,15.9941,3.2628,8.212,0.0,0.0,11.9341,1.706,9.02,11.93,1.71,9.02,21.12,0.12,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,65.6,3687.03,5561.77,53.34,1.0,53.34,62.83,62.83,0.0,47.33,1.0,47.33,62.83,62.83,0.0,59.25,80.744,48.341,81.5914,0.22038,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,34.66,8.38,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7624,3.2501,8.2105,0.0,0.0,11.6411,1.704,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-multiple.xml,96.46,76.6682,74.6991,77.4414,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.8828,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0657,2.1176,0.9896,7.7555,1.5750000000000002,1.087,38.3844,6.8667,8.212,0.0,0.0,44.5527,5.3309999999999995,9.02,45.59,5.32,9.02,21.12,0.12,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,139.34,8700.79,6181.95,55.45,1.0,55.45,96.46,96.46,0.0,50.6,1.0,50.6,96.46,96.46,0.0,91.72,80.6862,74.7555,81.4999,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.17,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1714,2.1094999999999997,0.9894,7.7555,1.5750000000000002,1.087,38.5722,6.8536,8.2105,0.0,0.0,43.7019,5.341,9.02,44.71,5.35,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 -base-hvac-none.xml,94.49,66.752,66.1469,70.0054,0.18439,1.0328,1.0,1.0155,1.0487,1.0,46.402,0.0,0.0,0.0,42.21,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,46.1313,4.0346,0.0,0.0,0.0,25.6762,4.747,0.0,25.68,4.75,15.2,0.78,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.66,1.0,69.66,94.49,94.49,0.0,62.72,1.0,62.72,94.49,94.49,0.0,89.65,66.751,62.7587,70.0043,0.18439,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.21,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5261,4.0346,0.0,0.0,0.0,24.2422,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-programmable-thermostat.xml,76.21,76.706,59.071,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.607,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,22.5979,7.0324,8.2147,0.0,0.0,36.0017,4.349,9.023,38.81,4.35,9.02,21.11,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.84,8478.04,5561.77,56.72,1.0,56.72,76.21,76.21,0.0,51.05,1.0,51.05,76.21,76.21,0.0,71.21,80.736,58.0963,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.9074,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,21.9116,6.8643,8.2124,0.0,0.0,34.9006,4.259,9.022,37.62,4.26,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-electricity.xml,95.48,76.715,74.0146,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.617,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,39.2067,5.36,8.212,0.0,0.0,29.2543,3.109,9.02,29.25,3.11,9.02,21.12,0.12,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.49,5343.59,5596.34,53.24,1.0,53.24,95.48,95.48,0.0,47.22,1.0,47.22,95.48,95.48,0.0,89.85,80.744,73.308,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,61.776,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,5.3501,8.2105,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,73.22,76.701,56.7514,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.9898,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,22.7228,4.5806,8.212,0.0,0.0,36.1873,3.109,9.02,36.57,3.11,9.02,21.12,0.12,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.99,8086.78,5596.34,56.66,1.0,56.66,73.22,73.22,0.0,51.0,1.0,51.0,73.22,73.22,0.0,68.71,80.731,56.0559,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,22.1597,4.5677,8.2105,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac.xml,81.61,76.701,63.2594,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.6806,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,4.5806,8.212,0.0,0.0,46.5516,3.109,9.02,46.55,3.11,9.02,21.12,0.12,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.43,9491.76,5747.08,72.07,1.0,72.07,81.61,81.61,0.0,62.64,1.0,62.64,81.61,81.61,0.0,76.49,80.731,62.4023,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.0862,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,4.5677,8.2105,0.0,0.0,45.3977,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-pthp.xml,66.58,76.715,51.6101,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.925,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.9591,5.2031,8.212,0.0,0.0,12.6541,3.018,9.02,12.65,3.02,9.02,21.12,0.12,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.94,3841.87,5596.34,53.24,1.0,53.24,66.58,66.58,0.0,47.22,1.0,47.22,66.58,66.58,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only-ceer.xml,83.16,76.701,64.4572,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,53.4926,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,5.7785,8.212,0.0,0.0,46.5516,3.922,9.02,46.55,3.92,9.02,21.12,0.12,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.43,9550.02,5747.08,72.07,1.0,72.07,83.16,83.16,0.0,62.64,1.0,62.64,83.16,83.16,0.0,77.95,80.731,63.596,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8992,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7614,8.2105,0.0,0.0,45.3977,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only.xml,83.14,76.701,64.4455,77.5124,0.22214,0.9921,1.0,1.0186,1.0106,1.0,53.4856,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,29.2308,5.7667,8.212,0.0,0.0,46.5516,3.914,9.02,46.55,3.91,9.02,21.12,0.12,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.42,9549.49,5747.08,72.07,1.0,72.07,83.14,83.14,0.0,62.64,1.0,62.64,83.14,83.14,0.0,77.94,80.731,63.5842,81.585,0.22214,0.9921,1.0,1.0186,1.0106,1.0,52.8922,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3855,0.9894,1.2821,0.2625,1.087,28.5061,5.7496,8.2105,0.0,0.0,45.3977,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-heating.xml,97.27,76.715,75.4024,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,63.422,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,39.2067,6.7478,8.212,0.0,0.0,29.2543,3.914,9.02,29.25,3.91,9.02,21.12,0.12,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,95.51,5401.33,5596.34,53.24,1.0,53.24,97.27,97.27,0.0,47.22,1.0,47.22,97.27,97.27,0.0,91.54,80.744,74.6923,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,62.581,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,38.6294,6.7345,8.2105,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,66.58,76.715,51.6101,77.5209,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.925,0.0,0.0,30.56,8.44,10.49,22.8,4.9,11.52,27.23,0.0,0.0,0.594,0.4526,0.9896,0.4432,0.2625,1.087,16.9591,5.2031,8.212,0.0,0.0,12.6541,3.018,9.02,12.65,3.02,9.02,21.12,0.12,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.94,3841.87,5596.34,53.24,1.0,53.24,66.58,66.58,0.0,47.22,1.0,47.22,66.58,66.58,0.0,62.82,80.744,51.2549,81.5922,0.2206,0.9921,1.0,1.0185,1.0105,1.0,45.514,0.0,0.0,34.66,8.38,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4515,0.9894,0.4432,0.2625,1.087,16.7346,5.1919,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-space-heater-gas-only.xml,68.83,76.706,53.3556,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.7006,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,16.2803,7.6274,8.212,0.0,0.0,25.9273,4.745,9.02,29.25,4.75,9.02,21.12,0.12,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.7,7142.1,5713.08,57.89,1.0,57.89,68.83,68.83,0.0,52.34,1.0,52.34,68.83,68.83,0.0,64.72,80.736,52.8062,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,46.2936,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,15.8768,7.6009,8.2105,0.0,0.0,25.2847,4.746,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-stove-wood-pellets-only.xml,77.12,76.706,59.7807,77.5173,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.6806,0.0,0.0,30.56,8.43,10.49,48.67,5.25,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.7054,7.6274,8.212,0.0,0.0,36.1596,4.745,9.02,36.54,4.75,9.02,21.12,0.12,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.89,1.0,57.89,77.12,77.12,0.0,52.34,1.0,52.34,77.12,77.12,0.0,72.4,80.736,59.0724,81.5899,0.22209,0.9921,1.0,1.0186,1.0106,1.0,49.2004,0.0,0.0,34.66,8.37,10.49,55.2,5.23,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1429,7.6009,8.2105,0.0,0.0,35.264,4.746,9.02,35.63,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-undersized.xml,74.0,76.706,57.3603,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,49.3986,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,20.9414,6.9709,8.212,0.0,0.0,33.3626,4.311,9.02,35.97,4.31,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.3,8054.2,5561.77,56.72,1.0,56.72,74.0,74.0,0.0,51.05,1.0,51.05,74.0,74.0,0.0,69.53,80.736,56.7316,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9308,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,20.4533,6.9498,8.2105,0.0,0.0,32.5779,4.312,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-wall-furnace-elec-only.xml,97.59,76.706,75.6399,77.5076,0.21946,0.9922,1.0,1.0184,1.0105,1.0,64.85,0.0,0.0,30.56,8.43,10.49,23.66,5.25,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,38.5646,7.6274,8.212,0.0,0.0,29.8513,4.745,9.02,29.85,4.75,9.02,21.12,0.12,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,95.8,5530.13,5713.08,56.2,1.0,56.2,97.59,97.59,0.0,50.29,1.0,50.29,97.59,97.59,0.0,91.73,80.737,74.8363,81.5807,0.21946,0.9922,1.0,1.0184,1.0105,1.0,63.993,0.0,0.0,34.66,8.37,10.49,26.62,5.23,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.9069,7.6009,8.2105,0.0,0.0,29.1113,4.746,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans.xml,78.37,77.131,61.0781,77.9369,0.21941,0.9922,1.0,1.0184,1.0104,1.0,52.1714,0.0,0.0,30.54,8.12,10.49,48.66,5.06,11.52,27.98,0.0,0.0,0.8047,0.4218,0.9899,1.2821,0.2625,1.087,23.6117,7.4874,8.213,0.0,0.0,37.6176,4.66,9.018,40.55,4.66,9.02,21.65,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.02,8796.68,5616.01,56.73,1.0,56.73,78.37,78.37,0.0,51.12,1.0,51.12,78.37,78.37,0.0,73.67,81.146,60.406,81.9938,0.21941,0.9922,1.0,1.0184,1.0104,1.0,51.677,0.0,0.0,34.64,8.04,10.49,55.18,5.03,11.52,27.97,0.0,0.0,0.8049,0.4202,0.9897,1.2821,0.2625,1.087,23.0798,7.4663,8.2109,0.0,0.0,36.7614,4.665,9.018,39.63,4.67,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-baltimore-md.xml,74.92,60.304,48.4761,64.7081,0.27311,1.0489,1.0,1.023,1.073,1.0,41.0398,0.0,0.0,20.96,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.8009,0.4193,0.9661,1.2821,0.2625,1.087,13.8867,11.2375,7.5618,0.0,0.0,22.2284,7.0361,8.508,23.96,7.04,8.51,15.01,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.35,9939.57,11674.09,51.47,1.0,51.47,74.92,74.92,0.0,49.06,1.0,49.06,74.92,74.92,0.0,66.95,61.056,43.8595,65.515,0.27311,1.0489,1.0,1.023,1.073,1.0,37.6618,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4154,0.9661,1.2821,0.2625,1.087,10.6427,10.6325,7.5653,0.0,0.0,17.0329,6.7201,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-capetown-zaf.xml,79.09,36.333,30.0742,38.0262,0.17648,1.0314,1.0,1.0148,1.0466,1.0,27.6494,0.0,0.0,4.32,4.49,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8008,0.4833,0.9591,1.2821,0.2625,1.087,1.0806,6.5183,6.6293,0.0,0.0,1.73,3.541,7.513,1.87,3.54,7.51,15.06,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.32,1.0,50.32,79.09,79.09,0.0,48.06,1.0,48.06,79.09,79.09,0.0,77.18,36.623,29.5834,38.3297,0.17648,1.0314,1.0,1.0148,1.0466,1.0,26.9626,0.0,0.0,4.75,4.35,8.36,7.61,2.38,9.47,19.17,0.0,0.0,0.801,0.4806,0.959,1.2821,0.2625,1.087,0.4683,7.4036,6.6286,0.0,0.0,0.7495,4.044,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-dallas-tx.xml,71.57,63.07,48.4473,67.6952,0.27421,1.0491,1.0,1.0231,1.0733,1.0,38.7656,0.0,0.0,9.9,26.44,7.52,15.85,15.67,8.5,19.22,0.0,0.0,0.8003,0.443,0.9612,1.2821,0.2625,1.087,3.7759,22.8647,5.9387,0.0,0.0,6.049,13.5491,6.716,6.52,13.55,6.72,15.08,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.44,6298.28,7577.77,47.26,1.0,47.26,71.57,71.57,0.0,44.31,1.0,44.31,71.57,71.57,0.0,65.87,63.66,45.0099,68.3284,0.27421,1.0491,1.0,1.0231,1.0733,1.0,36.3978,0.0,0.0,10.41,26.51,7.52,16.68,15.86,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,2.5599,21.4196,5.9354,0.0,0.0,4.101,12.8091,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,80.91,79.013,68.3051,84.4246,0.25668,1.0459,1.0,1.0216,1.0685,1.0,57.5626,0.0,0.0,45.93,1.75,13.08,73.17,1.97,14.52,18.26,0.0,0.0,0.8047,0.233,0.9791,1.2821,0.2625,1.087,40.9467,1.9665,10.2849,0.0,0.0,65.2364,2.216,11.418,70.33,2.22,11.42,14.32,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,184.79,12450.68,6305.71,54.11,1.0,54.11,80.91,80.91,0.0,47.01,1.0,47.01,80.91,80.91,0.0,67.45,83.952,60.5011,89.7018,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8852,0.0,0.0,51.02,1.6,13.08,81.28,1.91,14.52,18.26,0.0,0.0,0.8047,0.2196,0.9791,1.2821,0.2625,1.087,33.9363,1.9703,10.2885,0.0,0.0,54.0661,2.356,11.422,58.29,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-helena-mt.xml,78.36,92.35,73.1393,93.3324,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.8574,0.0,0.0,49.58,3.69,11.89,78.97,2.67,12.94,27.19,0.0,0.0,0.8049,0.3635,0.9988,1.2821,0.2625,1.087,39.2673,3.3269,9.3431,0.0,0.0,62.5435,2.403,10.168,67.42,2.4,10.17,21.08,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,203.72,12011.46,5833.96,58.05,1.0,58.05,78.36,78.36,0.0,51.12,1.0,51.12,78.36,78.36,0.0,72.22,98.963,72.2268,100.0158,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2344,0.0,0.0,56.4,3.49,11.89,89.83,2.59,12.95,27.18,0.0,0.0,0.8049,0.3544,0.9985,1.2821,0.2625,1.087,38.5355,3.2663,9.34,0.0,0.0,61.3766,2.42,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-honolulu-hi.xml,83.26,66.754,58.2792,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,41.838,0.0,0.0,0.0,42.21,5.18,0.0,23.29,6.1,19.36,0.0,0.0,0.0,0.4758,0.9238,1.2821,0.2625,1.087,0.0,38.2636,4.0346,0.0,0.0,0.0,21.1112,4.747,0.0,21.11,4.75,15.2,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,62.73,1.0,62.73,83.26,83.26,0.0,41.45,1.0,41.45,83.26,83.26,0.0,79.06,66.754,55.3363,69.9954,0.18372,1.0327,1.0,1.0154,1.0486,1.0,39.876,0.0,0.0,0.0,42.21,5.18,0.0,23.3,6.1,19.36,0.0,0.0,0.0,0.4755,0.9238,1.2821,0.2625,1.087,0.0,36.1037,4.0346,0.0,0.0,0.0,19.9332,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-miami-fl.xml,80.59,65.361,55.5324,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,41.4678,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4507,0.9264,1.2821,0.2625,1.087,0.0041,35.404,4.1573,0.0,0.0,0.0065,20.6212,4.878,0.01,20.62,4.88,15.18,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.59,6125.65,7300.97,63.51,1.0,63.51,80.59,80.59,0.0,43.47,1.0,43.47,80.59,80.59,0.0,75.57,65.361,52.0695,68.9044,0.20456,1.0364,1.0,1.0172,1.0542,1.0,39.123,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4508,0.9264,1.2821,0.2625,1.087,0.0,32.727,4.1565,0.0,0.0,0.0,19.0612,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-phoenix-az.xml,72.57,77.858,60.8096,83.797,0.28483,1.0511,1.0,1.024,1.0763,1.0,44.0104,0.0,0.0,1.43,51.54,5.6,2.29,29.19,6.55,19.29,0.0,0.0,0.8003,0.4635,0.9289,1.2821,0.2625,1.087,0.2067,40.3058,4.3661,0.0,0.0,0.3312,22.8282,5.109,0.36,22.83,5.11,15.15,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.44,4954.81,6268.75,49.09,1.0,49.09,72.57,72.57,0.0,44.74,1.0,44.74,72.57,72.57,0.0,69.6,77.934,58.3835,83.8788,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2878,0.0,0.0,1.46,51.59,5.6,2.34,29.23,6.55,19.28,0.0,0.0,0.8,0.4634,0.9289,1.2821,0.2625,1.087,0.059,38.8029,4.3635,0.0,0.0,0.0946,21.9842,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-portland-or.xml,82.16,46.215,39.8764,48.5335,0.18966,1.0337,1.0,1.0159,1.0502,1.0,36.0326,0.0,0.0,13.7,3.43,9.97,21.93,2.46,11.25,19.11,0.0,0.0,0.8007,0.3659,0.9636,1.2821,0.2625,1.087,12.5159,3.702,7.9164,0.0,0.0,20.0411,2.656,8.93,21.61,2.66,8.93,14.96,0.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.43,4938.84,2895.38,66.27,1.0,66.27,82.16,82.16,0.0,50.06,1.0,50.06,82.16,82.16,0.0,73.35,46.985,36.1931,49.3421,0.18966,1.0337,1.0,1.0159,1.0502,1.0,33.2624,0.0,0.0,14.54,3.36,9.97,23.28,2.43,11.25,19.11,0.0,0.0,0.8007,0.3629,0.9636,1.2821,0.2625,1.087,9.4191,3.8809,7.9191,0.0,0.0,15.0812,2.808,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-balanced.xml,81.81,78.062,64.5349,78.8861,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,30.16,8.61,10.49,48.06,5.3,11.52,27.23,1.58,0.0,0.8047,0.4265,0.9897,1.2821,0.2625,1.087,25.3957,8.0197,8.2136,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.23,9364.83,5677.13,56.72,1.0,56.72,81.81,81.81,0.0,51.05,1.0,51.05,81.81,81.81,0.0,77.78,82.077,64.5108,82.9435,0.2217,0.9921,1.0,1.0186,1.0106,1.0,54.7538,0.0,0.0,34.25,8.54,10.49,54.55,5.28,11.52,27.22,1.58,0.0,0.8049,0.425,0.9895,1.2821,0.2625,1.087,25.4013,7.9913,8.2122,0.0,0.0,40.4598,4.937,9.021,43.62,4.94,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,78.55,77.621,61.6164,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.3521,8.1614,8.212,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.06,8608.95,5639.59,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,74.67,81.622,61.5901,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,52.6446,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.3573,8.1314,8.2105,0.0,0.0,35.6112,5.031,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.66,77.621,59.3508,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.6946,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,21.601,7.9229,8.212,0.0,0.0,34.4145,4.884,9.02,37.1,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.71,8304.26,5639.59,56.72,1.0,56.72,75.66,75.66,0.0,51.05,1.0,51.05,75.66,75.66,0.0,71.59,81.622,59.0492,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5006,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,21.3253,7.8954,8.2105,0.0,0.0,33.9674,4.885,9.02,36.62,4.89,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis.xml,79.4,77.621,62.2842,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,23.0548,8.1614,8.212,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.09,8781.73,5639.59,56.72,1.0,56.72,79.4,79.4,0.0,51.05,1.0,51.05,79.4,79.4,0.0,75.48,81.622,62.2581,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,53.1042,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,23.0602,8.1314,8.2105,0.0,0.0,36.7308,5.031,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv-atre-asre.xml,70.98,78.643,56.4076,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9844,8.2943,8.2099,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.0,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3793,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9864,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9885,8.2634,8.2085,0.0,0.0,27.0595,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv.xml,70.98,78.643,56.4094,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9862,8.2943,8.2099,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.47,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3811,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9876,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9902,8.2634,8.2085,0.0,0.0,27.0623,5.095,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-exhaust.xml,77.8,77.621,61.0231,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.8778,7.9213,8.212,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.92,8658.3,5639.59,56.72,1.0,56.72,77.8,77.8,0.0,51.05,1.0,51.05,77.8,77.8,0.0,73.95,81.622,60.9978,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.9876,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.8831,7.8921,8.2105,0.0,0.0,36.4488,4.883,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv-asre.xml,70.98,78.643,56.4119,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9839,8.2991,8.2099,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.03,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3836,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.989,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9879,8.2682,8.2085,0.0,0.0,27.0585,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv.xml,70.98,78.643,56.4137,79.4733,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9856,8.2991,8.2099,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.5,5726.48,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3854,83.5236,0.2217,0.9921,1.0,1.0186,1.0106,1.0,48.9902,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9896,8.2682,8.2085,0.0,0.0,27.0613,5.098,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-multiple.xml,81.94,78.276,64.8162,79.1028,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.6158,0.0,0.0,30.1,8.64,10.49,47.95,6.2,11.52,27.23,1.83,0.0,1.6095,0.731,0.9897,2.5642,0.525,1.087,25.375500000000002,8.6312,8.2145,0.0,0.0,40.4273,6.199999999999999,9.022,43.58,5.78,9.02,21.11,1.49,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,162.82,9447.61,5741.75,57.45,1.0,57.45,81.94,81.94,0.0,51.78,1.0,51.78,81.94,81.94,0.0,77.27,82.247,64.2242,83.1158,0.22181,0.9921,1.0,1.0186,1.0106,1.0,55.2124,0.0,0.0,34.2,8.56,10.49,54.47,6.18,11.52,27.22,1.78,0.0,1.6098,0.7278,0.9895,2.5642,0.525,1.087,24.902700000000003,8.5454,8.2131,0.0,0.0,39.665800000000004,6.165,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 -base-mechvent-supply.xml,77.54,77.621,60.8202,78.4405,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.5133,8.0819,8.212,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.44,8573.52,5639.59,56.72,1.0,56.72,77.54,77.54,0.0,51.05,1.0,51.05,77.54,77.54,0.0,73.7,81.622,60.7943,82.4837,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.8308,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.5186,8.0522,8.2105,0.0,0.0,35.8681,4.982,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-whole-house-fan.xml,77.02,76.706,59.7023,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.0962,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.7054,6.5634,8.2165,0.0,0.0,37.766,4.059,9.025,40.71,3.41,9.03,21.1,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.43,8735.66,5561.77,56.72,1.0,56.72,77.02,77.02,0.0,51.05,1.0,51.05,77.02,77.02,0.0,72.33,80.736,59.0143,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.1701,6.5291,8.2151,0.0,0.0,36.9052,4.051,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-misc-generators.xml,76.83,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.9763,58.694,1.389,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,195.78,11003.55,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,72.18,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9761,58.1976,1.389,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv-battery.xml,39.8,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.5057,52.721,26.886,0.827,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.56,6832.21,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv.xml,37.92,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,0.4819,51.894,26.886,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.71,6953.06,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,68.57,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,0.9273,51.3976,3.7348,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-co2-2019ABCD.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,156.04,8770.34,5561.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014.xml,77.97,79.848,62.2609,,,,,,,1.0,52.8768,0.0,0.0,31.91,8.42,11.44,50.77,4.34,12.37,28.08,0.0,0.0,0.8058,0.5097,1.0049,1.2821,0.2625,1.087,22.3563,7.7328,10.6197,0.0,0.0,35.5676,3.983,11.487,38.34,3.98,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014A.xml,75.44,78.761,59.4136,,,,,,,1.0,49.933,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.3335,7.7493,7.7788,0.0,0.0,35.5323,3.988,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AE.xml,74.56,78.761,59.4136,79.6849,0.24619,0.9912,1.0,1.0207,1.0117,1.0,49.933,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.3335,7.7493,7.7788,0.0,0.0,35.5323,3.988,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AEG.xml,73.9,78.761,58.9003,79.7005,0.25033,0.9911,1.0,1.021,1.0119,1.0,49.3932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.5766,7.6619,7.7788,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019.xml,75.22,77.427,58.8509,78.2353,0.21924,0.9922,1.0,1.0184,1.0104,1.0,49.3932,0.0,0.0,30.51,8.46,10.38,48.53,4.38,11.41,28.08,0.0,0.0,0.8058,0.5068,0.9887,1.2821,0.2625,1.087,22.5767,7.6117,7.7795,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019A.xml,76.77,76.709,59.5087,77.5178,0.22141,0.9921,1.0,1.0186,1.0105,1.0,50.091,0.0,0.0,30.56,8.43,10.49,48.62,4.37,11.52,27.23,0.0,0.0,0.8058,0.5063,0.9896,1.2821,0.2625,1.087,22.572,7.6067,8.212,0.0,0.0,35.9117,3.944,9.02,38.71,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019AB.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABC.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABCD.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022.xml,77.86,76.706,60.3501,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.0888,7.9314,8.212,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.9,78.761,58.9003,79.7005,0.25033,0.9911,1.0,1.021,1.0119,1.0,49.3932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.5101,0.9886,1.2821,0.2625,1.087,22.5766,7.6619,7.7788,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.42,81.455,58.871,82.4267,0.25033,0.9911,1.0,1.021,1.0119,1.0,49.3932,0.0,0.0,34.6,8.4,10.38,55.05,4.34,11.41,28.08,0.0,0.0,0.8058,0.5082,0.9885,1.2821,0.2625,1.087,22.5773,7.6325,7.7781,0.0,0.0,35.9191,3.943,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base.xml,78.69,76.706,60.9981,77.5158,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.894,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4245,0.9896,1.2821,0.2625,1.087,23.6268,7.9233,8.212,0.0,0.0,37.6408,4.9,9.02,40.58,4.9,9.02,21.12,0.12,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,156.04,8770.34,5561.77,56.72,1.0,56.72,78.69,78.69,0.0,51.05,1.0,51.05,78.69,78.69,0.0,73.94,80.736,60.3279,81.5884,0.2217,0.9921,1.0,1.0186,1.0106,1.0,51.3976,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.4231,0.9894,1.2821,0.2625,1.087,23.0938,7.9055,8.2105,0.0,0.0,36.7837,4.905,9.02,39.65,4.91,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,83.8,76.713,64.9594,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.148,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.5583,7.0651,8.212,0.0,0.0,21.3092,3.695,9.02,21.31,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.04,4667.09,5561.74,53.34,1.0,53.34,83.8,83.8,0.0,47.33,1.0,47.33,83.8,83.8,0.0,79.91,80.743,65.2016,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.12,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8256,7.0475,8.2105,0.0,0.0,21.2882,3.695,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,72.23,76.713,55.9928,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,48.904,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,21.6014,5.0555,8.212,0.0,0.0,16.1181,2.644,9.02,16.12,2.64,9.02,21.12,0.01,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.43,4126.75,5561.74,53.34,1.0,53.34,72.23,72.23,0.0,47.33,1.0,47.33,72.23,72.23,0.0,68.84,80.743,56.1707,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.7993,5.0429,8.2105,0.0,0.0,16.0991,2.644,9.02,16.1,2.64,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,71.73,76.713,55.6003,77.5178,0.2203,0.9921,1.0,1.0185,1.0105,1.0,48.787,0.0,0.0,30.56,8.44,10.49,22.81,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.2983,3.9661,8.212,0.0,0.0,16.6381,2.007,9.02,16.64,2.01,9.02,21.12,0.01,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.54,4125.75,5551.6,53.41,1.0,53.41,71.73,71.73,0.0,47.4,1.0,47.4,71.73,71.73,0.0,68.37,80.742,55.7842,81.589,0.2203,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5021,3.9536,8.2105,0.0,0.0,16.6181,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-elec-only.xml,99.31,76.705,76.9699,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,65.856,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,40.0086,7.6254,8.212,0.0,0.0,30.9693,4.744,9.02,30.97,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.25,5614.01,5713.06,56.21,1.0,56.21,99.31,99.31,0.0,50.29,1.0,50.29,99.31,99.31,0.0,94.64,80.736,77.2041,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,65.812,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,40.2751,7.6004,8.2105,0.0,0.0,30.9303,4.745,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-gas-only.xml,71.17,76.705,55.1928,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.2084,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2315,7.6254,8.212,0.0,0.0,29.8234,4.744,9.02,32.98,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,132.77,7668.49,5713.06,57.31,1.0,57.31,71.17,71.17,0.0,51.95,1.0,51.95,71.17,71.17,0.0,67.61,80.735,55.1887,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.186,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2597,7.6004,8.2105,0.0,0.0,29.7854,4.745,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-oil-only.xml,71.19,76.705,55.2039,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.3382,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2425,7.6254,8.212,0.0,0.0,29.8415,4.744,9.02,33.0,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.03,9243.07,5713.06,57.31,1.0,57.31,71.19,71.19,0.0,51.95,1.0,51.95,71.19,71.19,0.0,67.63,80.735,55.2004,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.3162,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2714,7.6004,8.2105,0.0,0.0,29.8044,4.745,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-propane-only.xml,71.17,76.705,55.1928,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.2084,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2315,7.6254,8.212,0.0,0.0,29.8234,4.744,9.02,32.98,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.06,8667.54,5713.06,57.31,1.0,57.31,71.17,71.17,0.0,51.95,1.0,51.95,71.17,71.17,0.0,67.61,80.735,55.1887,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.186,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2597,7.6004,8.2105,0.0,0.0,29.7854,4.745,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,84.93,76.705,65.8357,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9552,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,7.9549,8.212,0.0,0.0,45.4587,4.949,9.02,45.46,4.95,9.02,21.12,0.01,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.99,9467.78,5713.06,72.13,1.0,72.13,84.93,84.93,0.0,62.7,1.0,62.7,84.93,84.93,0.0,80.6,80.735,65.7621,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9242,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,7.9272,8.2105,0.0,0.0,45.3977,4.949,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed.xml,84.96,76.705,65.855,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9672,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,7.9742,8.212,0.0,0.0,45.4587,4.961,9.02,45.46,4.96,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.0,9468.64,5713.06,72.13,1.0,72.13,84.96,84.96,0.0,62.7,1.0,62.7,84.96,84.96,0.0,80.63,80.735,65.7813,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9362,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,7.9464,8.2105,0.0,0.0,45.3977,4.961,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-2-speed.xml,82.65,76.705,64.0644,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.8542,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,6.1836,8.212,0.0,0.0,45.4587,3.847,9.02,45.46,3.85,9.02,21.12,0.01,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.6,9387.86,5713.06,72.13,1.0,72.13,82.65,82.65,0.0,62.7,1.0,62.7,82.65,82.65,0.0,78.44,80.735,63.9976,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.8236,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,6.162,8.2105,0.0,0.0,45.3987,3.847,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-var-speed.xml,81.59,76.7,63.2448,77.5106,0.22193,0.9921,1.0,1.0186,1.0106,1.0,52.2482,0.0,0.0,30.56,8.42,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4345,0.9896,1.2821,0.2625,1.087,28.5449,5.3639,8.212,0.0,0.0,45.4587,3.241,9.02,45.46,3.24,9.02,21.12,0.01,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.13,9343.02,5702.23,72.17,1.0,72.17,81.59,81.59,0.0,62.73,1.0,62.73,81.59,81.59,0.0,77.44,80.73,63.1772,81.5832,0.22193,0.9921,1.0,1.0186,1.0106,1.0,52.2176,0.0,0.0,34.66,8.36,10.49,55.2,5.07,11.52,27.22,0.0,0.0,0.805,0.4327,0.9894,1.2821,0.2625,1.087,28.507,5.3417,8.2105,0.0,0.0,45.3987,3.241,9.02,45.4,3.24,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.17,76.705,66.7872,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.922,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4771,7.9742,8.212,0.0,0.0,22.8172,4.961,9.02,22.82,4.96,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.0,4906.9,5713.06,55.03,1.0,55.03,86.17,86.17,0.0,49.0,1.0,49.0,86.17,86.17,0.0,82.07,80.736,66.9533,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.89,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6783,7.9464,8.2105,0.0,0.0,22.7922,4.961,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-dse.xml,78.24,76.706,60.6479,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4882,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.5633,8.7487,8.212,0.0,0.0,35.946,5.409,9.02,38.75,5.41,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.95,8540.13,5561.74,56.71,1.0,56.71,78.24,78.24,0.0,51.05,1.0,51.05,78.24,78.24,0.0,74.26,80.735,60.5827,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.46,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.5385,8.7157,8.2105,0.0,0.0,35.8987,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.72,76.712,62.573,77.5157,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.084,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.502,0.9896,1.7253,0.2625,1.087,26.172,7.0651,8.212,0.0,0.0,27.1415,3.695,9.02,28.589999999999996,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,109.57,6157.9,5561.74,53.34,1.0,53.34,80.72,80.72,0.0,47.33,1.0,47.33,80.72,80.72,0.0,76.95,80.743,62.7796,81.589,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0594,0.0,0.0,34.66,8.37,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.403599999999997,7.0475,8.2105,0.0,0.0,27.1156,3.695,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,79.99,76.712,62.0013,77.5152,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.8552,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.502,0.9896,1.7253,0.2625,1.087,25.6002,7.0651,8.212,0.0,0.0,29.7292,3.695,9.02,31.72,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,120.22,6756.15,5561.74,53.34,1.0,53.34,79.99,79.99,0.0,47.33,1.0,47.33,79.99,79.99,0.0,76.22,80.743,62.1839,81.5884,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.8326,0.0,0.0,34.66,8.37,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8079,7.0475,8.2105,0.0,0.0,29.7027,3.695,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-area-fractions.xml,84.25,104.691,85.1448,101.0637,0.22168,0.9654,1.0,1.0,0.9654,1.0,69.1914,0.0,0.0,46.45,12.42,10.49,73.99,7.22,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,37.3555,12.4496,8.0706,0.0,0.0,59.4982,7.2391,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.49,12925.65,7501.69,56.51,1.0,56.51,84.25,84.25,0.0,51.2,1.0,51.2,84.25,84.25,0.0,77.25,114.298,85.2354,110.3379,0.22168,0.9654,1.0,1.0,0.9654,1.0,69.1914,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4548,0.9893,1.2821,0.2625,1.087,37.3583,12.5403,8.0678,0.0,0.0,59.4982,7.2391,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-buried.xml,75.28,76.706,58.3506,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.054,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,21.6311,7.3836,8.212,0.0,0.0,34.4609,4.565,9.02,37.15,4.57,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.51,8234.31,5561.74,56.72,1.0,56.72,75.28,75.28,0.0,51.05,1.0,51.05,75.28,75.28,0.0,71.45,80.735,58.2956,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.03,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.6113,7.3558,8.2105,0.0,0.0,34.422,4.565,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-leakage-cfm50.xml,76.33,76.706,59.1645,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5546,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.2395,7.589,8.212,0.0,0.0,35.4303,4.692,9.02,38.2,4.69,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.49,8402.06,5561.74,56.72,1.0,56.72,76.33,76.33,0.0,51.05,1.0,51.05,76.33,76.33,0.0,72.44,80.735,59.1053,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.527,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.2164,7.5604,8.2105,0.0,0.0,35.3857,4.692,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-elec-resistance-only.xml,95.31,76.705,73.8681,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.455,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,36.9068,7.6254,8.212,0.0,0.0,28.5683,4.744,9.02,28.57,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.64,5405.86,5713.06,56.21,1.0,56.21,95.31,95.31,0.0,50.29,1.0,50.29,95.31,95.31,0.0,90.81,80.736,74.079,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.411,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.15,7.6004,8.2105,0.0,0.0,28.5303,4.745,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only-ducted.xml,76.14,76.705,59.0237,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.7172,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,1.1428,8.212,0.0,0.0,45.4587,0.711,9.02,45.46,0.71,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.49,9150.26,5713.06,72.13,1.0,72.13,76.14,76.14,0.0,62.7,1.0,62.7,76.14,76.14,0.0,72.28,80.735,58.9738,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6862,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,1.1389,8.2105,0.0,0.0,45.3977,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only.xml,75.98,76.705,58.8973,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6386,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5455,1.0159,8.212,0.0,0.0,45.4597,0.632,9.02,45.46,0.63,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.39,9144.81,5713.06,72.13,1.0,72.13,75.98,75.98,0.0,62.7,1.0,62.7,75.98,75.98,0.0,72.13,80.735,58.8479,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6076,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,1.0123,8.2105,0.0,0.0,45.3987,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-fireplace-wood-only.xml,76.31,76.705,59.1513,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1716,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1899,7.6254,8.212,0.0,0.0,35.3382,4.744,9.02,35.71,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.31,76.31,0.0,52.34,1.0,52.34,76.31,76.31,0.0,72.42,80.735,59.0895,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1458,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1606,7.6004,8.2105,0.0,0.0,35.2917,4.745,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-floor-furnace-propane-only.xml,76.31,76.705,59.1513,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1716,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1899,7.6254,8.212,0.0,0.0,35.3382,4.744,9.02,35.71,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.88,9172.91,5713.06,57.9,1.0,57.9,76.31,76.31,0.0,52.34,1.0,52.34,76.31,76.31,0.0,72.42,80.735,59.0895,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1458,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1606,7.6004,8.2105,0.0,0.0,35.2917,4.745,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-elec-only.xml,111.63,76.705,86.5222,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,73.251,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,49.5608,7.6254,8.212,0.0,0.0,38.3633,4.744,9.02,38.36,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,108.94,6288.68,5713.06,56.21,1.0,56.21,111.63,111.63,0.0,50.29,1.0,50.29,111.63,111.63,0.0,106.42,80.736,86.8204,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,73.197,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,49.8914,7.6004,8.2105,0.0,0.0,38.3153,4.745,9.02,38.32,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-only.xml,78.33,76.705,60.7189,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9186,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,23.7575,7.6254,8.212,0.0,0.0,37.8346,4.744,9.02,40.79,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.79,8763.8,5713.06,57.9,1.0,57.9,78.33,78.33,0.0,52.34,1.0,52.34,78.33,78.33,0.0,74.34,80.735,60.6566,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8916,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,23.7277,7.6004,8.2105,0.0,0.0,37.7873,4.745,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.57,76.675,64.7545,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.5112,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,6.8739,8.2127,0.0,0.0,45.4587,3.504,9.02,45.46,3.5,9.02,21.12,0.01,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.45,9355.64,5629.6,70.68,1.0,70.68,83.57,83.57,0.0,61.27,1.0,61.27,83.57,83.57,0.0,79.32,80.709,64.6901,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.4802,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,6.8552,8.2105,0.0,0.0,45.3977,3.504,9.02,45.4,3.5,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.14,76.705,55.1396,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,48.959,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.1782,7.6254,8.212,0.0,0.0,14.0711,4.744,9.02,14.07,4.74,9.02,21.12,0.01,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.86,4090.44,5713.06,56.21,1.0,56.21,71.14,71.14,0.0,50.29,1.0,50.29,71.14,71.14,0.0,67.7,80.736,55.2279,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,48.935,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.2989,7.6004,8.2105,0.0,0.0,14.0531,4.745,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump.xml,68.3,76.713,52.9462,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.379,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.4266,6.1837,8.212,0.0,0.0,13.0031,3.234,9.02,13.0,3.23,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.93,3873.7,5561.74,53.34,1.0,53.34,68.3,68.3,0.0,47.33,1.0,47.33,68.3,68.3,0.0,65.05,80.743,53.0775,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.355,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5827,6.1663,8.2105,0.0,0.0,12.9851,3.233,9.02,12.99,3.23,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.31,76.713,63.8018,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,54.437,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.0852,6.3806,8.212,0.0,0.0,20.9562,3.337,9.02,20.96,3.34,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,82.02,4609.47,5561.74,53.34,1.0,53.34,82.31,82.31,0.0,47.33,1.0,47.33,82.31,82.31,0.0,78.49,80.743,64.0422,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,54.409,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.349,6.3647,8.2105,0.0,0.0,20.9362,3.337,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.08,76.706,59.7453,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.8502,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1519,7.2574,8.212,0.0,0.0,36.8838,4.487,9.02,39.76,4.49,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.54,8629.61,5561.74,56.72,1.0,56.72,77.08,77.08,0.0,51.05,1.0,51.05,77.08,77.08,0.0,73.16,80.735,59.6881,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.8242,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.1278,7.2317,8.2105,0.0,0.0,36.8375,4.488,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,66.87,76.713,51.8325,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,45.71,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.0299,5.4666,8.212,0.0,0.0,12.7071,2.859,9.02,12.71,2.86,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.97,3819.82,5561.74,53.34,1.0,53.34,66.87,66.87,0.0,47.33,1.0,47.33,66.87,66.87,0.0,63.69,80.743,51.9661,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,45.687,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1846,5.453,8.2105,0.0,0.0,12.6911,2.859,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.59,76.705,62.4667,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8602,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,4.5858,8.212,0.0,0.0,45.4587,2.853,9.02,45.46,2.85,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.35,9315.7,5713.06,72.13,1.0,72.13,80.59,80.59,0.0,62.7,1.0,62.7,80.59,80.59,0.0,76.49,80.735,62.4048,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8282,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,4.5699,8.2105,0.0,0.0,45.3977,2.853,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.94,76.713,51.8884,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.143,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,18.8392,3.7133,8.212,0.0,0.0,14.0571,1.942,9.02,14.06,1.94,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.14,3885.64,5561.74,53.34,1.0,53.34,66.94,66.94,0.0,47.33,1.0,47.33,66.94,66.94,0.0,63.79,80.743,52.0451,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.12,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.0126,3.704,8.2105,0.0,0.0,14.0411,1.942,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,80.85,76.705,62.6692,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9862,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,4.7884,8.212,0.0,0.0,45.4587,2.979,9.02,45.46,2.98,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.51,9324.65,5713.06,72.13,1.0,72.13,80.85,80.85,0.0,62.7,1.0,62.7,80.85,80.85,0.0,76.73,80.735,62.6066,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9542,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,4.7717,8.2105,0.0,0.0,45.3977,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,80.04,76.705,62.0462,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.5976,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5455,4.1647,8.212,0.0,0.0,45.4597,2.591,9.02,45.46,2.59,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.03,9297.07,5713.06,72.13,1.0,72.13,80.04,80.04,0.0,62.7,1.0,62.7,80.04,80.04,0.0,75.97,80.735,61.9841,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.5666,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,4.1486,8.2105,0.0,0.0,45.3987,2.59,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.74,76.675,61.7825,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.9952,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,3.9019,8.2127,0.0,0.0,45.4587,1.989,9.02,45.46,1.99,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.46,9242.43,5629.6,70.68,1.0,70.68,79.74,79.74,0.0,61.27,1.0,61.27,79.74,79.74,0.0,75.68,80.709,61.7262,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.9642,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,3.8913,8.2105,0.0,0.0,45.3977,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,71.98,76.705,55.7868,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,49.459,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.8254,7.6254,8.212,0.0,0.0,14.5721,4.744,9.02,14.57,4.74,9.02,21.12,0.01,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.89,4150.17,5713.06,56.21,1.0,56.21,71.98,71.98,0.0,50.29,1.0,50.29,71.98,71.98,0.0,68.5,80.736,55.879,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,49.436,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.95,7.6004,8.2105,0.0,0.0,14.5531,4.745,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,67.29,76.713,52.163,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.329,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,19.0335,3.7936,8.212,0.0,0.0,14.2021,1.984,9.02,14.2,1.98,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.43,3901.99,5561.74,53.34,1.0,53.34,67.29,67.29,0.0,47.33,1.0,47.33,67.29,67.29,0.0,64.12,80.743,52.3189,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2062,3.7841,8.2105,0.0,0.0,14.1841,1.984,9.02,14.18,1.98,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,62.2,76.713,48.2163,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,43.504,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,15.6241,3.2563,8.212,0.0,0.0,11.6581,1.703,9.02,11.66,1.7,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,64.99,3652.46,5561.74,53.34,1.0,53.34,62.2,62.2,0.0,47.33,1.0,47.33,62.2,62.2,0.0,59.25,80.743,48.3408,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7642,3.2481,8.2105,0.0,0.0,11.6421,1.703,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-multiple.xml,95.45,76.6672,73.9189,77.4405,0.21186,0.9924,1.0,1.0178,1.0101,1.0,67.2124,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0658,2.1173,0.9896,7.7555,1.5750000000000002,1.087,37.7078,6.8751,8.212,0.0,0.0,43.7555,5.338,9.02,44.79,5.34,9.02,21.12,0.01,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,137.51,8586.44,6181.94,55.45,1.0,55.45,95.45,95.45,0.0,50.6,1.0,50.6,95.45,95.45,0.0,91.72,80.6852,74.7545,81.499,0.21186,0.9924,1.0,1.0178,1.0101,1.0,67.169,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1716,2.1097,0.9894,7.7555,1.5750000000000002,1.087,38.574600000000004,6.8505,8.2105,0.0,0.0,43.7029,5.339,9.02,44.71,5.34,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 +base-hvac-none.xml,91.9,66.748,64.3338,70.0006,0.18435,1.0328,1.0,1.0155,1.0487,1.0,45.185,0.0,0.0,0.0,42.2,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,44.7852,4.0346,0.0,0.0,0.0,24.9272,4.747,0.0,24.93,4.75,15.2,0.32,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.66,1.0,69.66,91.9,91.9,0.0,62.72,1.0,62.72,91.9,91.9,0.0,89.65,66.747,62.7564,69.9996,0.18435,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.2,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5238,4.0346,0.0,0.0,0.0,24.2412,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-programmable-thermostat.xml,75.43,76.706,58.4726,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.1466,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.1015,7.0423,8.2138,0.0,0.0,35.2104,4.354,9.022,37.96,4.35,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.47,8344.84,5561.74,56.72,1.0,56.72,75.43,75.43,0.0,51.05,1.0,51.05,75.43,75.43,0.0,71.21,80.735,58.0954,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.9078,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.9124,6.8627,8.2124,0.0,0.0,34.9015,4.259,9.022,37.63,4.26,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-electricity.xml,94.15,76.714,72.9836,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,61.821,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.2855,5.3622,8.212,0.0,0.0,28.5673,3.111,9.02,28.57,3.11,9.02,21.12,0.01,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.25,5273.33,5596.38,53.24,1.0,53.24,94.15,94.15,0.0,47.22,1.0,47.22,94.15,94.15,0.0,89.85,80.743,73.3078,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,61.777,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6305,5.3488,8.2105,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,72.39,76.7,56.1092,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,47.5376,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,22.1899,4.5833,8.212,0.0,0.0,35.3382,3.111,9.02,35.71,3.11,9.02,21.12,0.01,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.59,7951.28,5596.38,56.66,1.0,56.66,72.39,72.39,0.0,51.0,1.0,51.0,72.39,72.39,0.0,68.71,80.73,56.0559,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,22.1599,4.5674,8.2105,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac.xml,80.59,76.7,62.4648,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.1186,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,4.5833,8.212,0.0,0.0,45.4597,3.111,9.02,45.46,3.11,9.02,21.12,0.01,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.53,9323.31,5747.12,72.08,1.0,72.08,80.59,80.59,0.0,62.65,1.0,62.65,80.59,80.59,0.0,76.49,80.73,62.4029,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.0876,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,4.5674,8.2105,0.0,0.0,45.3987,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-pthp.xml,65.95,76.714,51.1245,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.536,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.585,5.2036,8.212,0.0,0.0,12.3751,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.33,3807.7,5596.38,53.24,1.0,53.24,65.95,65.95,0.0,47.22,1.0,47.22,65.95,65.95,0.0,62.82,80.743,51.2542,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.515,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.735,5.1906,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only-ceer.xml,82.13,76.7,63.6625,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.9306,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,5.7811,8.212,0.0,0.0,45.4597,3.924,9.02,45.46,3.92,9.02,21.12,0.01,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.53,9381.64,5747.12,72.08,1.0,72.08,82.13,82.13,0.0,62.65,1.0,62.65,82.13,82.13,0.0,77.95,80.73,63.5965,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.8996,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,5.761,8.2105,0.0,0.0,45.3987,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only.xml,82.12,76.7,63.6507,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.9236,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,5.7693,8.212,0.0,0.0,45.4597,3.916,9.02,45.46,3.92,9.02,21.12,0.01,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.52,9381.11,5747.12,72.08,1.0,72.08,82.12,82.12,0.0,62.65,1.0,62.65,82.12,82.12,0.0,77.94,80.73,63.5848,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.8926,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,5.7492,8.2105,0.0,0.0,45.3987,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-heating.xml,95.94,76.714,74.3711,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,62.627,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.2855,6.7497,8.212,0.0,0.0,28.5673,3.916,9.02,28.57,3.92,9.02,21.12,0.01,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.27,5331.14,5596.38,53.24,1.0,53.24,95.94,95.94,0.0,47.22,1.0,47.22,95.94,95.94,0.0,91.54,80.743,74.6918,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,62.582,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6305,6.7328,8.2105,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,65.95,76.714,51.1245,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.536,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.585,5.2036,8.212,0.0,0.0,12.3751,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.33,3807.7,5596.38,53.24,1.0,53.24,65.95,65.95,0.0,47.22,1.0,47.22,65.95,65.95,0.0,62.82,80.743,51.2542,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.515,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.735,5.1906,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-space-heater-gas-only.xml,68.19,76.705,52.8596,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,46.3148,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,15.8982,7.6254,8.212,0.0,0.0,25.3184,4.744,9.02,28.57,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.79,7031.78,5713.06,57.9,1.0,57.9,68.19,68.19,0.0,52.34,1.0,52.34,68.19,68.19,0.0,64.72,80.735,52.8059,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,46.2926,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,15.8769,7.6004,8.2105,0.0,0.0,25.2847,4.745,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-stove-wood-pellets-only.xml,76.29,76.705,59.1345,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.2246,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1731,7.6254,8.212,0.0,0.0,35.3115,4.744,9.02,35.68,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.29,76.29,0.0,52.34,1.0,52.34,76.29,76.29,0.0,72.4,80.735,59.0727,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1998,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1438,7.6004,8.2105,0.0,0.0,35.2649,4.745,9.02,35.64,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-undersized.xml,73.25,76.706,56.7812,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9554,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,20.4741,6.9711,8.212,0.0,0.0,32.6177,4.31,9.02,35.16,4.31,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,141.05,7927.91,5561.74,56.72,1.0,56.72,73.25,73.25,0.0,51.05,1.0,51.05,73.25,73.25,0.0,69.53,80.735,56.7285,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9298,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,20.4535,6.9465,8.2105,0.0,0.0,32.5779,4.311,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-wall-furnace-elec-only.xml,96.28,76.705,74.62,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,64.038,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,37.6586,7.6254,8.212,0.0,0.0,29.1503,4.744,9.02,29.15,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.56,5458.51,5713.06,56.21,1.0,56.21,96.28,96.28,0.0,50.29,1.0,50.29,96.28,96.28,0.0,91.73,80.736,74.8355,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.993,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.9065,7.6004,8.2105,0.0,0.0,29.1113,4.745,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans.xml,77.58,77.13,60.4656,77.9359,0.21942,0.9922,1.0,1.0184,1.0104,1.0,51.7024,0.0,0.0,30.55,8.12,10.49,48.66,5.05,11.52,27.98,0.0,0.0,0.8047,0.4219,0.9899,1.2821,0.2625,1.087,23.1042,7.4934,8.213,0.0,0.0,36.8087,4.663,9.018,39.68,4.66,9.02,21.65,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.62,8660.53,5615.97,56.73,1.0,56.73,77.58,77.58,0.0,51.12,1.0,51.12,77.58,77.58,0.0,73.67,81.143,60.4047,81.9908,0.21942,0.9922,1.0,1.0184,1.0104,1.0,51.6754,0.0,0.0,34.64,8.04,10.49,55.18,5.02,11.52,27.97,0.0,0.0,0.8049,0.4202,0.9897,1.2821,0.2625,1.087,23.08,7.4649,8.2109,0.0,0.0,36.7623,4.664,9.018,39.63,4.66,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-baltimore-md.xml,70.86,60.303,45.8505,64.7074,0.27314,1.0489,1.0,1.023,1.073,1.0,39.0758,0.0,0.0,20.97,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.801,0.4194,0.9661,1.2821,0.2625,1.087,11.9865,10.9705,7.5636,0.0,0.0,19.1859,6.8681,8.51,20.68,6.87,8.51,15.01,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.44,9324.12,11673.86,51.47,1.0,51.47,70.86,70.86,0.0,49.06,1.0,49.06,70.86,70.86,0.0,66.95,61.054,43.8591,65.5133,0.27314,1.0489,1.0,1.023,1.073,1.0,37.6598,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4155,0.9661,1.2821,0.2625,1.087,10.6427,10.6321,7.5653,0.0,0.0,17.0329,6.7181,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-capetown-zaf.xml,78.2,36.331,29.7351,38.0233,0.1764,1.0313,1.0,1.0148,1.0466,1.0,27.1984,0.0,0.0,4.32,4.48,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8009,0.4831,0.9591,1.2821,0.2625,1.087,0.6879,7.0269,6.6293,0.0,0.0,1.1011,3.819,7.513,1.19,3.82,7.51,15.07,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.33,1.0,50.33,78.2,78.2,0.0,48.06,1.0,48.06,78.2,78.2,0.0,77.17,36.62,29.5776,38.3257,0.1764,1.0313,1.0,1.0148,1.0466,1.0,26.9616,0.0,0.0,4.75,4.35,8.36,7.61,2.37,9.47,19.17,0.0,0.0,0.8008,0.4806,0.959,1.2821,0.2625,1.087,0.4682,7.3978,6.6286,0.0,0.0,0.7495,4.041,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-dallas-tx.xml,68.73,63.068,46.5282,67.6928,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.3576,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8002,0.4431,0.9612,1.2821,0.2625,1.087,3.0322,22.152,5.9369,0.0,0.0,4.8579,13.1261,6.714,5.24,13.13,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.42,5970.93,7577.46,47.26,1.0,47.26,68.73,68.73,0.0,44.31,1.0,44.31,68.73,68.73,0.0,65.87,63.657,45.0065,68.325,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.3958,0.0,0.0,10.41,26.51,7.52,16.68,15.85,8.5,19.22,0.0,0.0,0.8003,0.4391,0.961,1.2821,0.2625,1.087,2.5599,21.4162,5.9354,0.0,0.0,4.101,12.8061,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,75.46,79.013,63.7077,84.4246,0.25668,1.0459,1.0,1.0216,1.0685,1.0,54.1566,0.0,0.0,45.93,1.75,13.08,73.17,1.97,14.52,18.26,0.0,0.0,0.8047,0.2328,0.9791,1.2821,0.2625,1.087,36.7573,2.0328,10.2876,0.0,0.0,58.5622,2.292,11.421,63.13,2.29,11.42,14.31,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,168.78,11371.7,6305.71,54.11,1.0,54.11,75.46,75.46,0.0,58.76,1.0,58.76,75.46,75.46,0.0,67.45,83.952,60.5013,89.7019,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8846,0.0,0.0,51.02,1.6,13.08,81.28,1.91,14.52,18.26,0.0,0.0,0.8047,0.2195,0.9791,1.2821,0.2625,1.087,33.9367,1.9701,10.2885,0.0,0.0,54.067,2.356,11.422,58.29,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-helena-mt.xml,77.53,92.35,72.357,93.3324,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.268,0.0,0.0,49.58,3.69,11.89,78.97,2.67,12.94,27.19,0.0,0.0,0.8049,0.3634,0.9988,1.2821,0.2625,1.087,38.5757,3.3482,9.3421,0.0,0.0,61.4415,2.419,10.167,66.24,2.42,10.17,21.08,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,200.69,11832.58,5833.99,58.05,1.0,58.05,77.53,77.53,0.0,51.12,1.0,51.12,77.53,77.53,0.0,72.21,98.963,72.2247,100.0158,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2334,0.0,0.0,56.4,3.49,11.89,89.83,2.59,12.95,27.18,0.0,0.0,0.8049,0.3542,0.9985,1.2821,0.2625,1.087,38.5357,3.264,9.34,0.0,0.0,61.3766,2.419,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-honolulu-hi.xml,80.94,66.75,56.6482,69.9903,0.18367,1.0326,1.0,1.0154,1.0485,1.0,40.728,0.0,0.0,0.0,42.21,5.18,0.0,23.29,6.1,19.36,0.0,0.0,0.0,0.4758,0.9238,1.2821,0.2625,1.087,0.0,37.0996,4.0346,0.0,0.0,0.0,20.4692,4.747,0.0,20.47,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,62.72,1.0,62.72,80.94,80.94,0.0,41.45,1.0,41.45,80.94,80.94,0.0,79.06,66.75,55.3341,69.9903,0.18367,1.0326,1.0,1.0154,1.0485,1.0,39.875,0.0,0.0,0.0,42.21,5.18,0.0,23.3,6.1,19.36,0.0,0.0,0.0,0.4755,0.9238,1.2821,0.2625,1.087,0.0,36.1015,4.0346,0.0,0.0,0.0,19.9322,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-miami-fl.xml,77.74,65.358,53.5603,68.9004,0.20451,1.0364,1.0,1.0172,1.0542,1.0,40.1232,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4508,0.9264,1.2821,0.2625,1.087,0.0018,33.9001,4.1565,0.0,0.0,0.0028,19.7442,4.877,0.0,19.74,4.88,15.18,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.03,5928.43,7300.71,63.51,1.0,63.51,77.74,77.74,0.0,43.47,1.0,43.47,77.74,77.74,0.0,75.57,65.357,52.0678,68.8994,0.20451,1.0364,1.0,1.0172,1.0542,1.0,39.12,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.793,0.4508,0.9264,1.2821,0.2625,1.087,0.0,32.7253,4.1565,0.0,0.0,0.0,19.0592,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-phoenix-az.xml,70.82,77.854,59.3386,83.7928,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.961,0.0,0.0,1.43,51.54,5.6,2.29,29.19,6.55,19.29,0.0,0.0,0.8003,0.4636,0.9289,1.2821,0.2625,1.087,0.1048,39.3992,4.3635,0.0,0.0,0.1679,22.3142,5.106,0.18,22.31,5.11,15.15,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,71.37,4815.06,6268.5,49.1,1.0,49.1,70.82,70.82,0.0,44.74,1.0,44.74,70.82,70.82,0.0,69.61,77.931,58.3817,83.8756,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2858,0.0,0.0,1.46,51.59,5.6,2.33,29.23,6.55,19.28,0.0,0.0,0.8003,0.4634,0.9289,1.2821,0.2625,1.087,0.0591,38.8011,4.3635,0.0,0.0,0.0946,21.9822,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-portland-or.xml,77.63,46.214,37.6741,48.5325,0.18967,1.0337,1.0,1.0159,1.0502,1.0,34.3636,0.0,0.0,13.7,3.43,9.97,21.93,2.46,11.25,19.11,0.0,0.0,0.8007,0.3657,0.9636,1.2821,0.2625,1.087,10.6606,3.8113,7.9182,0.0,0.0,17.0691,2.736,8.932,18.4,2.74,8.93,14.97,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.06,4441.13,2895.35,66.27,1.0,66.27,77.63,77.63,0.0,50.06,1.0,50.06,77.63,77.63,0.0,73.35,46.983,36.1906,49.3401,0.18967,1.0337,1.0,1.0159,1.0502,1.0,33.2614,0.0,0.0,14.54,3.36,9.97,23.28,2.43,11.25,19.11,0.0,0.0,0.8007,0.3628,0.9636,1.2821,0.2625,1.087,9.4187,3.8788,7.9191,0.0,0.0,15.0812,2.807,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-balanced.xml,81.81,78.061,64.5327,78.8851,0.22168,0.9921,1.0,1.0186,1.0106,1.0,54.7522,0.0,0.0,30.16,8.6,10.49,48.06,5.3,11.52,27.23,1.58,0.0,0.8047,0.4265,0.9897,1.2821,0.2625,1.087,25.3971,8.016,8.2136,0.0,0.0,40.4617,4.934,9.021,43.62,4.93,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.24,9364.85,5677.07,56.72,1.0,56.72,81.81,81.81,0.0,51.05,1.0,51.05,81.81,81.81,0.0,77.77,82.076,64.5071,82.9424,0.22168,0.9921,1.0,1.0186,1.0106,1.0,54.7522,0.0,0.0,34.25,8.54,10.49,54.55,5.28,11.52,27.22,1.58,0.0,0.8049,0.4249,0.9895,1.2821,0.2625,1.087,25.4028,7.9861,8.2122,0.0,0.0,40.4617,4.934,9.021,43.62,4.93,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,78.55,77.62,61.6153,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.644,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.3529,8.1594,8.212,0.0,0.0,35.6121,5.03,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.06,8608.94,5639.55,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,74.67,81.621,61.589,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.644,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.3581,8.1294,8.2105,0.0,0.0,35.6121,5.03,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,75.66,77.62,59.3481,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.693,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,21.6018,7.9193,8.212,0.0,0.0,34.4155,4.882,9.02,37.1,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.71,8304.25,5639.55,56.72,1.0,56.72,75.66,75.66,0.0,51.05,1.0,51.05,75.66,75.66,0.0,71.58,81.621,59.0442,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.4986,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,21.3255,7.8902,8.2105,0.0,0.0,33.9674,4.882,9.02,36.62,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis.xml,79.4,77.62,62.283,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.1036,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,23.0557,8.1594,8.212,0.0,0.0,36.7317,5.03,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.09,8781.81,5639.55,56.72,1.0,56.72,79.4,79.4,0.0,51.05,1.0,51.05,79.4,79.4,0.0,75.48,81.621,62.2569,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.1036,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,23.061,8.1294,8.2105,0.0,0.0,36.7317,5.03,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv-atre-asre.xml,70.98,78.642,56.4065,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9858,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9852,8.2923,8.2099,0.0,0.0,27.0604,5.094,9.017,29.17,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7266.94,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3791,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9858,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9892,8.2624,8.2085,0.0,0.0,27.0604,5.094,9.017,29.17,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv.xml,70.98,78.642,56.4082,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.987,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.987,8.2923,8.2099,0.0,0.0,27.0632,5.094,9.017,29.18,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.42,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3808,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.987,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.991,8.2624,8.2085,0.0,0.0,27.0632,5.094,9.017,29.18,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-exhaust.xml,77.8,77.62,61.022,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.987,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.8787,7.9193,8.212,0.0,0.0,36.4497,4.882,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.92,8658.3,5639.55,56.72,1.0,56.72,77.8,77.8,0.0,51.05,1.0,51.05,77.8,77.8,0.0,73.95,81.621,60.9967,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.987,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.884,7.8902,8.2105,0.0,0.0,36.4497,4.882,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv-asre.xml,70.98,78.642,56.4085,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.988,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9841,8.2955,8.2099,0.0,0.0,27.0585,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7266.97,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3812,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.988,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9881,8.2656,8.2085,0.0,0.0,27.0585,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv.xml,70.98,78.642,56.4109,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9896,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9864,8.2955,8.2099,0.0,0.0,27.0623,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.45,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3835,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9896,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9904,8.2656,8.2085,0.0,0.0,27.0623,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-multiple.xml,81.94,78.274,64.8142,79.1007,0.22179,0.9921,1.0,1.0186,1.0106,1.0,55.6142,0.0,0.0,30.1,8.64,10.49,47.96,6.2,11.52,27.23,1.83,0.0,1.6094,0.7309,0.9897,2.5642,0.525,1.087,25.375500000000002,8.6292,8.2145,0.0,0.0,40.428200000000004,6.199,9.022,43.58,5.78,9.02,21.11,1.49,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,162.83,9447.68,5741.7,57.45,1.0,57.45,81.94,81.94,0.0,51.79,1.0,51.79,81.94,81.94,0.0,77.27,82.245,64.2223,83.1137,0.22179,0.9921,1.0,1.0186,1.0106,1.0,55.2108,0.0,0.0,34.2,8.56,10.49,54.47,6.18,11.52,27.22,1.78,0.0,1.6098,0.7278,0.9895,2.5642,0.525,1.087,24.9028,8.5434,8.2131,0.0,0.0,39.6667,6.164,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 +base-mechvent-supply.xml,77.54,77.62,60.8185,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.5136,8.0799,8.212,0.0,0.0,35.8681,4.981,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.44,8573.52,5639.55,56.72,1.0,56.72,77.54,77.54,0.0,51.05,1.0,51.05,77.54,77.54,0.0,73.7,81.621,60.7925,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.5188,8.0502,8.2105,0.0,0.0,35.8681,4.981,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-whole-house-fan.xml,76.2,76.706,59.0697,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.6118,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.195,6.5522,8.2165,0.0,0.0,36.9525,4.051,9.025,39.84,3.4,9.03,21.1,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.97,8597.82,5561.74,56.72,1.0,56.72,76.2,76.2,0.0,51.05,1.0,51.05,76.2,76.2,0.0,72.33,80.735,59.0114,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.1704,6.5259,8.2151,0.0,0.0,36.9052,4.05,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-misc-generators.xml,76.04,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.9761,58.2236,1.389,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,193.35,10867.18,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,72.17,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9761,58.1966,1.389,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv-battery.xml,39.05,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.5013,52.2516,26.886,0.828,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,119.13,6695.48,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,68.56,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9273,51.3966,3.7347,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv.xml,37.17,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.4772,51.4236,26.886,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.28,6816.69,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,68.56,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9273,51.3966,3.7347,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-co2-2019ABCD.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.62,8633.97,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014.xml,77.97,79.846,62.2571,,,,,,,1.0,52.8762,0.0,0.0,31.91,8.42,11.44,50.77,4.34,12.37,28.08,0.0,0.0,0.8058,0.5097,1.0049,1.2821,0.2625,1.087,22.3565,7.7289,10.6197,0.0,0.0,35.5685,3.981,11.487,38.34,3.98,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014A.xml,75.43,78.76,59.4082,,,,,,,1.0,49.932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.3338,7.7436,7.7788,0.0,0.0,35.5323,3.986,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AE.xml,74.55,78.76,59.4082,79.684,0.2462,0.9912,1.0,1.0207,1.0117,1.0,49.932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.3338,7.7436,7.7788,0.0,0.0,35.5323,3.986,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AEG.xml,73.9,78.76,58.8974,79.6995,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.5775,7.6581,7.7788,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019.xml,75.22,77.425,58.8473,78.2333,0.21924,0.9922,1.0,1.0184,1.0104,1.0,49.3916,0.0,0.0,30.51,8.46,10.38,48.53,4.38,11.41,28.08,0.0,0.0,0.8058,0.5067,0.9887,1.2821,0.2625,1.087,22.5768,7.608,7.7795,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019A.xml,76.77,76.708,59.5087,77.5167,0.22139,0.9921,1.0,1.0186,1.0105,1.0,50.09,0.0,0.0,30.56,8.43,10.49,48.62,4.37,11.52,27.23,0.0,0.0,0.8058,0.5065,0.9896,1.2821,0.2625,1.087,22.5723,7.6064,8.212,0.0,0.0,35.9117,3.943,9.02,38.71,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019AB.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABC.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABCD.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022C.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.9,78.76,58.8974,79.6995,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.5775,7.6581,7.7788,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.42,81.454,58.8698,82.4256,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,34.6,8.4,10.38,55.05,4.34,11.41,28.08,0.0,0.0,0.8059,0.5082,0.9885,1.2821,0.2625,1.087,22.5782,7.6305,7.7781,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 From aaf1a634d60b29f0fcff2360d6901c56f243067d Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 5 Mar 2024 21:59:45 -0700 Subject: [PATCH 25/35] Squashed 'hpxml-measures/' changes from b651b6900d..f88480c299 f88480c299 Latest results. 2e37ac4454 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow b10fd27d1e Latest results. 1a02a94d30 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 6050925349 Latest results. 5ff6774afa Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 45cdd444fd Latest results. 6d6d0177e0 Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow dc687d155e Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 6be89690f6 Expose WithinInfiltrationVolume inputs for some attic/foundation types. d42c040f55 Minor refactoring. 46fe162b76 Merge branch 'ansi_301_2022_airflow' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow 1092b38dee Handle case where Qinf > Qtot. 8db9c4dd9c Latest results. fbf067fdcb Fix assert_in_epsilon tests. c3c95819d2 Simplify code. 9dabadd9b4 Update Changelog.md [ci skip] 1115e941ee Fix typo in docs. b704b1968c Merge branch 'ansi_301_2022' of https://github.com/NREL/OpenStudio-HPXML into ansi_301_2022_airflow d60d17e34b Updates equations for Qfan and hourly combining of infiltration/ventilation. git-subtree-dir: hpxml-measures git-subtree-split: f88480c29951a2f9bd4fe705fd92509a45cb6781 --- Changelog.md | 2 + HPXMLtoOpenStudio/measure.xml | 16 ++-- HPXMLtoOpenStudio/resources/airflow.rb | 91 +++++++++++++------ HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 64 ++++++++----- .../hpxml_schematron/EPvalidator.xml | 27 +++++- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 ++-- docs/source/workflow_inputs.rst | 60 +++++++----- .../tests/base_results/results_sizing.csv | 26 +++--- .../results_workflow_simulations1.csv | 36 ++++---- .../results_workflow_simulations1_bills.csv | 26 +++--- .../results_workflow_simulations2.csv | 56 ++++++------ .../results_workflow_simulations2_bills.csv | 52 +++++------ 14 files changed, 289 insertions(+), 193 deletions(-) diff --git a/Changelog.md b/Changelog.md index dd1e31d1e..d0a3e3272 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,8 @@ __New Features__ - Adds schedule inputs for hot water recirculation pumps and general water use internal gains. - Updated water heater installation location defaulting to match ANSI 301-2022 - Updated calculation of hot water piping length for buildings with both conditioned and unconditioned basements to avoid double counting. + - Updates how imbalanced infiltration and mechanical ventilation are combined on an hourly basis. + - Small change to default flow rate for imbalanced mechanical ventilation systems. - `AverageCeilingHeight` now used in natural ACH/CFM infiltration calculations. - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - **Breaking change**: Modeling whole SFA/MF buildings is now specified using a `SoftwareInfo/extension/WholeSFAorMFBuildingSimulation=true` element instead of `building-id=ALL` argument. diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 17d604847..6639ffbb1 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - abc7b14e-b976-4545-85fa-5dc38c652087 - 2024-03-05T21:31:00Z + 73a60fd3-fafd-41d8-a5eb-f95cb12f6cfe + 2024-03-06T01:32:05Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ airflow.rb rb resource - 57F45E12 + FEDFA435 battery.rb @@ -304,13 +304,13 @@ hpxml.rb rb resource - 8CC9070B + 758D1948 hpxml_defaults.rb rb resource - 6EF6A922 + F5FE95AC hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - DE09AAEE + 1407BC14 hpxml_schematron/iso-schematron.xsd @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - 6D041214 + 903730A2 lighting.rb @@ -598,7 +598,7 @@ test_defaults.rb rb test - 19A04DB8 + C0F759DF test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 7a3724497..9b83c098c 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -103,19 +103,22 @@ def self.apply(model, runner, weather, spaces, hpxml_header, hpxml_bldg, cfa, nb vented_attic = hpxml_bldg.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } vented_crawl = hpxml_bldg.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - _, conditioned_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) if @apply_ashrae140_assumptions - conditioned_const_ach = nach + conditioned_const_ach = infil_values[:nach] conditioned_ach50 = nil + else + conditioned_ach50 = infil_values[:ach50] + conditioned_const_ach = nil end - conditioned_const_ach *= a_ext unless conditioned_const_ach.nil? - conditioned_ach50 *= a_ext unless conditioned_ach50.nil? + conditioned_const_ach *= infil_values[:a_ext] unless conditioned_const_ach.nil? + conditioned_ach50 *= infil_values[:a_ext] unless conditioned_ach50.nil? has_flue_chimney_in_cond_space = hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space apply_natural_ventilation_and_whole_house_fan(model, hpxml_bldg.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml_bldg.header.natvent_days_per_week, - infil_volume, infil_height, unavailable_periods) + infil_values[:volume], infil_values[:height], unavailable_periods) apply_infiltration_and_ventilation_fans(model, weather, hpxml_bldg.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_values[:volume], infil_values[:height], vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods, hpxml_bldg.elevation) end @@ -215,31 +218,23 @@ def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) end a_ext = 1.0 if a_ext.nil? - return sla, ach50, nach, infil_volume, infil_height, a_ext + return { sla: sla, ach50: ach50, nach: nach, volume: infil_volume, height: infil_height, a_ext: a_ext } end - def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) - # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 - sla, _, _, _, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version) + # Calculates Qfan cfm requirement per ASHRAE 62.2 / ANSI 301 + infil_values = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + bldg_type = hpxml_bldg.building_construction.residential_facility_type - nl = get_infiltration_NL_from_SLA(sla, infil_height) + nl = get_infiltration_NL_from_SLA(infil_values[:sla], infil_values[:height]) q_inf = get_infiltration_Qinf_from_NL(nl, weather, cfa) - q_tot = get_mech_vent_qtot_cfm(nbeds, cfa) - if vent_fan.is_balanced? - phi = 1.0 + is_balanced, frac_imbal = true, 0.0 else - phi = q_inf / q_tot + is_balanced, frac_imbal = false, 1.0 end - q_fan = q_tot - phi * (q_inf * a_ext) - q_fan = [q_fan, 0].max - - if not vent_fan.hours_in_operation.nil? - # Convert from hourly average requirement to actual fan flow rate - q_fan *= 24.0 / vent_fan.hours_in_operation - end - + q_fan = get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, infil_values[:a_ext], bldg_type, eri_version, vent_fan.hours_in_operation) return q_fan end @@ -1634,7 +1629,10 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') - if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') + if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') + infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') + infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') # Balanced system if the total supply airflow and total exhaust airflow are within 10% of their average. @@ -2018,12 +2016,12 @@ def self.get_infiltration_SLA_from_ACH(ach, infil_height, avg_ceiling_height, we def self.get_infiltration_SLA_from_ACH50(ach50, n_i, floor_area, volume) # Returns the infiltration SLA given a ACH50. - return ((ach50 * 0.283316478 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) + return ((ach50 * 0.283316 * 4.0**n_i * volume) / (floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0)) end def self.get_infiltration_ACH50_from_SLA(sla, n_i, floor_area, volume) # Returns the infiltration ACH50 given a SLA. - return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316478 * 4.0**n_i * volume)) + return ((sla * floor_area * UnitConversions.convert(1.0, 'ft^2', 'in^2') * 50.0**n_i * 60.0) / (0.283316 * 4.0**n_i * volume)) end def self.get_infiltration_Qinf_from_NL(nl, weather, cfa) @@ -2103,6 +2101,47 @@ def self.get_mech_vent_qtot_cfm(nbeds, cfa) # Returns Qtot cfm per ASHRAE 62.2-2019 return (nbeds + 1.0) * 7.5 + 0.03 * cfa end + + def self.get_mech_vent_qfan_cfm(q_tot, q_inf, is_balanced, frac_imbal, a_ext, bldg_type, eri_version, hours_in_operation) + q_inf_eff = q_inf * a_ext + if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2022') + if frac_imbal == 0 + q_fan = q_tot - q_inf_eff + else + q_inf_eff = q_inf * a_ext + if q_inf_eff >= q_tot + q_fan = 0.0 + else + q_fan = ((frac_imbal**2.0 * q_tot**2.0 - 4.0 * frac_imbal * q_inf_eff**2.0 + 2.0 * frac_imbal * q_inf_eff * q_tot + q_inf_eff**2.0)**0.5 + frac_imbal * q_tot - q_inf_eff) / (2.0 * frac_imbal) + end + end + elsif Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019') + if is_balanced + phi = 1.0 + else + phi = q_inf / q_tot + end + q_fan = q_tot - phi * q_inf_eff + else + if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? bldg_type + # No infiltration credit for attached/multifamily + return q_tot + end + + if q_inf > 2.0 / 3.0 * q_tot + q_fan = q_tot - 2.0 / 3.0 * q_tot + else + q_fan = q_tot - q_inf + end + end + + # Convert from hourly average requirement to actual fan flow rate + if not hours_in_operation.nil? + q_fan *= 24.0 / hours_in_operation + end + + return [q_fan, 0.0].max + end end class Duct diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index eaab31885..a499eff98 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -2344,7 +2344,7 @@ def to_doc(building) fail "Unhandled attic type '#{@attic_type}'." end end - XMLHelper.add_element(attic, 'WithinInfiltrationVolume', within_infiltration_volume, :boolean) unless @within_infiltration_volume.nil? + XMLHelper.add_element(attic, 'WithinInfiltrationVolume', @within_infiltration_volume, :boolean, @within_infiltration_volume_isdefaulted) unless @within_infiltration_volume.nil? if not @attached_to_roof_idrefs.nil? @attached_to_roof_idrefs.each do |roof| roof_attached = XMLHelper.add_element(attic, 'AttachedToRoof') diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index fb3c47af6..2c60279ad 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -28,9 +28,9 @@ def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, s apply_building_occupancy(hpxml_bldg, schedules_file) apply_building_construction(hpxml_bldg, cfa, nbeds) apply_climate_and_risk_zones(hpxml_bldg, epw_file) - apply_infiltration(hpxml_bldg) apply_attics(hpxml_bldg) apply_foundations(hpxml_bldg) + apply_infiltration(hpxml_bldg) apply_roofs(hpxml_bldg) apply_rim_joists(hpxml_bldg) apply_walls(hpxml_bldg) @@ -699,27 +699,16 @@ def self.apply_climate_and_risk_zones(hpxml_bldg, epw_file) end end - def self.apply_infiltration(hpxml_bldg) - infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) - if infil_measurement.infiltration_volume.nil? - infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - infil_measurement.infiltration_volume_isdefaulted = true - end - if infil_measurement.infiltration_height.nil? - infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) - infil_measurement.infiltration_height_isdefaulted = true - end - if infil_measurement.a_ext.nil? - if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && - [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) - tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() - infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) - infil_measurement.a_ext_isdefaulted = true + def self.apply_attics(hpxml_bldg) + hpxml_bldg.attics.each do |attic| + next unless attic.within_infiltration_volume.nil? + + if [HPXML::AtticTypeUnvented].include? attic.attic_type + attic.within_infiltration_volume = false + attic.within_infiltration_volume_isdefaulted = true end end - end - def self.apply_attics(hpxml_bldg) return unless hpxml_bldg.has_location(HPXML::LocationAtticVented) vented_attics = hpxml_bldg.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } @@ -738,6 +727,16 @@ def self.apply_attics(hpxml_bldg) end def self.apply_foundations(hpxml_bldg) + hpxml_bldg.foundations.each do |foundation| + next unless foundation.within_infiltration_volume.nil? + + next unless [HPXML::FoundationTypeBasementUnconditioned, + HPXML::FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type + + foundation.within_infiltration_volume = false + foundation.within_infiltration_volume_isdefaulted = true + end + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceVented) vented_crawls = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } if vented_crawls.empty? @@ -771,6 +770,26 @@ def self.apply_foundations(hpxml_bldg) end end + def self.apply_infiltration(hpxml_bldg) + infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) + if infil_measurement.infiltration_volume.nil? + infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + infil_measurement.infiltration_volume_isdefaulted = true + end + if infil_measurement.infiltration_height.nil? + infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) + infil_measurement.infiltration_height_isdefaulted = true + end + if infil_measurement.a_ext.nil? + if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && + [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) + tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() + infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) + infil_measurement.a_ext_isdefaulted = true + end + end + end + def self.apply_roofs(hpxml_bldg) hpxml_bldg.roofs.each do |roof| if roof.azimuth.nil? @@ -2052,18 +2071,21 @@ def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds, eri_version) vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end - if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? + + if vent_fan.flow_rate.nil? if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds, eri_version).round(1) vent_fan.rated_flow_rate_isdefaulted = true end + if vent_fan.fan_power.nil? vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan, eri_version)).round(1) vent_fan.fan_power_isdefaulted = true diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 3eac4d427..334f11e39 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -463,7 +463,7 @@ [Roof] - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation @@ -486,7 +486,14 @@ Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate[UnitofMeasure="SLA" or UnitofMeasure="ACHnatural"]/Value - + + + [RoofType=AdjacentToUnventedAttic] + + Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="false"]]/WithinInfiltrationVolume + + + [Roof_RadiantBarrier] @@ -545,7 +552,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'ground' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - Expected 1 element(s) for xpath: InteriorAdjacentTo + Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 0 or 1 element(s) for xpath: Type Expected Type to be 'solid concrete' or 'concrete block' or 'concrete block foam core' or 'concrete block vermiculite core' or 'concrete block perlite core' or 'concrete block solid core' or 'double brick' or 'wood' @@ -575,6 +582,20 @@ + + [FoundationWallType=AdjacentToUnventedCrawl] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Crawlspace[Vented="false"]]/WithinInfiltrationVolume + + + + + [FoundationWallType=AdjacentToUncondBasement] + + Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Basement[Conditioned="false"]]/WithinInfiltrationVolume + + + [FoundationWallInsulationLayer] diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 5ce1a1e69..c46cade9d 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -951,8 +951,8 @@ def self.process_load_infiltration_ventilation(mj, bldg_design_loads, weather) Heating and Cooling Loads: Infiltration & Ventilation ''' - sla, _, _, _, _, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) - sla *= a_ext + infil_values = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) + sla = infil_values[:sla] * infil_values[:a_ext] ela = sla * @cfa ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index a5c2e1f05..019a243a2 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -2505,7 +2505,7 @@ def test_mech_ventilation_fans vent_fan.delivered_ventilation = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ SFA building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') @@ -2515,13 +2515,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 28.0, 80.0) # Test defaults w/ SFA building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.5, 78.5) # Test defaults w/ MF building, compartmentalization test hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') @@ -2531,13 +2531,13 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.9) # Test defaults w/ MF building, guarded test hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.3, 55.2) # Test defaults w/ nACH infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') @@ -2546,7 +2546,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 22.5, 64.3) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 26.6, 76.0) # Test defaults w/ CFM50 infiltration hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') @@ -2555,7 +2555,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 35.6, 101.8) # Test defaults w/ balanced system hpxml, hpxml_bldg = _create_hpxml('base.xml') @@ -2573,7 +2573,7 @@ def test_mech_ventilation_fans used_for_whole_building_ventilation: true) XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.2) + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 29.9, 85.5) # Test inputs not overridden by defaults w/ CFIS hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') @@ -2603,7 +2603,7 @@ def test_mech_ventilation_fans suppl_vent_fan.fan_power = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.6, 101.8) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2614,7 +2614,7 @@ def test_mech_ventilation_fans vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 173.3, 298.8, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 177.1, 305.4, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 6c5fee2b2..eef8716a8 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2972,20 +2972,22 @@ Each exhaust only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/ .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3010,20 +3012,22 @@ Each supply only fan is entered as a ``/HPXML/Building/BuildingDetails/Systems/M .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a :ref:`vent_fan_cfis` system, in which case it is not allowed because the runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults to 0.35 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3048,20 +3052,22 @@ Each balanced (supply and exhaust) fan is entered as a ``/HPXML/Building/Buildin .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] If FanPower not provided, defaults to 0.7 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. .. _vent_fan_hrv: @@ -3086,20 +3092,22 @@ Each heat recovery ventilator (HRV) is entered as a ``/HPXML/Building/BuildingDe .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3126,20 +3134,22 @@ Each energy recovery ventilator (ERV) is entered as a ``/HPXML/Building/Building .. [#] All other UsedFor... elements (i.e., ``UsedForLocalVentilation``, ``UsedForSeasonalCoolingLoadReduction``, ``UsedForGarageVentilation``) must be omitted or false. .. [#] Additional inputs for shared systems are described in :ref:`vent_fan_shared`. - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = Qtot - Qinf_eff where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] Providing AdjustedTotalRecoveryEfficiency (ATRE) is preferable to TotalRecoveryEfficiency (TRE). .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE). .. [#] If FanPower not provided, defaults to 1.0 W/cfm based on `ANSI/RESNET/ICC 301-2019 `_. @@ -3170,20 +3180,22 @@ Each central fan integrated supply (CFIS) system is entered as a ``/HPXML/Buildi .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". .. [#] SupplementalFan must reference another ``VentilationFan`` where UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". - .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per ANSI/RESNET/ICC 301-2022: - Qfan = Qtot - (Qinf/Qtot) * (Qinf * Aext) + Qfan = required mechanical ventilation rate (cfm) = ((Qtot^2 – 4*Qinf_eff^2 + 2*Qinf_eff*Qtot + Qinf_eff^2)^0.5 + Qtot - Qinf_eff) / 2 where - Qfan = required mechanical ventilation rate (cfm) - Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + Qinf_eff = Qinf * Aext + Qinf = infiltration rate (cfm) Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + OpenStudio-HPXML does not currently support defaulting flow rates for multiple mechanical ventilation fans. + .. [#] The flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] The HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). .. [#] If FanPower not provided, defaults to 0.58 W/cfm based on ANSI/RESNET/ICC 301-2022 Addendum C. diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 1654c9e3e..7ea445b70 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -174,8 +174,8 @@ denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodo denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA-backup-supplemental.xml,29348.0,30425.0,19255.0,694.0,949.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-emergency.xml,35661.0,36968.0,31615.0,844.0,1153.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,35661.0,36968.0,16597.0,844.0,1153.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,75070.0,77823.0,31615.0,1776.0,2427.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,75070.0,77823.0,0.0,1776.0,2427.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,75070.0,77822.0,31615.0,1776.0,2427.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,75070.0,77822.0,0.0,1776.0,2427.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,31385.0,32692.0,31615.0,742.0,1020.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,31385.0,32692.0,13928.0,742.0,1020.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,35717.0,37204.0,31615.0,845.0,1160.0 @@ -192,7 +192,7 @@ denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology- denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,35698.0,37390.0,31615.0,844.0,1166.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,40534.0,42456.0,31615.0,959.0,1324.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,40534.0,42456.0,31615.0,959.0,1324.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20492.0,0.0,0.0,639.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20494.0,0.0,0.0,639.0 denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,25147.0,26194.0,26641.0,595.0,817.0 denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25147.0,26194.0,12469.0,595.0,817.0 denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,30097.0,31348.0,26641.0,712.0,978.0 @@ -465,15 +465,15 @@ houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-method houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS-backup-supplemental.xml,31142.0,29606.0,0.0,608.0,923.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-emergency.xml,37414.0,35569.0,20318.0,731.0,1109.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,37414.0,35569.0,0.0,731.0,1109.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30112.0,28790.0,20318.0,588.0,898.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30112.0,28790.0,0.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,30112.0,28788.0,20318.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,30112.0,28788.0,0.0,588.0,898.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31163.0,29795.0,20318.0,609.0,929.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-supplemental.xml,31163.0,29795.0,0.0,609.0,929.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-emergency.xml,35714.0,34144.0,20318.0,698.0,1065.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad-backup-supplemental.xml,35714.0,34144.0,0.0,698.0,1065.0 houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21542.0,31858.0,0.0,295.0,994.0 houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21542.0,31955.0,0.0,295.0,997.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21542.0,28790.0,0.0,295.0,898.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21542.0,28788.0,0.0,295.0,898.0 houston-hvac-autosize-install-quality-furnace-gas-only.xml,21542.0,0.0,0.0,295.0,0.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-emergency.xml,40850.0,39327.0,20318.0,798.0,819.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA-backup-supplemental.xml,40850.0,39327.0,20318.0,798.0,819.0 @@ -481,13 +481,13 @@ houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS-backup-supplemental.xml,31103.0,29944.0,20318.0,608.0,624.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-emergency.xml,40850.0,39327.0,20318.0,798.0,819.0 houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad-backup-supplemental.xml,40850.0,39327.0,20318.0,798.0,819.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24444.0,0.0,0.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,25566.0,24444.0,16325.0,499.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25566.0,24444.0,0.0,499.0,762.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,24103.0,23043.0,16325.0,471.0,719.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,24103.0,23043.0,0.0,471.0,719.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27623.0,26411.0,16325.0,540.0,824.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27623.0,26411.0,0.0,540.0,824.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24442.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,25566.0,24442.0,16325.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,25566.0,24442.0,0.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,24103.0,23045.0,16325.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-supplemental.xml,24103.0,23045.0,0.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-emergency.xml,27623.0,26409.0,16325.0,540.0,824.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad-backup-supplemental.xml,27623.0,26409.0,0.0,540.0,824.0 houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20784.0,0.0,0.0,864.0 houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17972.0,0.0,0.0,599.0 houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20784.0,0.0,0.0,864.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 23caa9d58..6246795ef 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -49,9 +49,9 @@ base-bldgtype-mf-unit-shared-generator.xml,40.963,34.139,25.897,19.073,0.899,0.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.333,28.333,28.333,28.333,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.382,0.0,0.0,2.266,2.864,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1705.4,2025.2,2025.2,3.814,7.788,0.0,-0.016,2.518,0.0,0.0,0.421,3.978,-2.778,0.0,0.0,-0.013,0.0,-0.388,1.286,0.0,0.702,0.0,0.0,-4.146,-0.814,0.0,-0.012,-0.978,0.0,0.0,-0.031,-0.966,5.424,0.0,0.0,-0.009,0.0,-0.379,-0.461,-1.595,-0.347,0.0,0.0,6.736,1.211,1354.7,998.0,11171.6,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,582.0,0.0,-218.0,800.0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.684,31.684,16.434,16.434,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.861,0.511,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.825,0.0,14.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,0.0,928.0,1598.0,1598.0,3.861,7.816,0.0,-0.018,2.47,0.0,0.0,0.422,3.947,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.05,0.0,0.0,0.0,0.0,-4.279,-0.789,0.0,-0.013,-1.037,0.0,0.0,-0.032,-1.015,5.52,0.0,0.0,-0.01,0.0,-0.409,-0.844,-1.625,0.0,0.0,0.0,7.1,1.236,1354.7,998.0,11171.9,3093.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,582.0,0.0,-218.0,800.0 base-bldgtype-mf-unit-shared-laundry-room.xml,29.601,29.601,16.252,16.252,13.349,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.723,0.475,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.039,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,0.0,919.2,1586.4,1586.4,4.011,7.695,0.0,-0.017,2.526,0.0,0.0,0.42,3.983,-2.859,0.0,0.0,-0.014,0.0,-0.392,2.071,0.0,0.0,0.0,0.0,-3.984,-0.834,0.0,-0.012,-0.938,0.0,0.0,-0.026,-0.911,5.343,0.0,0.0,-0.01,0.0,-0.383,-0.783,-1.56,0.0,0.0,0.0,6.286,1.191,1354.7,998.0,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,582.0,0.0,-218.0,800.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.298,51.298,30.438,30.438,20.86,0.0,0.0,0.0,0.0,0.0,0.0,0.063,0.0,0.0,2.762,0.296,9.563,0.0,0.0,2.025,0.0,0.206,3.71,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.697,0.0,0.0,0.0,0.0,12.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.057,0.0,4.993,9.37,0.617,0.0,0.0,0.0,0.0,1803.5,2327.9,2327.9,7.873,9.041,0.0,-0.018,2.767,0.0,0.0,0.405,4.178,-4.251,0.0,0.0,-0.022,0.0,-0.278,0.076,0.0,12.318,0.0,0.0,-5.844,-1.189,0.0,-0.014,-0.127,0.0,0.0,0.065,0.167,3.952,0.0,0.0,-0.019,0.0,-0.273,-0.006,-0.709,-4.009,0.0,0.0,4.953,0.836,1354.7,998.0,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.711,32.711,27.055,27.055,5.657,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.527,0.419,9.537,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.708,0.0,0.0,0.0,0.0,3.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.58,0.0,7.083,9.37,0.591,0.0,0.0,0.0,0.0,1584.7,2367.0,2367.0,4.521,7.958,0.0,-0.016,2.661,0.0,0.0,0.422,4.121,-3.257,0.0,0.0,-0.015,0.0,-0.335,1.77,0.0,1.904,0.0,0.0,-4.734,-0.957,0.0,-0.012,-0.672,0.0,0.0,0.001,-0.567,4.946,0.0,0.0,-0.01,0.0,-0.327,-0.485,-1.304,-1.671,0.0,0.0,6.124,1.068,1354.7,998.0,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,32.0,0.0,-768.0,800.0 -base-bldgtype-mf-unit-shared-mechvent.xml,31.174,31.174,26.924,26.924,4.25,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,2.463,0.401,9.546,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.122,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,3.935,0.0,6.868,9.37,0.6,0.0,0.0,0.0,0.0,1564.1,2309.3,2309.3,6.341,8.579,0.0,-0.015,2.674,0.0,0.0,0.392,3.998,-3.692,0.0,0.0,-0.016,0.0,-0.243,1.729,0.0,5.289,0.0,0.0,-5.086,-1.045,0.0,-0.011,-0.513,0.0,0.0,-0.002,-0.459,4.51,0.0,0.0,-0.013,0.0,-0.237,-0.413,-1.303,-1.427,0.0,0.0,5.752,0.98,1354.7,998.0,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,32.0,0.0,-768.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.421,51.421,30.435,30.435,20.986,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,2.761,0.296,9.563,0.0,0.0,2.025,0.0,0.206,3.706,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.822,0.0,0.0,0.0,0.0,12.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.173,0.0,4.991,9.37,0.617,0.0,0.0,0.0,0.0,1802.7,2328.5,2328.5,7.899,9.054,0.0,-0.018,2.765,0.0,0.0,0.405,4.176,-4.251,0.0,0.0,-0.022,0.0,-0.279,0.208,0.0,12.309,0.0,0.0,-5.844,-1.189,0.0,-0.014,-0.127,0.0,0.0,0.065,0.168,3.952,0.0,0.0,-0.019,0.0,-0.274,-0.015,-0.708,-4.002,0.0,0.0,4.953,0.836,1354.7,998.0,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.56,32.56,27.1,27.1,5.46,0.0,0.0,0.0,0.0,0.0,0.0,0.011,0.0,0.0,2.562,0.428,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.504,0.0,0.0,0.0,0.0,3.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,0.0,1593.9,2159.1,2159.1,4.194,7.952,0.0,-0.017,2.644,0.0,0.0,0.425,4.131,-3.171,0.0,0.0,-0.016,0.0,-0.35,1.419,0.0,1.913,0.0,0.0,-4.671,-0.942,0.0,-0.013,-0.712,0.0,0.0,-0.0,-0.592,5.031,0.0,0.0,-0.012,0.0,-0.342,-0.386,-1.324,-1.707,0.0,0.0,6.19,1.083,1354.7,998.0,11171.6,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,32.0,0.0,-768.0,800.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.909,30.909,26.944,26.944,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.479,0.405,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,0.0,1564.2,2140.7,2140.7,6.015,8.573,0.0,-0.015,2.674,0.0,0.0,0.393,4.003,-3.667,0.0,0.0,-0.016,0.0,-0.244,1.391,0.0,5.29,0.0,0.0,-5.058,-1.039,0.0,-0.011,-0.528,0.0,0.0,-0.004,-0.476,4.535,0.0,0.0,-0.013,0.0,-0.238,-0.311,-1.324,-1.453,0.0,0.0,5.781,0.986,1354.7,998.0,11171.6,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,32.0,0.0,-768.0,800.0 base-bldgtype-mf-unit-shared-pv-battery.xml,27.673,3.225,26.774,2.326,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1649.1,2045.5,2045.5,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,11171.6,3093.4,44.391,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,582.0,0.0,-218.0,800.0 base-bldgtype-mf-unit-shared-pv.xml,26.796,2.349,25.897,1.449,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,2.813,0.498,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,0.0,1603.5,2035.3,2035.3,3.814,7.788,0.0,-0.017,2.513,0.0,0.0,0.421,3.973,-2.771,0.0,0.0,-0.014,0.0,-0.391,1.284,0.0,0.7,0.0,0.0,-4.136,-0.812,0.0,-0.012,-0.983,0.0,0.0,-0.031,-0.971,5.431,0.0,0.0,-0.009,0.0,-0.382,-0.463,-1.595,-0.348,0.0,0.0,6.746,1.213,1354.7,998.0,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,582.0,0.0,-218.0,800.0 base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,30.776,30.776,17.369,17.369,13.407,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.741,0.479,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.178,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.097,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,0.0,949.7,1631.8,1631.8,4.004,7.812,0.0,-0.016,2.544,0.0,0.0,0.419,3.992,-2.904,0.0,0.0,-0.014,0.0,-0.378,1.609,0.0,0.714,0.0,0.0,-4.173,-0.843,0.0,-0.012,-0.918,0.0,0.0,-0.027,-0.898,5.299,0.0,0.0,-0.009,0.0,-0.369,-0.568,-1.562,-0.325,0.0,0.0,6.494,1.182,1354.7,998.0,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,582.0,0.0,-218.0,800.0 @@ -69,7 +69,7 @@ base-dhw-desuperheater-2-speed.xml,31.692,31.692,31.692,31.692,0.0,0.0,0.0,0.0,0 base-dhw-desuperheater-gshp.xml,38.269,38.269,38.269,38.269,0.0,0.0,0.0,0.0,0.0,0.0,5.898,0.602,0.0,0.0,3.053,0.993,6.586,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.261,0.0,13.631,9.069,0.614,2.872,0.0,0.0,0.0,3427.2,2543.0,3427.2,22.716,16.873,0.0,3.58,3.636,0.512,7.501,0.629,10.08,-12.691,0.0,0.0,0.0,8.283,-0.065,4.804,0.0,0.727,0.0,3.908,-7.483,-2.489,0.0,0.01,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.062,-1.136,-3.815,-0.161,0.0,2.148,8.391,2.018,1354.7,998.0,11185.8,2566.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-desuperheater-hpwh.xml,57.551,57.551,29.48,29.48,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.463,0.0,0.0,4.356,0.827,2.704,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.289,0.0,14.446,9.081,1.811,2.925,0.0,0.0,0.0,1813.8,3298.9,3298.9,23.813,19.758,0.0,3.51,3.632,0.511,7.485,0.627,10.06,-12.745,0.0,0.0,0.0,8.31,-0.057,4.799,0.0,0.726,0.0,5.908,-4.327,-2.498,0.0,0.007,-0.394,-0.042,2.895,-0.009,-1.193,11.668,0.0,0.0,0.0,-6.008,-0.053,-1.086,-3.568,-0.152,0.0,3.163,7.478,2.01,1354.6,997.9,11146.0,2557.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-desuperheater-tankless.xml,33.266,33.266,33.266,33.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.347,1.144,6.811,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.127,9.076,0.0,2.849,0.0,0.0,0.0,1833.3,3409.8,3409.8,0.0,19.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.042,-0.437,-0.047,2.752,-0.024,-1.348,11.85,0.0,0.0,0.0,-6.847,-0.067,-1.152,-3.654,-0.161,0.0,3.183,8.23,2.042,1354.7,998.0,11133.5,2554.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-dhw-desuperheater-var-speed.xml,30.838,30.838,30.838,30.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.293,6.808,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.498,9.069,0.666,2.844,0.0,0.0,0.0,1972.5,2743.9,2743.9,0.0,19.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.159,-3.699,-0.162,0.0,4.443,8.507,2.042,1354.7,998.0,11185.8,2566.8,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-dhw-desuperheater-var-speed.xml,30.839,30.839,30.839,30.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.293,6.808,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.499,9.069,0.666,2.844,0.0,0.0,0.0,1972.5,2743.5,2743.5,0.0,19.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.106,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.159,-3.699,-0.162,0.0,4.444,8.507,2.042,1354.7,998.0,11185.6,2566.7,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-desuperheater.xml,33.299,33.299,33.299,33.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.398,1.161,6.772,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.344,9.069,0.666,2.899,0.0,0.0,0.0,1972.5,3421.8,3421.8,0.0,19.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.049,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.159,-3.696,-0.162,0.0,3.219,8.523,2.042,1354.7,998.0,11185.3,2566.7,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-dwhr.xml,56.948,56.948,33.322,33.322,23.626,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,6.631,0.615,0.0,0.0,0.0,0.0,2001.0,3541.1,3541.1,23.506,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,0.0,1296.3,1163.4,1296.3,17.02,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.3,855.1,9363.6,2148.7,0.0,36000.0,0.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -111,8 +111,8 @@ base-dhw-tank-heat-pump-uef.xml,57.271,57.271,28.33,28.33,28.941,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar-fraction.xml,53.041,53.041,27.622,27.622,25.419,0.0,0.0,0.0,0.0,0.0,0.0,0.419,0.0,0.0,4.063,0.757,1.248,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.805,0.0,13.21,9.103,0.603,0.0,5.917,0.0,0.0,1808.6,3233.2,3233.2,25.635,19.149,0.0,3.527,3.634,0.511,7.495,0.628,10.069,-12.712,0.0,0.0,0.0,8.296,-0.06,4.801,0.0,0.726,0.0,5.429,-6.393,-2.491,0.0,-0.006,-0.42,-0.046,2.811,-0.015,-1.272,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.115,-3.623,-0.158,0.0,2.959,6.773,2.017,474.2,349.3,3821.8,877.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-tank-heat-pump-with-solar.xml,52.508,52.508,28.225,28.225,24.284,0.0,0.0,0.0,0.0,0.0,0.0,0.401,0.0,0.0,4.398,0.837,1.122,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.74,0.0,14.614,9.017,1.97,0.0,8.046,0.0,0.0,1821.5,3283.2,3283.2,23.943,19.613,0.0,3.535,3.637,0.512,7.513,0.629,10.079,-12.682,0.0,0.0,0.0,8.297,-0.061,4.805,0.0,0.727,0.0,5.218,-7.326,-2.487,0.0,-0.04,-0.444,-0.049,2.744,-0.022,-1.346,11.731,0.0,0.0,0.0,-6.243,-0.057,-1.143,-3.832,-0.163,0.0,3.206,8.456,2.02,1354.3,997.6,11682.8,2680.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-tank-heat-pump.xml,57.501,57.501,29.493,29.493,28.008,0.0,0.0,0.0,0.0,0.0,0.0,0.462,0.0,0.0,3.799,0.696,3.407,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.228,0.0,12.154,9.116,1.721,0.0,0.0,0.0,0.0,1820.6,3489.3,3489.3,23.847,19.302,0.0,3.509,3.631,0.511,7.488,0.626,10.053,-12.751,0.0,0.0,0.0,8.323,-0.053,4.797,0.0,0.726,0.0,5.895,-4.387,-2.498,0.0,0.031,-0.389,-0.041,2.911,-0.009,-1.184,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.082,-3.436,-0.15,0.0,2.748,5.407,2.009,1354.7,998.0,10842.6,2488.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.476,58.476,35.101,35.101,23.376,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.269,0.805,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.889,0.0,13.947,9.117,0.021,0.0,0.0,0.0,0.0,4519.6,5543.3,5543.3,30.815,19.665,0.0,3.548,3.643,0.513,7.527,0.631,10.1,-12.683,0.0,0.0,0.0,8.319,-0.061,5.264,0.0,0.776,0.0,5.042,-8.562,-2.504,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.331,11.73,0.0,0.0,0.0,-6.243,-0.057,-1.241,-3.785,-0.183,0.0,3.099,7.938,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-dhw-tank-model-type-stratified.xml,59.064,59.064,35.034,35.034,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.206,0.791,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.505,0.0,13.776,9.121,0.021,0.0,0.0,0.0,0.0,1904.8,3571.8,3571.8,23.606,19.08,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.804,0.0,0.727,0.0,5.176,-7.476,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.132,-3.741,-0.161,0.0,3.069,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.476,58.476,35.101,35.101,23.376,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.269,0.805,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.889,0.0,13.947,9.117,0.021,0.0,0.0,0.0,0.0,4511.4,5543.3,5543.3,30.815,19.665,0.0,3.548,3.643,0.513,7.527,0.631,10.1,-12.683,0.0,0.0,0.0,8.319,-0.061,5.264,0.0,0.776,0.0,5.042,-8.562,-2.504,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.331,11.73,0.0,0.0,0.0,-6.243,-0.057,-1.241,-3.785,-0.183,0.0,3.099,7.938,2.005,1354.7,998.0,10786.2,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-dhw-tank-model-type-stratified.xml,59.064,59.064,35.034,35.034,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.206,0.791,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.505,0.0,13.776,9.121,0.021,0.0,0.0,0.0,0.0,1904.8,3578.4,3578.4,23.606,19.08,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.804,0.0,0.727,0.0,5.176,-7.476,-2.489,0.0,-0.025,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.132,-3.741,-0.161,0.0,3.069,7.511,2.018,1354.7,998.0,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-tank-oil.xml,65.856,65.856,26.734,26.734,23.843,15.28,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-tank-wood.xml,65.856,65.856,26.734,26.734,23.843,0.0,0.0,15.28,0.0,0.0,0.0,0.393,0.0,0.0,4.371,0.83,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,14.477,9.071,3.628,0.0,0.0,0.0,0.0,1391.4,3288.6,3288.6,23.954,19.686,0.0,3.538,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.291,-0.066,5.89,0.0,0.727,0.0,5.149,-8.75,-2.488,0.0,-0.04,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.263,-0.062,-1.417,-3.825,-0.163,0.0,3.197,8.587,2.02,1354.7,998.0,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-dhw-tankless-detailed-setpoints.xml,61.738,61.738,26.528,26.528,35.21,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.204,0.79,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.044,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.517,0.0,13.769,9.052,0.0,0.0,0.0,0.0,0.0,1389.9,3222.4,3222.4,23.609,19.076,0.0,3.536,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.287,-0.065,4.804,0.0,0.727,0.0,5.179,-7.465,-2.489,0.0,-0.025,-0.437,-0.048,2.763,-0.019,-1.316,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.132,-3.74,-0.161,0.0,3.068,7.501,2.018,1354.7,998.0,11342.7,2602.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -184,11 +184,11 @@ base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.873,45.873,45.873,45.8 base-hvac-air-to-air-heat-pump-1-speed.xml,45.811,45.811,45.811,45.811,0.0,0.0,0.0,0.0,0.0,0.0,9.893,1.051,0.329,0.019,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.724,0.348,12.895,9.071,0.615,0.0,0.0,0.0,0.0,7045.4,3758.5,7045.4,24.559,16.503,0.0,3.514,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.291,-0.067,4.807,0.0,0.728,0.0,5.714,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-2-speed.xml,41.64,41.64,41.64,41.64,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.615,0.315,0.013,2.251,0.607,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.761,0.328,13.147,9.071,0.615,0.0,0.0,0.0,0.0,7022.6,3298.8,7022.6,24.552,17.528,0.0,3.473,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.293,-0.067,4.807,0.0,0.728,0.0,6.784,-7.8,-2.489,0.0,0.006,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.259,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.51,40.51,40.51,40.51,0.0,0.0,0.0,0.0,0.0,0.0,8.174,0.089,0.0,0.0,1.998,0.098,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.766,0.0,12.47,9.071,0.615,0.0,0.0,0.0,0.0,4168.6,2941.0,4168.6,22.401,15.666,0.0,3.551,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,4.735,-7.8,-2.489,0.0,0.032,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.778,-0.162,0.0,1.58,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,68136.0,68136.0,0.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,54.126,54.126,38.751,38.751,15.375,0.0,0.0,0.0,0.0,0.0,5.297,0.379,0.0,0.058,2.391,0.476,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,28.86,11.49,15.753,9.071,0.616,0.0,0.0,1.0,13.0,3140.9,2982.5,3140.9,23.258,17.757,0.0,3.269,3.597,0.506,7.507,0.614,9.916,-12.591,0.0,0.0,0.0,8.221,-0.031,5.815,0.0,0.719,0.0,11.113,-7.688,-2.467,0.0,-0.16,-0.467,-0.052,2.794,-0.032,-1.455,11.822,0.0,0.0,0.0,-6.255,-0.027,-1.459,-3.737,-0.167,0.0,5.142,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,57.106,57.106,37.587,37.587,19.518,0.0,0.0,0.0,0.0,0.0,4.221,0.255,0.0,0.074,2.409,0.479,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,28.467,14.579,15.872,9.071,0.616,0.0,0.0,242.0,13.0,3068.8,3141.4,3141.4,23.54,17.757,0.0,3.288,3.596,0.505,7.4,0.614,9.858,-12.676,0.0,0.0,0.0,8.226,-0.016,5.779,0.0,0.715,0.0,10.674,-7.713,-2.456,0.0,-0.146,-0.461,-0.052,2.715,-0.03,-1.487,11.737,0.0,0.0,0.0,-6.198,-0.013,-1.472,-3.723,-0.17,0.0,5.036,7.866,2.051,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,54.236,54.236,38.857,38.857,15.379,0.0,0.0,0.0,0.0,0.0,5.376,0.383,0.0,0.058,2.41,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.157,11.493,15.908,9.071,0.615,0.0,0.0,1.0,13.0,3140.9,3319.8,3319.8,23.258,17.758,0.0,3.31,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,5.888,0.0,0.727,0.0,11.257,-7.81,-2.491,0.0,-0.119,-0.432,-0.047,2.776,-0.017,-1.297,11.708,0.0,0.0,0.0,-6.19,-0.063,-1.395,-3.724,-0.16,0.0,5.195,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,54.151,54.151,38.777,38.777,15.374,0.0,0.0,0.0,0.0,0.0,5.322,0.38,0.0,0.058,2.39,0.477,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.976,11.489,15.75,9.071,0.616,0.0,0.0,1.0,13.0,3140.5,2982.9,3140.5,23.257,17.755,0.0,3.264,3.597,0.506,7.506,0.614,9.915,-12.591,0.0,0.0,0.0,8.221,-0.031,5.815,0.0,0.719,0.0,11.235,-7.688,-2.467,0.0,-0.16,-0.467,-0.052,2.794,-0.032,-1.455,11.822,0.0,0.0,0.0,-6.255,-0.027,-1.459,-3.737,-0.167,0.0,5.139,7.892,2.04,1354.7,998.0,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,57.132,57.132,37.612,37.612,19.52,0.0,0.0,0.0,0.0,0.0,4.245,0.257,0.0,0.073,2.409,0.479,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,28.582,14.58,15.868,9.071,0.616,0.0,0.0,244.0,13.0,3068.3,3140.3,3140.3,23.54,17.756,0.0,3.284,3.596,0.505,7.4,0.614,9.858,-12.676,0.0,0.0,0.0,8.226,-0.017,5.779,0.0,0.715,0.0,10.792,-7.713,-2.456,0.0,-0.146,-0.461,-0.052,2.715,-0.03,-1.487,11.737,0.0,0.0,0.0,-6.198,-0.013,-1.472,-3.723,-0.17,0.0,5.029,7.866,2.051,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,54.262,54.262,38.884,38.884,15.378,0.0,0.0,0.0,0.0,0.0,5.402,0.385,0.0,0.058,2.409,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,11.493,15.904,9.071,0.615,0.0,0.0,1.0,13.0,3140.5,3320.2,3320.2,23.257,17.756,0.0,3.305,3.638,0.512,7.505,0.63,10.09,-12.705,0.0,0.0,0.0,8.308,-0.067,5.888,0.0,0.727,0.0,11.385,-7.81,-2.491,0.0,-0.118,-0.432,-0.047,2.776,-0.017,-1.297,11.708,0.0,0.0,0.0,-6.19,-0.063,-1.395,-3.723,-0.16,0.0,5.191,7.77,2.016,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,51.847,51.847,37.107,37.107,14.741,0.0,0.0,0.0,0.0,0.0,4.764,0.034,0.0,0.054,2.004,0.1,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.898,11.039,12.832,9.071,0.615,0.0,0.0,2.0,0.0,3053.6,2971.2,3053.6,23.13,17.043,0.0,3.468,3.636,0.512,7.502,0.63,10.088,-12.696,0.0,0.0,0.0,8.3,-0.068,5.888,0.0,0.727,0.0,6.883,-7.807,-2.49,0.0,0.023,-0.433,-0.047,2.773,-0.017,-1.299,11.717,0.0,0.0,0.0,-6.197,-0.065,-1.396,-3.713,-0.16,0.0,2.038,7.774,2.017,1354.7,998.0,11171.6,2563.5,0.0,44261.0,53746.0,60000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.261,54.261,39.013,39.013,15.248,0.0,0.0,0.0,0.0,0.0,5.145,0.36,0.0,0.46,2.418,0.478,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,29.44,12.658,16.007,9.071,0.615,0.0,0.0,2.0,11.0,3138.7,3319.7,3319.7,26.783,17.748,0.0,3.252,3.64,0.512,7.511,0.63,10.086,-12.696,0.0,0.0,0.0,8.302,-0.064,4.804,0.0,0.727,0.0,12.639,-7.798,-2.488,0.0,-0.127,-0.439,-0.048,2.748,-0.02,-1.332,11.717,0.0,0.0,0.0,-6.237,-0.059,-1.139,-3.789,-0.162,0.0,5.208,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40224.0,16125.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.289,54.289,39.042,39.042,15.247,0.0,0.0,0.0,0.0,0.0,5.172,0.362,0.0,0.46,2.417,0.479,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.568,12.657,16.003,9.071,0.615,0.0,0.0,2.0,11.0,3138.3,3320.1,3320.1,26.781,17.746,0.0,3.248,3.64,0.512,7.51,0.63,10.086,-12.696,0.0,0.0,0.0,8.301,-0.064,4.804,0.0,0.727,0.0,12.774,-7.798,-2.488,0.0,-0.126,-0.439,-0.048,2.748,-0.02,-1.332,11.717,0.0,0.0,0.0,-6.237,-0.059,-1.139,-3.789,-0.162,0.0,5.204,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,40224.0,16125.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.0,43.0,43.0,43.0,0.0,0.0,0.0,0.0,0.0,0.0,9.143,0.59,0.281,0.01,2.667,0.157,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.129,0.291,14.63,9.071,0.615,0.0,0.0,0.0,0.0,5551.4,4121.1,5551.4,24.764,18.624,0.0,3.346,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,10.269,-7.801,-2.489,0.0,-0.059,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.805,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,31615.0,31615.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.644,42.644,42.644,42.644,0.0,0.0,0.0,0.0,0.0,0.0,9.096,0.545,0.102,0.004,2.627,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.418,0.106,13.982,9.071,0.615,0.0,0.0,0.0,0.0,5145.2,3578.2,5145.2,24.549,18.265,0.0,3.373,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.535,-7.801,-2.489,0.0,-0.028,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.601,42.601,42.601,42.601,0.0,0.0,0.0,0.0,0.0,0.0,9.152,0.542,0.105,0.004,2.533,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.565,0.109,14.277,9.071,0.615,0.0,0.0,0.0,0.0,5162.0,3939.8,5162.0,24.549,18.285,0.0,3.368,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,4.807,0.0,0.728,0.0,9.688,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.441,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -209,9 +209,9 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,35.051,35.051,35.051,35.05 base-hvac-central-ac-only-1-speed-seer2.xml,35.358,35.358,35.358,35.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.221,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3679.3,3679.3,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-only-1-speed.xml,35.37,35.37,35.37,35.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.233,1.107,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.642,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3685.9,3685.9,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.045,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.854,-0.066,-1.16,-3.657,-0.163,0.0,3.109,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-only-2-speed.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,3.077,0.684,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3224.5,3224.5,0.0,19.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.656,-0.163,0.0,3.524,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.345,34.345,34.345,34.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.948,0.367,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.273,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,4187.3,4187.3,0.0,19.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.126,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.663,-0.163,0.0,4.812,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20971.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.515,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-central-ac-only-var-speed.xml,32.987,32.987,32.987,32.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.828,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.9,3015.9,0.0,19.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.345,34.345,34.345,34.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.948,0.367,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.274,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,4187.3,4187.3,0.0,19.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.126,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.663,-0.163,0.0,4.814,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20971.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.514,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-central-ac-only-var-speed.xml,32.986,32.986,32.986,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.827,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.4,3015.4,0.0,19.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.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.842,47.842,47.842,47.842,0.0,0.0,0.0,0.0,0.0,0.0,10.003,1.837,0.343,0.034,4.334,1.14,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.618,0.377,14.06,9.071,0.615,0.0,0.0,0.0,0.0,7390.6,4059.7,7390.6,25.614,19.322,0.0,3.48,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,4.807,0.0,0.728,0.0,6.625,-7.8,-2.489,0.0,-0.034,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.187,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2034.7,3107.2,3107.2,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.52,52.52,41.55,41.55,10.971,0.0,0.0,0.0,0.0,0.0,5.572,0.529,0.0,0.931,3.361,1.005,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,11.353,12.895,9.071,0.615,0.0,0.0,0.0,0.0,3544.9,3758.5,3758.5,24.549,16.503,0.0,3.457,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,4.807,0.0,0.728,0.0,7.048,-7.8,-2.489,0.0,0.016,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.779,-0.162,0.0,2.003,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -236,7 +236,7 @@ base-hvac-furnace-coal-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,57.33,57.33,57.33,57.33,0.0,0.0,0.0,0.0,0.0,0.0,21.735,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,7905.7,3884.4,7905.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-elec-only.xml,53.402,53.402,53.402,53.402,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,8296.6,1786.0,8296.6,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-central-ac-2-speed.xml,57.958,57.958,34.333,34.333,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,3.127,0.665,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,14.401,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3593.8,3593.8,23.508,19.799,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.048,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,3.533,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,57.188,57.188,33.563,33.563,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.252,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.44,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,57.187,57.187,33.562,33.562,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.249,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.436,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-only-autosize-factor.xml,53.363,53.363,30.793,30.793,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.348,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2038.2,1786.0,2038.2,22.69,0.0,0.0,3.566,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.139,-0.07,4.808,0.0,0.728,0.0,4.449,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,45789.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,38.822,38.822,30.321,30.321,8.501,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,8.035,0.0,0.0,9.071,0.636,0.0,0.0,0.0,0.0,1989.1,1804.8,1989.1,18.724,0.0,0.0,2.806,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.446,0.0,0.566,0.0,2.046,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-only-pilot.xml,59.761,59.761,30.832,30.832,28.93,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2046.0,1786.0,2046.0,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -254,14 +254,14 @@ base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,49.032,49.032,49.032, base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.368,44.368,44.368,44.368,0.0,0.0,0.0,0.0,0.0,0.0,9.624,0.597,0.614,0.019,2.804,0.559,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.449,0.633,13.778,9.071,0.615,0.0,0.0,0.0,0.0,7134.9,3612.6,7134.9,25.081,19.025,0.0,3.409,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.296,-0.067,4.807,0.0,0.728,0.0,8.521,-7.8,-2.489,0.0,-0.021,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,2.904,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,46.045,46.045,46.045,46.045,0.0,0.0,0.0,0.0,0.0,0.0,11.468,0.555,0.309,0.009,3.38,0.172,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.758,0.318,14.993,9.071,0.615,0.0,0.0,0.0,0.0,5912.0,4585.4,5912.0,25.08,18.927,0.0,3.321,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.302,-0.065,4.807,0.0,0.728,0.0,10.918,-7.801,-2.489,0.0,-0.077,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.137,-3.785,-0.162,0.0,4.183,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,44.314,44.314,44.314,44.314,0.0,0.0,0.0,0.0,0.0,0.0,10.39,0.374,0.641,0.022,2.58,0.155,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.685,0.663,14.75,9.071,0.615,0.0,0.0,0.0,0.0,6481.5,3577.7,6481.5,25.126,18.874,0.0,3.363,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.066,4.807,0.0,0.728,0.0,9.806,-7.801,-2.489,0.0,-0.065,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.783,-0.162,0.0,3.926,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.234,61.234,36.367,36.367,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,5.172,0.744,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,14.87,9.071,0.615,0.0,0.0,0.0,4.0,2035.6,3987.5,3987.5,24.573,18.689,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.071,-0.44,-0.049,2.748,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.241,-0.061,-1.138,-3.783,-0.162,0.0,4.02,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.241,61.241,36.369,36.369,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.0,0.0,5.174,0.744,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.179,0.0,14.873,9.071,0.615,0.0,0.0,0.0,4.0,2035.8,3987.3,3987.3,24.58,18.696,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.187,-7.798,-2.488,0.0,-0.071,-0.44,-0.049,2.748,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.241,-0.061,-1.138,-3.783,-0.162,0.0,4.023,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.771,59.771,34.904,34.904,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.82,0.633,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,15.315,9.071,0.615,0.0,0.0,0.0,3.0,2035.6,3689.9,3689.9,24.573,18.986,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.09,-0.44,-0.048,2.749,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.24,-0.061,-1.138,-3.783,-0.162,0.0,4.471,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,59.036,59.036,34.169,34.169,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,3.341,0.378,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.174,0.0,16.025,9.071,0.615,0.0,0.0,0.0,0.0,2035.6,3573.0,3573.0,24.573,19.199,0.0,3.502,3.638,0.512,7.506,0.63,10.085,-12.691,0.0,0.0,0.0,8.29,-0.065,4.806,0.0,0.728,0.0,6.182,-7.798,-2.488,0.0,-0.131,-0.44,-0.048,2.75,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.239,-0.061,-1.138,-3.79,-0.162,0.0,5.236,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-furnace-gas-only.xml,56.307,56.307,30.693,30.693,25.614,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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.0,0.0,24.049,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2020.1,1786.0,2020.1,25.88,0.0,0.0,3.466,3.641,0.512,7.491,0.63,10.094,-12.691,0.0,0.0,0.0,8.141,-0.069,4.807,0.0,0.728,0.0,7.231,-7.798,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,42.712,42.712,42.712,42.712,0.0,0.0,0.0,0.0,0.0,0.0,7.496,0.606,0.0,0.0,3.553,0.905,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.029,0.0,13.538,9.071,0.615,0.0,0.0,0.0,0.0,3705.0,3369.9,3705.0,23.668,17.789,0.0,3.543,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.807,0.0,0.728,0.0,4.997,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.137,-3.78,-0.162,0.0,2.658,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.486,33.486,33.486,33.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.261,0.195,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.325,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3068.7,3068.7,0.0,14.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.008,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.658,-0.163,0.0,1.794,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.487,33.487,33.487,33.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.262,0.195,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.326,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3068.9,3068.9,0.0,14.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.008,-0.445,-0.048,2.729,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.658,-0.163,0.0,1.795,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.615,41.615,41.615,41.615,0.0,0.0,0.0,0.0,0.0,0.0,8.477,0.224,0.144,0.006,2.52,0.092,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.59,0.15,12.215,9.071,0.615,0.0,0.0,0.0,0.0,4940.9,3243.8,4940.9,19.566,14.283,0.0,3.595,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.526,-7.8,-2.489,0.0,0.042,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.778,-0.162,0.0,1.324,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,32.837,32.837,32.837,32.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.069,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.063,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2690.8,2690.8,0.0,14.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.021,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.655,-0.163,0.0,1.52,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,32.837,32.837,32.837,32.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.069,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.064,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2690.8,2690.8,0.0,14.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.021,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.655,-0.163,0.0,1.52,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.216,33.216,33.216,33.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.133,0.052,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2752.8,2752.8,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,14891.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.541,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.572,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2769.6,2769.6,0.0,11.877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.877,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,2667.8,2667.8,0.0,11.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.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -278,7 +278,7 @@ base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.902 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.04,0.0,0.0,1.887,0.003,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.913,9.071,0.615,0.0,0.0,0.0,0.0,3944.1,3072.0,3944.1,16.761,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ductless.xml,38.306,38.306,38.306,38.306,0.0,0.0,0.0,0.0,0.0,0.0,5.959,0.057,0.0,0.0,2.132,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,3627.2,2872.5,3627.2,16.762,12.089,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-hvac-multiple.xml,67.566,67.566,52.556,52.556,7.432,3.747,3.831,0.0,0.0,0.0,14.282,0.917,0.239,0.01,6.396,0.562,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.14,0.249,18.967,9.071,0.615,0.0,0.0,0.0,16.0,6577.6,4451.7,6577.6,38.542,22.469,0.0,3.4,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.303,-0.067,5.888,0.0,0.727,0.0,16.16,-7.808,-2.49,0.0,-0.112,-0.433,-0.047,2.773,-0.017,-1.3,11.709,0.0,0.0,0.0,-6.195,-0.063,-1.396,-3.745,-0.16,0.0,8.245,7.771,2.017,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37011.0,12913.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24863.0,11122.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-multiple.xml,67.566,67.566,52.556,52.556,7.432,3.747,3.83,0.0,0.0,0.0,14.282,0.917,0.239,0.01,6.396,0.562,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,34.141,0.249,18.967,9.071,0.615,0.0,0.0,0.0,16.0,6575.4,4451.7,6575.4,38.542,22.469,0.0,3.4,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.303,-0.067,5.888,0.0,0.727,0.0,16.161,-7.808,-2.49,0.0,-0.112,-0.433,-0.047,2.773,-0.017,-1.3,11.709,0.0,0.0,0.0,-6.195,-0.063,-1.396,-3.745,-0.16,0.0,8.245,7.771,2.017,1354.7,998.0,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,37011.0,12913.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,24863.0,11122.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-none.xml,20.452,20.452,20.452,20.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,4.542,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.993,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.496,0.335,0.0,0.0,0.0,0.0,1265.8,1194.4,1265.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,1354.7,998.0,8369.9,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,13258.0,0.0,6412.0,0.0,264.0,451.0,0.0,0.0,0.0,2510.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.595,51.595,51.595,51.595,0.0,0.0,0.0,0.0,0.0,0.0,17.208,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,5891.0,3388.5,5891.0,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-ptac-with-heating-natural-gas.xml,55.897,55.897,34.387,34.387,21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.236,0.0,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,1931.3,3388.5,3388.5,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.28,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index def8ee579..02b96f0a8 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -49,9 +49,9 @@ base-bldgtype-mf-unit-shared-generator.xml,1632.51,144.0,950.43,0.0,1094.43,144. base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1183.85,144.0,1039.85,0.0,1183.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-laundry-room-multiple-water-heaters.xml,1052.69,144.0,603.14,0.0,747.14,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-bldgtype-mf-unit-shared-laundry-room.xml,1025.86,144.0,596.45,0.0,740.45,144.0,141.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 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1626.05,144.0,1117.08,0.0,1261.08,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 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1340.84,144.0,992.92,0.0,1136.92,144.0,59.92,203.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-bldgtype-mf-unit-shared-mechvent.xml,1321.14,144.0,988.12,0.0,1132.12,144.0,45.02,189.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-bldgtype-mf-unit-shared-mechvent-multiple.xml,1627.27,144.0,1116.96,0.0,1260.96,144.0,222.31,366.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-mechvent-preconditioning.xml,1340.43,144.0,994.59,0.0,1138.59,144.0,57.84,201.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-bldgtype-mf-unit-shared-mechvent.xml,1318.87,144.0,988.87,0.0,1132.87,144.0,42.0,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 base-bldgtype-mf-unit-shared-pv-battery.xml,382.88,144.0,982.48,-897.13,229.35,144.0,9.53,153.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-pv.xml,350.72,144.0,950.43,-897.25,197.19,144.0,9.53,153.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-water-heater-recirc-scheduled.xml,1067.48,144.0,637.45,0.0,781.45,144.0,142.03,286.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 @@ -69,7 +69,7 @@ base-dhw-desuperheater-2-speed.xml,1307.1,144.0,1163.1,0.0,1307.1,0.0,0.0,0.0,0. base-dhw-desuperheater-gshp.xml,1548.5,144.0,1404.5,0.0,1548.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,144.0,1081.92,0.0,1225.92,144.0,297.37,441.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-dhw-desuperheater-tankless.xml,1364.87,144.0,1220.87,0.0,1364.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-dhw-desuperheater-var-speed.xml,1275.78,144.0,1131.78,0.0,1275.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,1275.79,144.0,1131.79,0.0,1275.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,1366.09,144.0,1222.09,0.0,1366.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-dwhr.xml,1761.21,144.0,1222.94,0.0,1366.94,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,1428.27,144.0,784.35,0.0,928.35,144.0,355.92,499.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -184,11 +184,11 @@ base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1827.57,144.0,1683.57,0.0 base-hvac-air-to-air-heat-pump-1-speed.xml,1825.26,144.0,1681.26,0.0,1825.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-air-to-air-heat-pump-2-speed.xml,1672.21,144.0,1528.21,0.0,1672.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,1630.74,144.0,1486.74,0.0,1630.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1873.06,144.0,1422.19,0.0,1566.19,144.0,162.87,306.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,1874.23,144.0,1379.47,0.0,1523.47,144.0,206.76,350.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1876.99,144.0,1426.07,0.0,1570.07,144.0,162.92,306.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-boiler-hvac-seasons.xml,1873.99,144.0,1423.13,0.0,1567.13,144.0,162.86,306.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1875.17,144.0,1380.39,0.0,1524.39,144.0,206.78,350.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-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1877.96,144.0,1427.05,0.0,1571.05,144.0,162.91,306.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-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1805.98,144.0,1361.83,0.0,1505.83,144.0,156.15,300.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1881.32,144.0,1431.8,0.0,1575.8,144.0,161.52,305.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-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1882.36,144.0,1432.84,0.0,1576.84,144.0,161.52,305.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-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1722.12,144.0,1578.12,0.0,1722.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-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1709.04,144.0,1565.04,0.0,1709.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 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1707.47,144.0,1563.47,0.0,1707.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 @@ -209,7 +209,7 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,1430.37,144.0,1286.37,0.0, base-hvac-central-ac-only-1-speed-seer2.xml,1441.64,144.0,1297.64,0.0,1441.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-hvac-central-ac-only-1-speed.xml,1442.1,144.0,1298.1,0.0,1442.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-central-ac-only-2-speed.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 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1404.47,144.0,1260.47,0.0,1404.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-central-ac-only-var-speed-detailed-performance-autosize.xml,1404.48,144.0,1260.48,0.0,1404.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-central-ac-only-var-speed-detailed-performance.xml,1367.63,144.0,1223.63,0.0,1367.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-central-ac-only-var-speed.xml,1354.62,144.0,1210.62,0.0,1354.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 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1899.82,144.0,1755.82,0.0,1899.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 @@ -236,7 +236,7 @@ base-hvac-furnace-coal-only.xml,1636.18,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2248.02,144.0,2104.02,0.0,2248.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-furnace-elec-only.xml,2103.88,144.0,1959.88,0.0,2103.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 base-hvac-furnace-gas-central-ac-2-speed.xml,1798.3,144.0,1260.03,0.0,1404.03,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.04,144.0,1231.77,0.0,1375.77,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.02,144.0,1231.75,0.0,1375.75,144.0,250.27,394.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-hvac-furnace-gas-only-autosize-factor.xml,1657.22,144.0,1130.13,0.0,1274.13,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 base-hvac-furnace-gas-only-detailed-setpoints.xml,1490.84,144.0,1112.79,0.0,1256.79,144.0,90.05,234.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-furnace-gas-only-pilot.xml,1726.0,144.0,1131.54,0.0,1275.54,144.0,306.46,450.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 @@ -254,12 +254,12 @@ base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1943.48,144.0,1799.48 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1772.34,144.0,1628.34,0.0,1772.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-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1833.87,144.0,1689.87,0.0,1833.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-install-quality-air-to-air-heat-pump-var-speed.xml,1770.34,144.0,1626.34,0.0,1770.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-install-quality-furnace-gas-central-ac-1-speed.xml,1886.1,144.0,1334.68,0.0,1478.68,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1886.25,144.0,1334.77,0.0,1478.77,144.0,263.48,407.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-furnace-gas-central-ac-2-speed.xml,1832.4,144.0,1280.98,0.0,1424.98,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1805.44,144.0,1254.02,0.0,1398.02,144.0,263.42,407.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1685.77,144.0,1126.43,0.0,1270.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 base-hvac-install-quality-ground-to-air-heat-pump.xml,1711.54,144.0,1567.54,0.0,1711.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-install-quality-mini-split-air-conditioner-only-ducted.xml,1372.97,144.0,1228.97,0.0,1372.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-install-quality-mini-split-air-conditioner-only-ducted.xml,1373.0,144.0,1229.0,0.0,1373.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1671.3,144.0,1527.3,0.0,1671.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-mini-split-air-conditioner-only-ducted.xml,1349.14,144.0,1205.14,0.0,1349.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-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1363.02,144.0,1219.02,0.0,1363.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -278,7 +278,7 @@ base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1571.7 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1579.07,144.0,1435.07,0.0,1579.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2530.58,144.0,1928.81,0.0,2072.81,144.0,78.73,222.73,0.0,131.06,131.06,0.0,103.98,103.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2530.59,144.0,1928.82,0.0,2072.82,144.0,78.73,222.73,0.0,131.06,131.06,0.0,103.98,103.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2608.01,144.0,2464.01,0.0,2608.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2037.57,144.0,1893.57,0.0,2037.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,1777.89,144.0,1262.03,0.0,1406.03,144.0,227.86,371.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index 9aed05b48..5329ddde3 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -17,29 +17,29 @@ base-location-honolulu-hi.xml,35.269,35.269,35.269,35.269,0.0,0.0,0.0,0.0,0.0,0. base-location-miami-fl.xml,34.438,34.438,34.438,34.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.753,2.616,4.874,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.279,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.069,4.632,0.552,0.0,0.0,0.0,0.0,2015.7,2523.9,2523.9,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,1.048,0.618,0.0,0.0,0.315,4.571,19.646,0.0,0.0,0.0,5.632,-0.004,-0.198,-2.841,-0.0,0.0,0.669,12.141,2.646,1354.7,998.0,8452.8,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,13402.0,-220.0,6605.0,0.0,279.0,507.0,0.0,0.0,0.0,2565.0,345.0,3320.0,2519.0,954.0,765.0,800.0 base-location-phoenix-az.xml,38.249,38.249,38.245,38.245,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.089,2.877,5.099,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.263,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.003,0.0,52.241,4.866,0.557,0.0,0.0,0.0,0.0,2359.3,3563.8,3563.8,1.043,18.542,0.0,0.711,0.52,0.0,0.0,0.208,2.304,-2.036,0.0,0.0,0.0,-0.099,-0.498,0.371,0.0,0.131,0.0,-0.0,-1.43,-0.296,0.0,1.798,1.434,0.0,0.0,0.812,7.013,24.03,0.0,0.0,0.0,7.07,-0.51,0.033,-3.212,0.129,0.0,0.936,10.7,2.349,1354.7,998.0,8260.6,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,18164.0,710.0,8845.0,0.0,401.0,975.0,0.0,0.0,0.0,3028.0,885.0,3320.0,627.0,0.0,-173.0,800.0 base-location-portland-or.xml,37.638,37.638,27.196,27.196,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,2.718,0.498,8.935,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.087,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.647,0.0,8.314,8.724,0.78,0.0,0.0,0.0,0.0,1621.9,2927.9,2927.9,8.87,14.306,0.0,3.414,3.26,0.0,0.0,0.743,8.714,-8.283,0.0,0.0,6.205,0.0,-0.453,1.464,0.0,0.81,0.0,1.785,-6.547,-1.625,0.0,-0.267,-0.725,0.0,0.0,0.007,-0.534,10.218,0.0,0.0,-2.796,0.0,-0.45,-0.325,-2.834,-0.24,0.0,0.535,4.85,1.021,1354.7,998.0,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17761.0,6471.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15752.0,2411.0,6585.0,0.0,210.0,243.0,0.0,429.0,0.0,2304.0,250.0,3320.0,958.0,90.0,68.0,800.0 -base-mechvent-balanced.xml,80.669,80.669,37.469,37.469,43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.713,0.0,0.0,4.076,0.749,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.053,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.461,0.0,12.989,9.071,0.621,0.0,0.0,0.0,0.0,2162.5,3829.3,3829.3,32.839,21.498,0.0,3.506,3.727,0.524,7.411,0.657,10.41,-12.864,0.0,0.0,0.0,8.072,-0.13,5.516,0.0,15.129,0.0,8.829,-8.066,-2.561,0.0,0.184,-0.225,-0.018,3.027,0.04,-0.612,11.549,0.0,0.0,0.0,-5.938,-0.126,-0.978,-2.994,-3.428,0.0,3.122,7.502,1.946,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39149.0,8753.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10894.0,21489.0,6078.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-balanced.xml,79.857,79.857,37.457,37.457,42.4,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.076,0.75,9.019,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.054,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.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,39.712,0.0,12.996,9.071,0.621,0.0,0.0,0.0,0.0,2159.7,3829.3,3829.3,32.781,21.491,0.0,3.499,3.716,0.523,7.42,0.655,10.383,-12.834,0.0,0.0,0.0,8.097,-0.129,4.897,0.0,15.091,0.0,8.689,-8.042,-2.554,0.0,0.169,-0.24,-0.02,3.023,0.037,-0.65,11.579,0.0,0.0,0.0,-5.927,-0.124,-0.891,-3.012,-3.481,0.0,3.117,7.526,1.953,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,39149.0,8753.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,10894.0,21489.0,6078.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,2289.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-bath-kitchen-fans.xml,61.006,61.006,35.691,35.691,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.0,4.218,0.793,9.015,0.0,0.0,4.507,0.0,0.334,0.112,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.707,0.0,13.805,9.071,0.616,0.0,0.0,0.0,0.0,2055.7,3763.1,3763.1,25.293,20.778,0.0,3.532,3.637,0.512,7.503,0.629,10.079,-12.698,0.0,0.0,0.0,8.298,-0.061,4.321,0.0,2.474,0.0,5.433,-7.804,-2.49,0.0,-0.015,-0.427,-0.047,2.789,-0.017,-1.291,11.715,0.0,0.0,0.0,-6.174,-0.057,-1.015,-3.685,-0.672,0.0,3.085,7.776,2.017,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-mechvent-cfis-airflow-fraction-zero.xml,74.017,74.017,37.363,37.363,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.605,0.0,0.0,4.154,0.771,9.017,0.0,0.0,4.507,0.0,0.334,1.69,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.33,0.0,13.382,9.071,0.619,0.0,0.0,0.0,0.0,2084.4,4049.3,4049.3,29.849,21.303,0.0,3.475,3.658,0.515,7.478,0.637,10.17,-12.751,0.0,0.0,0.0,8.282,-0.077,1.507,0.0,13.897,0.0,7.626,-7.884,-2.508,0.0,0.065,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.92,-0.073,-0.247,-3.266,-3.173,0.0,3.146,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,74.14,74.14,38.309,38.309,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.842,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.826,0.0,10.31,9.071,0.619,0.0,0.0,0.0,0.0,2079.5,3207.3,3207.3,21.562,13.614,0.0,3.758,3.654,0.514,7.47,0.636,10.163,-12.744,0.0,0.0,0.0,8.27,-0.079,1.506,0.0,13.776,0.0,0.0,-7.882,-2.508,0.0,0.153,-0.343,-0.035,2.957,0.008,-1.0,11.67,0.0,0.0,0.0,-5.922,-0.075,-0.247,-3.258,-3.142,0.0,0.0,7.691,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,14903.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,33.624,33.624,33.624,33.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.901,9.085,0.0,0.0,4.507,0.0,0.334,2.752,0.0,0.0,0.0,1.822,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.18,9.071,0.691,0.0,0.0,0.0,0.0,2020.0,2122.1,2122.1,0.0,18.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.167,-0.336,-0.033,3.036,0.002,-1.037,11.85,0.0,0.0,0.0,-6.527,-0.061,-0.25,-3.027,-3.018,0.0,0.658,7.893,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,17410.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,71.279,71.279,36.015,36.015,35.265,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,4.065,0.75,9.019,0.0,0.0,4.507,0.0,0.334,0.478,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,33.028,0.0,13.02,9.071,0.62,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.287,0.0,3.506,3.679,0.518,7.458,0.643,10.246,-12.792,0.0,0.0,0.0,8.226,-0.091,1.906,0.0,12.553,0.0,7.363,-7.954,-2.53,0.0,0.118,-0.29,-0.027,3.028,0.022,-0.827,11.621,0.0,0.0,0.0,-5.85,-0.087,-0.244,-3.088,-3.947,0.0,3.07,7.616,1.977,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,73.347,73.347,36.047,36.047,37.299,0.0,0.0,0.0,0.0,0.0,0.0,0.615,0.0,0.0,4.076,0.752,9.018,0.0,0.0,4.507,0.0,0.334,0.464,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,34.934,0.0,13.039,9.071,0.619,0.0,0.0,0.0,0.0,2084.5,3769.0,3769.0,29.85,21.291,0.0,3.483,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.252,-0.087,1.51,0.0,14.456,0.0,7.737,-7.924,-2.52,0.0,0.097,-0.311,-0.03,2.999,0.017,-0.894,11.633,0.0,0.0,0.0,-5.875,-0.083,-0.237,-3.147,-3.777,0.0,3.094,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,75.165,75.165,37.304,37.304,37.861,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.113,0.759,9.018,0.0,0.0,4.507,0.0,0.334,1.666,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,13.179,9.071,0.619,0.0,0.0,0.0,0.0,2082.3,3769.0,3769.0,29.849,21.283,0.0,3.49,3.709,0.522,7.444,0.652,10.347,-12.806,0.0,0.0,0.0,8.158,-0.122,1.521,0.0,14.102,0.0,8.691,-7.992,-2.54,0.0,0.175,-0.274,-0.025,2.972,0.027,-0.773,11.607,0.0,0.0,0.0,-5.971,-0.118,-0.225,-3.136,-2.938,0.0,2.438,7.58,1.967,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,66.063,66.063,37.47,37.47,28.593,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.779,0.0,13.915,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.819,20.292,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.904,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20152.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,66.066,66.066,37.47,37.47,28.596,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.257,0.8,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.782,0.0,13.914,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3729.3,3729.3,25.821,20.293,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.907,0.0,6.073,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.829,0.0,3.156,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20153.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,74.09,74.09,37.363,37.363,36.727,0.0,0.0,0.0,0.0,0.0,0.0,0.606,0.0,0.0,4.154,0.771,9.017,0.0,0.0,4.507,0.0,0.334,1.689,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,13.381,9.071,0.619,0.0,0.0,0.0,0.0,2084.8,4046.2,4046.2,29.856,21.307,0.0,3.474,3.658,0.515,7.478,0.637,10.169,-12.751,0.0,0.0,0.0,8.283,-0.077,1.561,0.0,13.898,0.0,7.639,-7.884,-2.508,0.0,0.065,-0.341,-0.034,2.959,0.008,-0.998,11.663,0.0,0.0,0.0,-5.919,-0.073,-0.254,-3.265,-3.173,0.0,3.146,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,74.214,74.214,38.308,38.308,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.87,0.862,9.017,0.0,0.0,4.507,0.0,0.334,1.841,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.882,0.0,10.309,9.071,0.619,0.0,0.0,0.0,0.0,2079.6,3207.2,3207.2,21.568,13.622,0.0,3.76,3.656,0.514,7.471,0.637,10.163,-12.751,0.0,0.0,0.0,8.27,-0.076,1.561,0.0,13.78,0.0,0.0,-7.884,-2.508,0.0,0.155,-0.341,-0.034,2.958,0.008,-0.998,11.663,0.0,0.0,0.0,-5.921,-0.072,-0.254,-3.257,-3.138,0.0,0.0,7.689,1.999,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,14903.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,33.624,33.624,33.624,33.624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.901,9.085,0.0,0.0,4.507,0.0,0.334,2.752,0.0,0.0,0.0,1.821,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.179,9.071,0.691,0.0,0.0,0.0,0.0,2020.0,2122.6,2122.6,0.0,18.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.167,-0.336,-0.033,3.036,0.002,-1.036,11.85,0.0,0.0,0.0,-6.526,-0.061,-0.257,-3.025,-3.017,0.0,0.658,7.893,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,27298.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,17410.0,2507.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,71.81,71.81,36.017,36.017,35.793,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,4.063,0.749,9.019,0.0,0.0,4.507,0.0,0.334,0.474,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,33.524,0.0,13.007,9.071,0.62,0.0,0.0,0.0,0.0,2084.9,3769.0,3769.0,29.857,21.291,0.0,3.504,3.68,0.518,7.46,0.643,10.246,-12.801,0.0,0.0,0.0,8.227,-0.088,2.282,0.0,12.58,0.0,7.462,-7.956,-2.531,0.0,0.12,-0.289,-0.027,3.029,0.022,-0.827,11.612,0.0,0.0,0.0,-5.85,-0.084,-0.256,-3.087,-3.946,0.0,3.071,7.614,1.976,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,73.419,73.419,36.048,36.048,37.371,0.0,0.0,0.0,0.0,0.0,0.0,0.616,0.0,0.0,4.076,0.752,9.018,0.0,0.0,4.507,0.0,0.334,0.463,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,35.002,0.0,13.039,9.071,0.619,0.0,0.0,0.0,0.0,2084.9,3769.0,3769.0,29.856,21.294,0.0,3.484,3.67,0.516,7.465,0.641,10.218,-12.781,0.0,0.0,0.0,8.25,-0.087,1.565,0.0,14.458,0.0,7.749,-7.926,-2.52,0.0,0.098,-0.31,-0.03,3.0,0.017,-0.892,11.632,0.0,0.0,0.0,-5.876,-0.083,-0.244,-3.146,-3.773,0.0,3.094,7.645,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,75.234,75.234,37.304,37.304,37.93,0.0,0.0,0.0,0.0,0.0,0.0,0.626,0.0,0.0,4.113,0.759,9.018,0.0,0.0,4.507,0.0,0.334,1.665,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,35.526,0.0,13.178,9.071,0.619,0.0,0.0,0.0,0.0,2082.4,3769.0,3769.0,29.855,21.286,0.0,3.491,3.711,0.522,7.442,0.653,10.352,-12.806,0.0,0.0,0.0,8.152,-0.123,1.577,0.0,14.108,0.0,8.702,-7.996,-2.542,0.0,0.176,-0.273,-0.025,2.971,0.028,-0.766,11.607,0.0,0.0,0.0,-5.976,-0.119,-0.231,-3.135,-2.932,0.0,2.44,7.575,1.965,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.288,65.288,37.46,37.46,27.827,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.258,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.062,0.0,13.932,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3709.9,3709.9,25.76,20.112,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.905,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.834,0.0,3.15,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5919.0,20152.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.291,65.291,37.46,37.46,27.831,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.258,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.064,0.0,13.931,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3709.9,3709.9,25.761,20.113,0.0,3.508,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.907,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.835,0.0,3.15,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20153.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-exhaust-rated-flow-rate.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-exhaust.xml,74.887,74.887,36.46,36.46,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.046,0.744,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.056,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.99,0.0,12.902,9.071,0.62,0.0,0.0,0.0,0.0,2100.1,3799.1,3799.1,29.9,21.347,0.0,3.49,3.682,0.518,7.461,0.643,10.247,-12.815,0.0,0.0,0.0,8.23,-0.086,1.464,0.0,15.417,0.0,7.933,-7.961,-2.532,0.0,0.122,-0.286,-0.027,3.031,0.022,-0.824,11.598,0.0,0.0,0.0,-5.845,-0.082,-0.224,-3.078,-4.099,0.0,3.081,7.609,1.975,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,66.064,66.064,37.473,37.473,28.591,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.777,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.818,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.398,0.0,3.903,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5920.0,20152.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,66.067,66.067,37.473,37.473,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.472,0.0,0.0,4.259,0.801,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.78,0.0,13.916,9.071,0.616,0.0,0.0,0.0,0.0,2126.8,3730.7,3730.7,25.82,20.295,0.0,3.504,3.634,0.511,7.499,0.629,10.076,-12.716,0.0,0.0,0.0,8.323,-0.062,5.397,0.0,3.905,0.0,6.072,-7.818,-2.493,0.0,-0.004,-0.411,-0.044,2.849,-0.012,-1.234,11.697,0.0,0.0,0.0,-6.066,-0.058,-1.224,-3.559,-0.828,0.0,3.158,7.76,2.014,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20153.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.961,81.961,37.877,37.877,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.724,0.0,0.0,4.387,0.645,9.022,0.0,0.0,4.507,0.0,0.334,1.574,0.0,0.0,0.416,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.29,0.0,11.165,9.071,0.624,0.0,0.0,0.0,18.0,2190.4,4110.3,4110.3,36.243,23.259,0.0,3.173,3.718,0.523,7.454,0.655,10.373,-12.811,0.0,0.0,0.0,8.207,-0.123,3.852,0.0,9.589,0.0,16.897,-8.002,-2.544,0.0,0.13,-0.167,-0.01,3.26,0.053,-0.451,11.602,0.0,0.0,0.0,-5.542,-0.119,-0.571,0.0,-2.037,-9.045,4.599,7.559,1.963,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43270.0,16305.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7464.0,26227.0,11694.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.464,73.464,36.527,36.527,36.937,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,4.119,0.762,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,0.0,34.595,0.0,13.217,9.071,0.619,0.0,0.0,0.0,0.0,2096.5,3799.0,3799.0,29.715,21.331,0.0,3.485,3.669,0.516,7.467,0.641,10.213,-12.78,0.0,0.0,0.0,8.254,-0.085,1.51,0.0,14.179,0.0,7.669,-7.923,-2.52,0.0,0.094,-0.312,-0.03,2.998,0.016,-0.9,11.633,0.0,0.0,0.0,-5.876,-0.081,-0.238,-3.153,-3.621,0.0,3.128,7.648,1.988,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.289,65.289,37.463,37.463,27.825,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.261,0.802,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.06,0.0,13.934,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3711.3,3711.3,25.759,20.115,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.903,0.0,5.93,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.59,-0.834,0.0,3.152,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34064.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5919.0,20152.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.292,65.292,37.463,37.463,27.828,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.261,0.802,9.015,0.0,0.0,4.507,0.0,0.334,1.793,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.063,0.0,13.933,9.071,0.616,0.0,0.0,0.0,0.0,2123.8,3711.4,3711.4,25.76,20.115,0.0,3.509,3.634,0.511,7.497,0.629,10.08,-12.705,0.0,0.0,0.0,8.316,-0.065,4.802,0.0,3.905,0.0,5.931,-7.812,-2.491,0.0,-0.009,-0.417,-0.045,2.83,-0.013,-1.247,11.708,0.0,0.0,0.0,-6.098,-0.061,-1.103,-3.589,-0.834,0.0,3.152,7.766,2.016,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34066.0,8644.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5921.0,20153.0,6060.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,82.36,82.36,37.875,37.875,44.485,0.0,0.0,0.0,0.0,0.0,0.0,0.731,0.0,0.0,4.379,0.643,9.022,0.0,0.0,4.507,0.0,0.334,1.574,0.0,0.0,0.417,2.043,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.668,0.0,11.137,9.071,0.624,0.0,0.0,0.0,17.0,2187.4,4110.4,4110.4,36.638,23.253,0.0,3.168,3.719,0.523,7.454,0.655,10.372,-12.815,0.0,0.0,0.0,8.204,-0.12,4.108,0.0,9.583,0.0,17.044,-8.006,-2.546,0.0,0.134,-0.165,-0.009,3.263,0.054,-0.448,11.598,0.0,0.0,0.0,-5.541,-0.116,-0.58,0.0,-2.033,-9.06,4.588,7.555,1.962,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,43270.0,16305.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7464.0,26227.0,11694.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.536,73.536,36.528,36.528,37.008,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.119,0.762,9.018,0.0,0.0,4.507,0.0,0.334,0.897,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.662,0.0,13.216,9.071,0.619,0.0,0.0,0.0,0.0,2096.9,3799.0,3799.0,29.722,21.335,0.0,3.485,3.669,0.516,7.466,0.641,10.216,-12.78,0.0,0.0,0.0,8.252,-0.087,1.565,0.0,14.182,0.0,7.681,-7.924,-2.52,0.0,0.095,-0.312,-0.03,2.998,0.017,-0.896,11.633,0.0,0.0,0.0,-5.877,-0.083,-0.244,-3.152,-3.618,0.0,3.129,7.647,1.987,1354.7,998.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35980.0,8682.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7797.0,20974.0,6071.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1781.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-whole-house-fan.xml,57.725,57.725,33.919,33.919,23.806,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,2.372,0.355,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.671,2.042,0.0,0.0,0.319,0.365,1.513,1.529,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.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,22.294,0.0,6.046,9.071,0.624,0.0,0.0,0.0,0.0,2039.7,3472.1,3472.1,23.508,16.144,0.0,3.537,3.636,0.512,7.523,0.629,10.08,-12.691,0.0,0.0,0.0,8.411,-0.061,4.805,0.0,0.728,0.0,5.137,-7.799,-2.489,0.0,0.167,-0.225,-0.018,3.377,0.032,-0.685,11.723,0.0,0.0,0.0,-5.252,-0.056,-0.941,0.0,-0.129,-12.877,1.66,7.761,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-additional-properties.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills-pv-detailed-only.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills-pv-mixed.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills-pv.xml,59.22,1.956,35.594,-21.669,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-misc-defaults.xml,64.266,44.914,31.207,11.855,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.545,0.0,0.0,2.164,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.118,0.0,0.0,1.09,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.944,0.0,5.176,10.469,0.697,0.0,9.09,0.0,0.0,2329.9,3054.3,3054.3,26.39,15.079,0.0,3.498,3.693,0.519,7.44,1.121,10.342,-12.828,0.0,0.0,0.0,8.206,-0.107,1.535,0.0,15.111,0.0,2.863,-8.174,-2.551,0.0,0.765,-0.048,0.008,3.523,-0.182,-0.173,11.586,0.0,0.0,0.0,-5.121,-0.103,-0.185,0.0,-3.253,-11.716,0.426,8.485,1.957,1610.4,1574.8,10335.4,3642.3,2.903,36000.0,24000.0,0.0,6.8,91.76,31457.0,4631.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15868.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,64.612,45.26,31.232,11.88,33.38,0.0,0.0,0.0,0.0,0.0,0.0,0.551,0.0,0.0,2.166,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.139,0.0,0.0,1.086,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.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,31.245,0.0,5.183,10.469,0.697,0.0,9.09,0.0,0.0,2331.3,3059.9,3059.9,26.525,15.123,0.0,3.504,3.699,0.52,7.433,1.123,10.361,-12.834,0.0,0.0,0.0,8.186,-0.111,1.515,0.0,15.424,0.0,2.891,-8.185,-2.553,0.0,0.773,-0.041,0.009,3.52,-0.18,-0.151,11.579,0.0,0.0,0.0,-5.136,-0.107,-0.18,0.0,-3.293,-11.676,0.426,8.474,1.954,1610.4,1574.8,10335.5,3642.4,2.9,36000.0,24000.0,0.0,6.8,91.76,31556.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7423.0,15899.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-misc-emissions.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-generators-battery-scheduled.xml,77.954,69.765,37.329,29.14,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.729,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-generators-battery.xml,76.22,68.03,35.594,27.405,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -67,7 +67,7 @@ base-residents-0.xml,41.283,41.283,7.138,7.138,34.145,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,101.76,101.76,51.638,51.638,42.211,0.0,2.61,5.301,0.0,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2406.4,4609.8,4609.8,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,21021.0,6080.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,145.0,0.0,-655.0,800.0 base-residents-1-misc-loads-large-uncommon2.xml,80.706,80.706,49.212,49.212,23.583,2.61,0.0,0.0,5.301,0.0,0.0,0.363,0.0,0.0,4.504,0.864,3.884,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,4.297,1.024,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,5.687,1.187,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,15.197,3.56,0.614,0.0,0.0,0.0,0.0,2253.5,4350.1,4350.1,23.27,19.754,0.0,3.567,3.654,0.514,7.562,0.633,10.133,-12.663,0.0,0.0,0.0,8.354,-0.069,4.811,0.0,0.727,0.0,4.783,-9.276,-2.485,0.0,-0.077,-0.479,-0.054,2.643,-0.029,-1.442,11.75,0.0,0.0,0.0,-6.41,-0.066,-1.166,-3.993,-0.166,0.0,3.302,9.517,2.022,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33882.0,8639.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,5742.0,21021.0,6080.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,4520.0,145.0,0.0,-655.0,800.0 base-residents-1.xml,53.439,53.439,28.186,28.186,25.253,0.0,0.0,0.0,0.0,0.0,0.0,0.417,0.0,0.0,3.993,0.741,3.886,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.159,0.21,0.868,1.159,0.0,1.461,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.651,0.0,13.015,3.56,0.616,0.0,0.0,0.0,0.0,1592.6,3323.9,3323.9,23.879,18.485,0.0,3.521,3.628,0.51,7.477,0.628,10.062,-12.698,0.0,0.0,0.0,8.262,-0.064,4.801,0.0,0.725,0.0,5.417,-6.452,-2.49,0.0,0.001,-0.416,-0.045,2.824,-0.013,-1.249,11.715,0.0,0.0,0.0,-6.122,-0.06,-1.113,-3.597,-0.158,0.0,2.937,6.439,2.017,777.7,496.6,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-residents-5.xml,70.772,50.521,39.555,19.303,31.217,0.0,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.0,2.261,0.33,6.888,0.0,0.326,4.507,0.0,0.334,1.118,0.0,0.0,1.108,2.16,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.409,31.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,29.22,0.0,5.524,18.155,0.645,0.0,11.92,0.0,0.0,2758.8,3334.1,3334.1,26.006,15.439,0.0,3.802,3.696,0.52,7.492,0.647,10.282,-12.793,0.0,0.0,0.0,8.323,-0.087,1.528,0.0,15.037,0.0,2.708,-9.686,-2.53,0.0,0.3,-0.113,-0.002,3.492,0.063,-0.321,11.62,0.0,0.0,0.0,-5.127,-0.083,-0.197,0.0,-3.402,-12.284,0.453,10.013,1.977,2592.0,2707.5,20715.8,5546.8,1.882,36000.0,24000.0,0.0,6.8,91.76,31457.0,4631.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7324.0,15868.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,71.116,50.864,39.581,19.33,31.534,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,2.263,0.331,6.888,0.0,0.326,4.507,0.0,0.334,1.139,0.0,0.0,1.106,2.159,0.0,0.0,0.769,0.544,4.047,2.058,0.745,3.053,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.408,31.534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,0.0,5.53,18.155,0.645,0.0,11.92,0.0,0.0,2759.8,3339.8,3339.8,26.141,15.482,0.0,3.803,3.697,0.52,7.492,0.647,10.283,-12.793,0.0,0.0,0.0,8.321,-0.086,1.506,0.0,15.33,0.0,2.735,-9.689,-2.531,0.0,0.301,-0.111,-0.001,3.496,0.064,-0.315,11.62,0.0,0.0,0.0,-5.123,-0.082,-0.193,0.0,-3.464,-12.243,0.454,10.01,1.976,2592.0,2707.5,20715.9,5546.8,1.881,36000.0,24000.0,0.0,6.8,91.76,31556.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7423.0,15899.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1665.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,59.298,59.298,35.797,35.797,23.502,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.411,0.833,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.008,0.0,14.411,9.053,0.639,0.0,0.0,0.333,1.0,9416.3,10702.6,10702.6,37.375,22.443,0.0,3.605,3.668,0.517,7.594,0.642,10.187,-12.602,0.0,0.0,0.0,8.334,-0.062,5.307,0.0,0.78,0.0,5.131,-8.891,-2.51,0.0,-0.155,-0.47,-0.054,2.754,-0.028,-1.377,11.752,0.0,0.0,0.0,-6.244,-0.057,-1.253,-3.675,-0.171,0.0,3.299,8.24,2.0,1354.7,998.0,11252.4,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-schedules-detailed-mixed-timesteps-power-outage.xml,33.137,33.137,28.192,28.192,4.944,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.099,0.522,7.326,0.0,0.0,3.619,0.0,0.267,0.0,0.0,0.0,0.0,1.688,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.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.632,0.0,9.111,7.3,0.562,0.0,0.0,0.5,0.5,9382.2,10441.6,10441.6,41.885,22.029,0.0,2.598,2.445,0.341,4.238,0.332,6.445,-12.497,0.0,0.0,0.0,3.632,-0.104,3.367,0.0,0.383,0.0,1.033,-6.255,-1.596,0.0,-0.193,-0.549,-0.064,2.5,-0.053,-1.655,11.861,0.0,0.0,0.0,-7.408,-0.057,-1.32,-6.178,-0.205,0.0,2.184,8.386,2.023,1141.2,883.5,9207.2,2112.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-schedules-detailed-mixed-timesteps.xml,42.033,42.033,33.855,33.855,8.178,0.0,0.0,0.0,0.0,0.0,0.0,0.135,0.0,0.0,3.111,0.524,9.053,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,1.964,0.0,0.0,0.319,0.365,1.513,1.529,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.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,7.657,0.0,9.157,9.053,0.672,0.0,0.0,0.0,0.5,9378.7,10444.6,10444.6,31.99,22.032,0.0,2.907,2.8,0.392,5.382,0.419,7.495,-12.492,0.0,0.0,0.0,5.496,-0.058,3.852,0.0,0.58,0.0,1.756,-8.668,-2.486,0.0,-0.196,-0.553,-0.065,2.505,-0.053,-1.665,11.861,0.0,0.0,0.0,-7.339,-0.057,-1.322,-6.196,-0.206,0.0,2.193,8.386,2.023,1354.7,998.0,11253.7,2582.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -94,18 +94,18 @@ base.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4 house001.xml,86.984,86.984,46.492,46.492,40.493,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,15.453,4.241,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.397,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,17.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,19.03,0.0,49.979,10.404,2.678,0.0,0.0,0.0,0.0,1867.8,6837.5,6837.5,38.219,42.718,0.492,1.978,7.261,0.42,0.0,0.979,7.141,-4.994,0.0,0.0,0.479,1.221,-0.303,4.307,0.0,5.157,0.0,3.348,-5.668,-2.928,0.565,2.008,3.783,0.31,0.0,0.243,1.664,11.471,0.0,0.0,0.525,6.858,-0.289,-0.379,-1.822,-0.711,0.0,10.641,10.839,4.448,2104.4,2144.8,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,61222.0,24352.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,8478.0,111472.0,85248.0,9491.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3124.0,3780.0,6863.0,3503.0,2160.0,1200.0 house002.xml,68.385,68.385,40.431,40.431,27.954,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,14.493,3.319,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.739,0.0,39.708,7.517,2.89,0.0,0.0,0.0,0.0,1572.0,5480.1,5480.1,24.149,29.925,0.0,2.533,5.044,0.0,0.0,0.843,5.712,-4.099,0.0,0.0,0.0,1.73,-0.167,1.578,0.0,3.789,0.0,1.421,-4.319,-2.485,0.0,3.091,2.827,0.0,0.0,0.42,0.424,8.64,0.0,0.0,0.0,8.475,-0.161,-0.174,-1.342,-0.62,0.0,5.858,8.555,3.893,1610.8,1575.3,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47504.0,15296.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,4987.0,33040.0,14150.0,6700.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,1877.0,3320.0,3850.0,1752.0,1298.0,800.0 house003.xml,68.973,68.973,39.941,39.941,29.032,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.746,3.478,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.799,0.0,13.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,12.809,0.0,41.523,7.517,2.69,0.0,0.0,0.0,0.0,1652.5,5577.8,5577.8,26.562,33.681,0.651,2.794,4.669,0.0,0.0,0.977,6.242,-3.958,0.0,0.0,0.0,1.054,-0.192,1.997,0.0,3.943,0.0,1.662,-4.504,-2.69,0.794,3.053,2.631,0.0,0.0,0.651,1.117,9.819,0.0,0.0,0.0,6.527,-0.185,-0.209,-1.394,-0.618,0.0,6.501,8.848,4.182,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48036.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41330.0,18341.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3969.0,1752.0,1417.0,800.0 -house004.xml,137.165,137.165,75.285,75.285,61.879,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,29.324,9.249,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.746,0.0,16.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.993,0.0,108.604,8.975,3.51,0.0,0.0,0.0,106.0,3077.9,7936.4,7936.4,55.1,52.116,0.127,5.496,11.334,0.0,0.0,1.248,13.697,-5.912,0.0,0.0,0.0,3.077,-0.796,4.942,0.0,6.269,0.0,7.248,-6.2,-3.846,0.198,6.711,11.692,0.0,0.0,0.52,7.516,17.689,0.0,0.0,0.0,18.807,-0.784,1.026,-0.0,1.853,0.0,21.401,14.58,7.71,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76098.0,20960.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52111.0,18520.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4614.0,1285.0,2330.0,1000.0 +house004.xml,137.359,137.359,75.334,75.334,62.025,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,29.36,9.26,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.892,0.0,16.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,37.111,0.0,108.66,8.975,3.51,0.0,0.0,0.0,111.0,3078.4,7936.5,7936.5,55.12,52.097,0.128,5.497,11.341,0.0,0.0,1.249,13.711,-5.915,0.0,0.0,0.0,3.063,-0.798,5.046,0.0,6.275,0.0,7.269,-6.21,-3.853,0.198,6.712,11.699,0.0,0.0,0.521,7.53,17.685,0.0,0.0,0.0,18.793,-0.785,1.071,-0.0,1.859,0.0,21.42,14.57,7.703,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76098.0,20960.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52111.0,18520.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4614.0,1285.0,2330.0,1000.0 house005.xml,95.663,95.663,53.115,53.115,42.548,0.0,0.0,0.0,0.0,0.0,0.0,0.307,0.0,0.0,18.272,5.052,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.338,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.361,0.0,15.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,22.189,0.0,60.606,8.975,2.73,0.0,0.0,0.0,1.0,2101.7,7891.8,7891.8,46.458,53.404,0.0,3.025,8.175,0.268,0.0,1.356,9.416,-6.696,0.0,0.0,0.394,1.238,-0.402,5.051,0.0,5.087,0.0,4.495,-5.795,-3.626,0.0,2.993,4.308,0.213,0.0,0.282,2.413,15.363,0.0,0.0,0.416,7.53,-0.384,-0.458,-2.309,-0.709,0.0,14.553,11.105,5.524,1857.6,1860.1,12229.1,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,70734.0,26913.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,9418.0,64907.0,31861.0,13705.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3406.0,3550.0,6858.0,3503.0,2355.0,1000.0 -house006.xml,140.094,140.094,31.53,31.53,108.564,0.0,0.0,0.0,0.0,0.0,0.0,1.898,0.0,0.0,2.868,0.319,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.719,0.0,20.133,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.636,0.0,7.544,13.079,3.28,0.0,0.0,0.0,0.0,2056.0,2866.4,2866.4,40.812,15.273,0.0,4.26,22.269,1.99,37.087,1.864,17.625,-9.461,0.0,0.0,0.0,9.291,-0.35,9.535,0.0,4.366,0.0,0.0,-13.275,-6.376,0.0,0.176,-0.767,-0.043,2.86,-0.082,-0.518,4.316,0.0,0.0,0.0,-3.865,-0.349,-0.502,-1.553,-0.066,0.0,0.0,5.729,2.306,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 -house007.xml,139.998,139.998,33.595,33.595,106.404,0.0,0.0,0.0,0.0,0.0,0.0,1.665,0.0,0.0,2.46,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.738,0.0,23.278,3.047,3.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,72.254,0.0,5.557,15.626,3.272,0.0,0.0,0.0,0.0,2277.6,3040.9,3040.9,39.985,13.671,0.0,4.721,23.685,4.448,10.095,1.499,18.826,-9.395,0.0,0.0,0.076,11.569,-0.41,6.13,0.0,20.834,0.0,2.922,-15.58,-7.667,0.0,0.208,-0.661,-0.045,0.566,-0.043,-0.285,4.554,0.0,0.0,-0.009,-3.955,-0.405,-0.183,-1.312,-1.838,0.0,0.104,6.322,2.626,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44635.0,5476.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11845.0,1099.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 -house008.xml,184.582,184.582,38.878,38.878,145.703,0.0,0.0,0.0,0.0,0.0,0.0,2.521,0.0,0.0,3.528,0.513,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.27,0.0,26.371,3.452,3.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,105.789,0.0,10.041,18.122,3.216,0.0,0.0,0.0,0.0,2562.2,3850.6,3850.6,55.304,21.13,0.0,7.234,27.478,4.71,24.269,1.194,21.308,-7.825,0.0,0.0,1.277,17.851,-0.453,18.355,0.0,6.388,0.0,8.01,-16.744,-8.086,0.0,0.297,-1.099,-0.054,1.656,-0.086,-0.367,5.403,0.0,0.0,-0.107,-2.739,-0.453,-0.958,-1.735,-0.268,0.0,0.53,7.216,2.913,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68488.0,8921.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16084.0,280.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 +house006.xml,139.144,139.144,31.52,31.52,107.624,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,2.877,0.321,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.78,0.0,20.132,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.731,0.0,7.6,13.079,3.28,0.0,0.0,0.0,0.0,2052.4,2856.4,2856.4,40.572,15.233,0.0,4.259,22.26,1.989,37.095,1.863,17.622,-9.439,0.0,0.0,0.0,9.274,-0.35,8.596,0.0,4.365,0.0,0.0,-13.249,-6.365,0.0,0.174,-0.782,-0.044,2.852,-0.083,-0.526,4.337,0.0,0.0,0.0,-3.886,-0.349,-0.433,-1.562,-0.069,0.0,0.0,5.755,2.317,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 +house007.xml,140.0,140.0,33.597,33.597,106.403,0.0,0.0,0.0,0.0,0.0,0.0,1.667,0.0,0.0,2.46,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.738,0.0,23.278,3.047,3.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,72.256,0.0,5.557,15.626,3.272,0.0,0.0,0.0,0.0,2277.8,3040.9,3040.9,39.986,13.672,0.0,4.721,23.685,4.448,10.095,1.499,18.826,-9.395,0.0,0.0,0.076,11.569,-0.41,6.13,0.0,20.834,0.0,2.923,-15.58,-7.667,0.0,0.208,-0.661,-0.045,0.566,-0.043,-0.285,4.554,0.0,0.0,-0.009,-3.955,-0.405,-0.183,-1.312,-1.838,0.0,0.104,6.322,2.626,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44634.0,5476.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11845.0,1099.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 +house008.xml,183.479,183.479,38.868,38.868,144.612,0.0,0.0,0.0,0.0,0.0,0.0,2.497,0.0,0.0,3.539,0.515,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.179,0.0,26.37,3.452,3.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,104.761,0.0,10.105,18.122,3.216,0.0,0.0,0.0,0.0,2558.2,3839.1,3839.1,55.239,21.074,0.0,7.235,27.484,4.711,24.277,1.195,21.311,-7.817,0.0,0.0,1.281,17.85,-0.454,17.348,0.0,6.389,0.0,7.941,-16.733,-8.082,0.0,0.296,-1.105,-0.055,1.651,-0.086,-0.37,5.411,0.0,0.0,-0.108,-2.747,-0.454,-0.881,-1.746,-0.27,0.0,0.532,7.226,2.917,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68488.0,8921.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16084.0,280.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 house009.xml,155.055,155.055,33.756,33.756,121.299,0.0,0.0,0.0,0.0,0.0,0.0,2.058,0.0,0.0,2.379,0.281,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.165,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.627,0.0,23.285,3.047,3.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,86.336,0.0,5.315,15.626,3.278,0.0,0.0,0.0,0.0,2311.9,3123.5,3123.5,44.411,14.749,0.0,5.104,28.404,4.318,13.019,2.253,18.878,-8.216,0.0,0.0,0.266,15.646,-0.429,8.71,0.0,21.442,0.0,0.0,-15.819,-7.76,0.0,0.245,-0.674,-0.025,0.717,-0.072,-0.165,4.563,0.0,0.0,-0.028,-4.067,-0.425,-0.249,-1.225,-1.764,0.0,0.0,6.058,2.506,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44988.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,10820.0,12507.0,0.0,6052.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 -house010.xml,155.105,155.105,37.251,37.251,117.854,0.0,0.0,0.0,0.0,0.0,0.0,1.896,0.0,0.0,2.824,0.258,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.421,0.0,26.371,3.452,3.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,79.551,0.0,7.134,18.122,3.217,0.0,0.0,0.0,0.0,2497.9,3366.2,3366.2,45.752,16.277,0.874,4.93,25.497,4.914,9.734,1.265,22.974,-9.232,0.0,0.0,0.921,11.41,-0.462,19.599,0.0,6.404,0.0,4.989,-16.776,-8.075,0.023,0.218,-0.716,-0.083,0.536,-0.071,-0.698,5.116,0.0,0.0,-0.048,-4.127,-0.459,-0.982,-1.619,-0.249,0.0,0.329,7.165,2.905,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12826.0,701.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2620.0,261.0,1159.0,1200.0 -house011.xml,45.176,45.176,45.176,45.176,0.0,0.0,0.0,0.0,0.0,0.0,7.379,0.672,0.15,0.007,8.189,2.246,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.758,0.157,25.452,9.316,1.125,0.0,0.0,0.0,333.0,4925.1,3422.1,4925.1,18.659,16.084,0.0,2.685,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.247,-5.243,-2.073,0.0,1.68,1.307,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.573,8.132,2.829,0.0,1860.1,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,21499.0,8186.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3067.0,463.0,1604.0,1000.0 +house010.xml,154.008,154.008,37.241,37.241,116.767,0.0,0.0,0.0,0.0,0.0,0.0,1.872,0.0,0.0,2.836,0.259,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.334,0.0,26.371,3.452,3.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,78.526,0.0,7.197,18.122,3.216,0.0,0.0,0.0,0.0,2494.0,3356.3,3356.3,45.685,16.222,0.874,4.931,25.496,4.913,9.737,1.266,22.965,-9.214,0.0,0.0,0.924,11.4,-0.461,18.579,0.0,6.402,0.0,4.93,-16.743,-8.06,0.022,0.217,-0.731,-0.086,0.534,-0.072,-0.715,5.133,0.0,0.0,-0.048,-4.143,-0.457,-0.913,-1.632,-0.254,0.0,0.331,7.198,2.92,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12826.0,701.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2620.0,261.0,1159.0,1200.0 +house011.xml,45.284,45.284,45.284,45.284,0.0,0.0,0.0,0.0,0.0,0.0,7.448,0.713,0.149,0.007,8.185,2.248,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.948,0.157,25.447,9.316,1.125,0.0,0.0,0.0,332.0,4924.4,3422.3,4924.4,18.655,16.085,0.0,2.676,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.446,-5.243,-2.073,0.0,1.681,1.307,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.569,8.132,2.829,0.0,1860.1,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,21499.0,8186.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3067.0,463.0,1604.0,1000.0 house012.xml,35.766,35.766,35.766,35.766,0.0,0.0,0.0,0.0,0.0,0.0,4.991,0.265,0.0,0.0,5.712,1.444,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.625,0.0,15.949,7.775,1.158,0.0,0.0,0.0,0.0,2993.8,2816.8,2993.8,11.339,11.448,0.0,2.373,4.775,0.0,0.0,0.632,2.7,-1.856,0.0,0.0,2.027,0.0,-0.272,1.658,0.0,4.397,0.0,0.342,-4.206,-1.936,0.0,1.734,1.133,0.0,0.0,-0.027,0.502,3.486,0.0,0.0,1.579,0.0,-0.272,-0.148,-0.263,-0.688,0.0,0.271,6.26,2.439,0.0,1575.3,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,12005.0,637.0,2706.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1024.0,3320.0,2499.0,370.0,1329.0,800.0 -house013.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2286.0,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.24,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 -house014.xml,31.532,31.532,31.532,31.532,0.0,0.0,0.0,0.0,0.0,0.0,3.514,0.201,0.008,0.0,4.142,1.352,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.008,16.201,6.844,0.598,0.0,0.0,0.0,0.0,2934.7,2375.8,2934.7,11.209,10.685,0.0,1.693,3.689,0.0,0.0,0.586,3.033,-2.498,0.0,0.0,2.195,0.0,-0.258,1.731,0.0,1.121,0.0,1.496,-3.313,-1.604,0.0,1.134,0.561,0.0,0.0,-0.065,0.567,4.73,0.0,0.0,0.62,0.0,-0.257,-0.239,-0.371,-0.252,0.0,1.624,5.792,2.447,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1683.0,312.0,771.0,600.0 -house015.xml,30.538,30.538,30.538,30.538,0.0,0.0,0.0,0.0,0.0,0.0,2.989,0.166,0.0,0.0,3.771,1.231,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.476,0.0,14.663,6.844,0.854,0.0,0.0,0.0,0.0,2593.5,2286.0,2593.5,9.996,9.838,0.0,1.632,2.867,0.0,0.0,0.658,2.633,-2.172,0.0,0.0,2.087,0.0,-0.289,1.527,0.0,1.07,0.0,1.207,-3.26,-1.501,0.0,1.091,0.407,0.0,0.0,-0.084,0.243,3.757,0.0,0.0,0.563,0.0,-0.288,-0.24,-0.332,-0.267,0.0,1.418,6.018,2.462,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 +house013.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.894,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 +house014.xml,31.682,31.682,31.682,31.682,0.0,0.0,0.0,0.0,0.0,0.0,3.625,0.222,0.008,0.0,4.157,1.354,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.212,0.008,16.188,6.844,0.598,0.0,0.0,0.0,0.0,2969.9,2388.9,2969.9,11.22,10.743,0.0,1.698,3.703,0.0,0.0,0.588,3.045,-2.522,0.0,0.0,2.194,0.0,-0.256,1.948,0.0,1.126,0.0,1.628,-3.342,-1.62,0.0,1.14,0.578,0.0,0.0,-0.062,0.582,4.706,0.0,0.0,0.632,0.0,-0.256,-0.253,-0.367,-0.246,0.0,1.629,5.763,2.431,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1683.0,312.0,771.0,600.0 +house015.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.894,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,6.564,0.0,15.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,25.676,0.2,11.075,10.47,0.0,0.0,0.0,2.0,11.0,7490.7,3805.5,7490.7,43.399,19.024,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852,1758.9,1746.2,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,27224.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5286.0,18632.0,0.0,9139.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,92.628,92.628,27.628,27.628,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.394,0.588,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.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,42.966,0.0,9.661,11.132,3.429,0.0,0.0,154.0,94.0,1752.9,3654.3,3654.3,60.37,19.61,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676,1778.6,1769.0,13969.4,4664.0,0.0,60000.0,24000.0,0.0,16.16,89.24,36715.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11612.0,16973.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,0.0,4300.8,2813.2,4300.8,20.203,11.09,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167,1341.8,1265.0,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,20934.0,7542.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,12944.0,2711.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2871.0,1359.0,712.0,800.0 @@ -124,7 +124,7 @@ house030.xml,59.571,59.571,17.179,17.179,0.0,0.0,42.392,0.0,0.0,0.0,0.0,0.058,0. house031.xml,235.57,235.57,50.171,50.171,185.399,0.0,0.0,0.0,0.0,0.0,0.0,3.54,0.0,0.0,12.806,3.241,0.0,0.0,0.0,10.355,0.246,0.759,0.0,0.0,0.0,0.0,1.486,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.053,12.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.92,0.0,29.081,4.254,4.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,121.743,0.0,39.486,17.919,5.236,0.0,0.0,50.0,113.0,3196.8,7728.0,7848.9,125.756,49.799,0.0,14.436,41.981,1.048,6.618,1.392,20.047,-16.789,0.0,0.0,1.977,6.044,-0.86,56.94,0.001,0.653,0.0,9.881,-15.327,-6.477,0.0,2.267,5.191,0.176,2.824,0.116,0.498,16.921,0.0,0.0,0.227,-3.598,-0.827,-1.831,-0.833,-0.009,0.0,3.046,10.994,3.878,2593.1,2708.5,18308.0,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83120.0,13668.0,10261.0,0.0,650.0,23580.0,0.0,643.0,1726.0,7333.0,25259.0,43562.0,9684.0,13165.0,0.0,305.0,7760.0,0.0,-124.0,0.0,5345.0,3418.0,4010.0,8582.0,1662.0,5519.0,1400.0 house032.xml,102.299,102.299,15.55,15.55,86.749,0.0,0.0,0.0,0.0,0.0,0.0,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.091,0.0,0.518,0.0,0.0,0.0,0.0,1.583,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.859,4.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.52,0.0,16.252,2.201,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.391,0.0,0.0,7.996,4.946,0.0,0.0,154.0,0.0,1429.9,901.6,1429.9,50.645,0.0,0.0,10.388,8.743,1.918,20.355,1.409,8.345,-9.322,0.0,0.0,0.0,4.513,0.015,14.965,0.0,0.623,0.0,0.0,-8.206,-3.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36329.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1507.0,5647.0,6794.0,17271.0,0.0,6289.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.731,107.731,14.756,14.756,0.0,92.975,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.885,0.0,0.529,0.0,0.0,0.0,0.0,1.353,0.0,0.0,0.0,0.194,1.443,1.159,0.0,1.461,3.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,85.294,0.0,7.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,64.29,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1044.7,861.4,1044.7,48.451,0.0,0.0,19.12,14.557,0.0,0.0,1.0,11.111,-7.528,0.0,0.0,14.642,0.0,-0.368,18.592,0.0,0.791,0.0,0.0,-4.617,-3.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,924.7,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,19016.0,0.0,4578.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2667.0,0.0,1667.0,1000.0 -house034.xml,155.512,155.512,43.167,43.167,0.0,0.0,112.345,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.489,0.341,1.205,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,15.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,90.983,0.0,21.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,64.387,0.0,0.0,11.564,5.444,0.0,0.0,0.0,0.0,3011.6,2525.6,3011.6,86.69,0.0,0.0,8.856,26.894,0.0,2.842,1.895,26.585,-26.228,0.0,0.0,10.893,2.685,0.049,34.727,0.0,0.57,0.0,0.0,-14.646,-10.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.9,1746.2,10287.0,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61329.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4062.0,1995.0,4622.0,18068.0,34659.0,0.0,20217.0,0.0,482.0,4382.0,0.0,212.0,0.0,3369.0,2447.0,3550.0,4952.0,0.0,3952.0,1000.0 +house034.xml,155.512,155.512,43.167,43.167,0.0,0.0,112.345,0.0,0.0,0.0,0.0,0.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.489,0.341,1.205,0.0,0.0,0.0,0.0,1.85,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,15.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,90.983,0.0,21.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,64.387,0.0,0.0,11.564,5.444,0.0,0.0,0.0,0.0,3011.6,2525.6,3011.6,86.69,0.0,0.0,8.856,26.894,0.0,2.842,1.895,26.585,-26.228,0.0,0.0,10.893,2.685,0.049,34.727,0.0,0.57,0.0,0.0,-14.646,-10.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1758.9,1746.2,10287.0,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61328.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4062.0,1995.0,4622.0,18068.0,34659.0,0.0,20217.0,0.0,482.0,4382.0,0.0,212.0,0.0,3369.0,2447.0,3550.0,4952.0,0.0,3952.0,1000.0 house035.xml,64.19,64.19,17.261,17.261,46.929,0.0,0.0,0.0,0.0,0.0,0.0,0.832,0.0,0.0,1.679,0.109,0.0,0.0,0.0,5.435,0.0,0.534,0.0,0.0,0.0,0.0,2.043,0.0,0.0,0.223,0.194,0.114,0.079,0.0,1.461,4.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.453,0.0,9.639,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,27.469,0.0,2.545,3.916,3.836,0.0,0.0,104.0,0.0,1396.7,2033.2,2033.2,39.497,9.871,0.365,6.108,10.785,0.0,0.0,0.534,6.072,-7.324,0.0,0.0,7.708,0.0,0.006,13.582,0.0,0.488,0.0,0.0,-7.184,-3.475,0.065,-0.497,-1.432,0.0,0.0,-0.076,-1.356,7.069,0.0,0.0,-4.261,0.0,0.011,-2.603,-1.198,-0.123,0.0,0.0,5.102,1.96,924.7,783.8,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,16095.0,0.0,5641.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,83.077,83.077,25.512,25.512,57.565,0.0,0.0,0.0,0.0,0.0,0.0,0.997,0.0,0.0,5.633,0.939,0.0,0.0,0.0,5.446,0.0,0.536,0.0,0.0,0.0,0.0,1.459,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.088,0.0,17.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.95,0.0,13.749,8.213,5.849,0.0,0.0,106.0,124.0,1503.0,3330.8,3330.8,32.088,17.073,5.495,2.25,3.959,0.0,0.0,1.819,6.784,-7.199,0.0,0.0,20.975,0.0,-0.011,7.394,0.0,0.552,0.0,0.0,-5.657,-3.433,1.639,0.148,0.018,0.0,0.0,-0.203,-0.839,5.702,0.0,0.0,2.612,0.0,-0.011,-0.703,-0.947,-0.057,0.0,0.0,4.264,2.013,1341.8,1265.0,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,13120.0,0.0,4222.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,89.347,89.347,21.69,21.69,0.0,67.658,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.0,0.61,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.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,51.513,0.0,16.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,38.243,0.0,0.0,7.424,0.0,0.0,0.0,0.0,0.0,1464.6,1261.1,1464.6,29.92,0.0,0.0,16.726,11.32,0.0,0.0,1.564,7.658,-10.359,0.0,0.0,6.485,0.0,-0.377,14.717,0.0,0.46,0.0,0.0,-6.013,-3.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,1341.8,1265.0,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,26002.0,0.0,7077.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3270.0,0.0,2470.0,800.0 @@ -138,6 +138,6 @@ house044.xml,227.808,227.808,43.243,43.243,184.564,0.0,0.0,0.0,0.0,0.0,0.0,4.744 house045.xml,152.564,152.564,34.867,34.867,117.697,0.0,0.0,0.0,0.0,0.0,0.0,2.789,0.0,0.0,2.269,0.261,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.141,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.239,0.0,22.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,0.0,3.64,13.079,4.371,0.0,0.0,0.0,0.0,2334.2,3370.2,3370.2,47.1,13.395,3.573,3.08,15.119,2.29,32.745,1.135,17.715,-12.23,0.968,-0.414,0.086,12.635,-0.264,20.672,0.0,10.929,0.0,0.0,-13.33,-6.949,0.0,0.017,-1.029,-0.116,1.069,-0.082,-1.244,6.238,-0.061,0.4,-0.012,-3.972,-0.264,-1.124,-1.876,-1.218,0.0,0.0,4.895,2.111,1610.8,1575.4,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,56820.0,0.0,8558.0,455.0,398.0,28557.0,1494.0,31.0,2749.0,1367.0,13211.0,12890.0,0.0,7147.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,407.0,3320.0,1423.0,0.0,623.0,800.0 house046.xml,25.568,25.568,25.568,25.568,0.0,0.0,0.0,0.0,0.0,0.0,5.733,0.553,0.425,0.016,3.826,0.963,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.666,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.334,0.442,12.834,4.303,0.618,0.0,0.0,0.0,1.0,4115.7,2456.1,4115.7,17.085,13.361,0.0,2.519,3.835,0.0,0.0,0.329,2.242,-1.678,0.0,0.0,-0.158,0.0,-0.307,8.902,0.0,0.38,0.0,3.067,-3.268,-0.481,0.0,1.293,2.563,0.0,0.0,0.028,0.803,2.422,0.0,0.0,-0.157,0.0,-0.306,-0.42,-0.218,0.023,0.0,1.871,4.427,0.548,596.8,442.4,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19947.0,4038.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,9476.0,15226.0,3926.0,3183.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1896.0,2860.0,3344.0,483.0,2461.0,400.0 house047.xml,21.532,21.532,14.849,14.849,6.683,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,1.073,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.335,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.496,0.0,1.506,4.202,0.0,0.0,0.0,0.0,0.0,872.9,989.4,989.4,4.818,2.615,0.0,-0.001,0.771,0.126,0.0,0.0,1.725,-0.562,0.0,0.0,0.0,1.363,-0.013,1.575,0.0,4.983,0.0,0.219,-3.202,-0.511,0.0,-0.001,0.108,0.034,0.0,0.0,-0.043,0.795,0.0,0.0,0.0,-1.085,-0.013,-0.216,-0.368,-1.32,0.0,-0.0,3.204,0.41,251.7,442.4,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7413.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,3785.0,4112.0,0.0,478.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1600.0,0.0,1200.0,400.0 -house048.xml,92.042,92.042,39.344,39.344,52.698,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,12.626,3.699,0.0,0.0,0.0,3.689,0.085,0.499,3.033,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.766,0.0,12.592,0.0,3.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,29.759,0.0,51.767,7.249,2.658,0.0,0.0,0.0,0.0,1514.9,5614.8,5614.8,42.483,34.051,1.023,2.627,11.996,0.0,0.0,0.804,4.608,-2.543,0.0,0.0,0.056,1.968,-0.572,6.807,0.0,4.214,0.0,6.499,-6.341,-1.49,1.322,1.001,9.312,0.0,0.0,0.567,3.689,4.25,0.0,0.0,0.075,10.085,-0.56,0.536,-0.622,1.976,0.0,7.0,11.153,2.199,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29600.0,8415.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4493.0,1127.0,2366.0,1000.0 -house049.xml,36.165,36.165,32.667,32.667,3.498,0.0,0.0,0.0,0.0,0.0,8.24,0.05,0.0,0.0,7.625,0.191,2.645,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.952,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.36,0.0,30.615,4.258,1.319,0.0,0.0,0.0,133.0,4683.0,2827.5,4683.0,13.283,15.961,0.0,1.364,4.328,0.0,0.0,0.0,4.25,-5.816,0.0,0.0,0.0,1.213,-0.089,2.666,0.0,1.852,0.0,0.0,-2.005,-0.473,0.0,1.699,7.248,0.0,0.0,0.0,3.034,9.851,0.0,0.0,0.0,3.487,-0.088,-0.013,-2.938,0.719,0.0,0.0,7.157,1.0,728.6,567.6,7487.5,928.6,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,52.477,52.477,21.694,21.694,30.782,0.0,0.0,0.0,0.0,0.0,0.0,0.288,0.0,0.0,1.913,0.324,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.18,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.867,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.475,0.0,5.159,8.571,0.0,0.0,0.0,0.0,0.0,1104.2,2906.4,2906.4,11.283,17.416,0.0,4.13,6.499,0.0,0.0,2.029,5.128,-4.19,0.0,0.0,4.893,0.0,-0.158,2.662,0.0,3.672,0.0,2.015,-9.065,-1.209,0.0,-0.252,-0.23,0.0,0.0,-0.366,0.342,4.046,0.0,0.0,-0.915,0.0,-0.157,-0.518,-2.474,-0.708,0.0,0.594,5.246,0.573,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7746.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17951.0,5197.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,1244.0,110.0,334.0,800.0 +house048.xml,92.253,92.253,39.372,39.372,52.88,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,12.65,3.706,0.0,0.0,0.0,3.689,0.085,0.499,3.029,0.0,0.0,0.0,2.32,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.948,0.0,12.592,0.0,3.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,29.906,0.0,51.819,7.249,2.658,0.0,0.0,0.0,0.0,1514.7,5614.9,5614.9,42.51,34.056,1.023,2.628,11.997,0.0,0.0,0.804,4.609,-2.544,0.0,0.0,0.056,1.968,-0.571,6.944,0.0,4.218,0.0,6.511,-6.345,-1.492,1.322,1.001,9.313,0.0,0.0,0.567,3.691,4.249,0.0,0.0,0.075,10.086,-0.559,0.573,-0.621,1.977,0.0,7.014,11.148,2.197,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29600.0,8415.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4493.0,1127.0,2366.0,1000.0 +house049.xml,35.929,35.929,32.431,32.431,3.498,0.0,0.0,0.0,0.0,0.0,8.056,0.049,0.0,0.0,7.579,0.189,2.642,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.953,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.193,0.0,30.477,4.258,1.319,0.0,0.0,0.0,116.0,4661.1,2827.2,4661.1,13.204,15.962,0.0,1.361,4.324,0.0,0.0,0.0,4.245,-5.804,0.0,0.0,0.0,1.22,-0.089,2.492,0.0,1.85,0.0,0.0,-2.002,-0.472,0.0,1.692,7.231,0.0,0.0,0.0,3.016,9.863,0.0,0.0,0.0,3.484,-0.089,-0.087,-2.956,0.712,0.0,0.0,7.159,1.001,728.6,567.6,7489.4,928.8,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,52.092,52.092,21.703,21.703,30.389,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,1.924,0.327,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.182,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.474,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.091,0.0,5.21,8.571,0.0,0.0,0.0,0.0,0.0,1103.2,2893.5,2893.5,11.12,17.322,0.0,4.132,6.505,0.0,0.0,2.03,5.143,-4.159,0.0,0.0,4.886,0.0,-0.169,2.253,0.0,3.674,0.0,1.971,-9.039,-1.205,0.0,-0.26,-0.242,0.0,0.0,-0.37,0.342,4.077,0.0,0.0,-0.934,0.0,-0.168,-0.441,-2.495,-0.716,0.0,0.596,5.273,0.576,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7746.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17951.0,5197.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,1244.0,110.0,334.0,800.0 diff --git a/workflow/tests/base_results/results_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index bb6af8964..ea97a0442 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -17,29 +17,29 @@ base-location-honolulu-hi.xml,4393.18,144.0,4249.18,0.0,4393.18,0.0,0.0,0.0,0.0, base-location-miami-fl.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-location-phoenix-az.xml,1624.57,144.0,1336.53,0.0,1480.53,144.0,0.04,144.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-portland-or.xml,1205.85,144.0,811.41,0.0,955.41,144.0,106.44,250.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-balanced.xml,2120.75,144.0,1375.12,0.0,1519.12,144.0,457.63,601.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-mechvent-balanced.xml,2111.83,144.0,1374.67,0.0,1518.67,144.0,449.16,593.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-mechvent-bath-kitchen-fans.xml,1866.04,144.0,1309.87,0.0,1453.87,144.0,268.17,412.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-cfis-airflow-fraction-zero.xml,2047.52,144.0,1371.23,0.0,1515.23,144.0,388.29,532.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-mechvent-cfis-airflow-fraction-zero.xml,2048.29,144.0,1371.23,0.0,1515.23,144.0,389.06,533.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-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,1378.03,144.0,1234.03,0.0,1378.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-mechvent-cfis-supplemental-fan-exhaust.xml,1983.32,144.0,1321.75,0.0,1465.75,144.0,373.57,517.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-cfis-supplemental-fan-supply.xml,2006.07,144.0,1322.95,0.0,1466.95,144.0,395.12,539.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-cfis.xml,2058.15,144.0,1369.08,0.0,1513.08,144.0,401.07,545.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-mechvent-erv-atre-asre.xml,1966.05,144.0,1375.15,0.0,1519.15,144.0,302.9,446.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1966.08,144.0,1375.15,0.0,1519.15,144.0,302.93,446.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-evap-cooler-only-ducted.xml,1378.02,144.0,1234.02,0.0,1378.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,1989.01,144.0,1321.84,0.0,1465.84,144.0,379.17,523.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-cfis-supplemental-fan-supply.xml,2006.86,144.0,1322.98,0.0,1466.98,144.0,395.88,539.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-cfis.xml,2058.89,144.0,1369.08,0.0,1513.08,144.0,401.81,545.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-mechvent-erv-atre-asre.xml,1957.58,144.0,1374.8,0.0,1518.8,144.0,294.78,438.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-erv.xml,1957.62,144.0,1374.8,0.0,1518.8,144.0,294.82,438.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-mechvent-exhaust-rated-flow-rate.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-exhaust.xml,2033.17,144.0,1338.1,0.0,1482.1,144.0,407.07,551.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-mechvent-hrv-asre.xml,1966.15,144.0,1375.27,0.0,1519.27,144.0,302.88,446.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.xml,1966.18,144.0,1375.27,0.0,1519.27,144.0,302.91,446.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-multiple.xml,2145.1,144.0,1390.1,0.0,1534.1,144.0,467.0,611.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2019.84,144.0,1340.56,0.0,1484.56,144.0,391.28,535.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-mechvent-hrv-asre.xml,1957.68,144.0,1374.92,0.0,1518.92,144.0,294.76,438.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-hrv.xml,1957.72,144.0,1374.92,0.0,1518.92,144.0,294.8,438.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-mechvent-multiple.xml,2149.26,144.0,1390.02,0.0,1534.02,144.0,471.24,615.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-supply.xml,2020.64,144.0,1340.6,0.0,1484.6,144.0,392.04,536.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-mechvent-whole-house-fan.xml,1785.03,144.0,1244.85,0.0,1388.85,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-misc-additional-properties.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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-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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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,688.61,108.0,778.02,-591.68,294.34,144.0,250.27,394.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,684.21,108.0,742.14,-560.2,289.94,144.0,250.27,394.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,648.23,108.0,701.17,-555.2,253.96,144.0,250.27,394.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 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,857.85,144.0,1306.32,-986.74,463.58,144.0,250.27,394.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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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 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,634.61,465.0,1251.79,-1474.07,242.73,132.0,259.88,391.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,94.8,465.0,1251.79,-2013.87,-297.08,132.0,259.88,391.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,-328.02,210.0,1251.79,-2181.7,-719.9,132.0,259.88,391.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-misc-bills.xml,1799.67,144.0,1251.79,0.0,1395.79,144.0,259.88,403.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.3,144.0,1145.2,-710.1,579.1,144.0,350.2,494.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-misc-defaults.xml,1077.62,144.0,1146.11,-710.1,580.01,144.0,353.61,497.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-misc-emissions.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-misc-generators-battery-scheduled.xml,2294.79,144.0,1369.2,0.0,1513.2,144.0,340.31,484.31,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,2231.91,144.0,1306.32,0.0,1450.32,144.0,340.31,484.31,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 @@ -67,7 +67,7 @@ base-residents-0.xml,911.7,144.0,261.99,0.0,405.99,144.0,361.71,505.71,0.0,0.0,0 base-residents-1-misc-loads-large-uncommon.xml,2780.65,144.0,1895.15,0.0,2039.15,144.0,447.15,591.15,0.0,0.0,0.0,0.0,70.84,70.84,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2514.72,144.0,1806.12,0.0,1950.12,144.0,249.82,393.82,0.0,91.27,91.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.51,79.51,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1589.94,144.0,1034.43,0.0,1178.43,144.0,267.51,411.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-residents-5.xml,1327.14,144.0,1451.58,-743.14,852.44,144.0,330.7,474.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-5.xml,1331.46,144.0,1452.55,-743.14,853.41,144.0,334.05,478.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-schedules-detailed-all-10-mins.xml,1850.71,144.0,1313.75,0.0,1457.75,144.0,248.96,392.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-mixed-timesteps-power-outage.xml,1375.05,144.0,1034.67,0.0,1178.67,144.0,52.38,196.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-schedules-detailed-mixed-timesteps.xml,1617.13,144.0,1242.5,0.0,1386.5,144.0,86.63,230.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 @@ -94,18 +94,18 @@ base.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.27,0.0,0.0,0.0,0.0,0 house001.xml,2409.2,144.0,1701.55,0.0,1845.55,144.0,419.65,563.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 house002.xml,2057.43,144.0,1479.73,0.0,1623.73,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 house003.xml,2050.67,144.0,1461.79,0.0,1605.79,144.0,300.88,444.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 -house004.xml,3684.66,144.0,2755.36,0.0,2899.36,144.0,641.3,785.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 +house004.xml,3687.95,144.0,2757.14,0.0,2901.14,144.0,642.81,786.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 house005.xml,2672.9,144.0,1943.95,0.0,2087.95,144.0,440.95,584.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 -house006.xml,2279.58,144.0,1172.74,0.0,1316.74,144.0,818.84,962.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 -house007.xml,2340.07,144.0,1249.53,0.0,1393.53,144.0,802.54,946.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 -house008.xml,2833.0,144.0,1446.05,0.0,1590.05,144.0,1098.95,1242.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 +house006.xml,2272.11,144.0,1172.36,0.0,1316.36,144.0,811.75,955.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 +house007.xml,2340.15,144.0,1249.61,0.0,1393.61,144.0,802.54,946.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 +house008.xml,2824.38,144.0,1445.66,0.0,1589.66,144.0,1090.72,1234.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 house009.xml,2458.42,144.0,1255.53,0.0,1399.53,144.0,914.89,1058.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 -house010.xml,2562.43,144.0,1385.53,0.0,1529.53,144.0,888.9,1032.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house011.xml,1601.51,144.0,1457.51,0.0,1601.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 +house010.xml,2553.85,144.0,1385.15,0.0,1529.15,144.0,880.7,1024.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 +house011.xml,1604.99,144.0,1460.99,0.0,1604.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 house012.xml,1297.91,144.0,1153.91,0.0,1297.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 -house013.xml,1129.24,144.0,985.24,0.0,1129.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 -house014.xml,1161.31,144.0,1017.31,0.0,1161.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house015.xml,1129.24,144.0,985.24,0.0,1129.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 +house013.xml,1132.42,144.0,988.42,0.0,1132.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 +house014.xml,1166.14,144.0,1022.14,0.0,1166.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 +house015.xml,1132.42,144.0,988.42,0.0,1132.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 house016.xml,2711.32,144.0,1759.27,0.0,1903.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,808.05,808.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house017.xml,2104.95,144.0,1008.57,0.0,1152.57,144.0,808.38,952.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 house018.xml,1736.63,144.0,1592.63,0.0,1736.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 @@ -138,6 +138,6 @@ house044.xml,3288.47,144.0,1608.41,0.0,1752.41,144.0,1392.06,1536.06,0.0,0.0,0.0 house045.xml,2472.57,144.0,1296.85,0.0,1440.85,144.0,887.72,1031.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 house046.xml,968.88,144.0,824.88,0.0,968.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 house047.xml,1015.71,144.0,657.22,0.0,801.22,144.0,70.49,214.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 -house048.xml,2274.09,144.0,1439.94,0.0,1583.94,144.0,546.15,690.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 -house049.xml,1510.8,144.0,1199.66,0.0,1343.66,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,1249.06,144.0,647.27,0.0,791.27,144.0,313.79,457.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 +house048.xml,2277.03,144.0,1440.99,0.0,1584.99,144.0,548.04,692.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 +house049.xml,1502.16,144.0,1191.02,0.0,1335.02,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house050.xml,1245.3,144.0,647.52,0.0,791.52,144.0,309.78,453.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 From 1fb3d2ee13500422b6dcb703663166f7ec032f50 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Mar 2024 06:07:39 +0000 Subject: [PATCH 26/35] Latest results. --- workflow/tests/base_results/EPA_Tests.csv | 10 +- ...T_Test_4.2_HERS_AutoGen_Reference_Home.csv | 2 +- .../RESNET_Test_4.3_HERS_Method.csv | 10 +- ...ther_HERS_Method_301_2014_PreAddendumE.csv | 6 +- ...ther_HERS_Method_301_2019_PreAddendumA.csv | 10 +- workflow/tests/base_results/real_homes.csv | 164 +++++++-------- workflow/tests/base_results/sample_files1.csv | 192 +++++++++--------- workflow/tests/base_results/sample_files2.csv | 191 ++++++++--------- 8 files changed, 293 insertions(+), 292 deletions(-) diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 8dcbd29d7..d792cee2c 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,5 +1,5 @@ [Version] XML,Reference Home ERI,Rated Home ERI -[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.2,67.2 +[MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,67.19,67.19 [MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,74.66,74.66 [MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,73.39,73.39 [MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,62.14,62.14 @@ -9,11 +9,11 @@ [MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.37,49.37 [MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,60.22,60.22 [SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,73.4,73.4 -[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.27,81.27 -[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.51,71.51 +[SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,81.29,81.29 +[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,71.5,71.5 [SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,64.49,64.49 -[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.37,64.37 +[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,64.38,64.38 [SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.42,58.42 [SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,51.91,51.91 -[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.74,50.74 +[SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,50.75,50.75 [SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,52.65,52.65 diff --git a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv index 66905f240..1363b5f8b 100644 --- a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv +++ b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,223.88,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999729,1.0000045,1.0000203,0.999993 +e-Ratio,0.9999829,1.0000045,1.0000203,0.9999848 diff --git a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv index d9b0ee11c..aa8dfab59 100644 --- a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv +++ b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,160.65,23.46,5.27,10.94,17.97,2.63,11.97,40.06,4.57,12.58,20.23,-0.14966 -L100A-02.xml,151.3,22.32,5.77,10.94,17.2,2.87,18.89,40.38,4.54,14.51,22.2,-0.14665 -L100A-03.xml,148.93,22.67,5.24,8.75,36.08,3.44,9.78,74.36,4.48,10.38,21.06,-0.16581 -L100A-04.xml,127.97,23.86,5.5,13.07,18.26,2.75,14.1,25.78,4.76,14.7,21.17,-0.14966 -L100A-05.xml,126.22,23.03,5.48,10.94,36.65,3.58,11.97,59.99,4.71,12.57,22.2,-0.16594 +L100A-01.xml,160.65,23.46,5.27,10.94,17.97,2.63,11.97,40.06,4.57,12.58,20.23,-0.14977 +L100A-02.xml,151.3,22.32,5.77,10.94,17.2,2.87,18.89,40.38,4.54,14.51,22.2,-0.14685 +L100A-03.xml,148.93,22.66,5.24,8.75,36.08,3.42,9.78,74.36,4.45,10.38,21.06,-0.16646 +L100A-04.xml,127.97,23.86,5.5,13.07,18.26,2.75,14.1,25.78,4.76,14.7,21.17,-0.14977 +L100A-05.xml,126.26,23.02,5.48,10.94,36.65,3.55,11.97,59.98,4.67,12.57,22.2,-0.1663 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv index b81e3f7f0..e344e3136 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,153.27,23.41,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08, +L100A-01.xml,153.27,23.4,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08, L100A-02.xml,144.34,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16, -L100A-03.xml,144.19,22.82,5.27,8.65,36.28,2.93,9.68,74.22,3.78,10.28,21.87, +L100A-03.xml,144.21,22.81,5.26,8.65,36.28,2.91,9.68,74.21,3.76,10.28,21.87, L100A-04.xml,120.08,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16, -L100A-05.xml,121.24,22.97,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16, +L100A-05.xml,121.22,22.96,5.52,10.83,36.52,3.02,11.86,59.93,3.86,12.46,23.16, diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv index ce5c3d8fb..995ef290b 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,158.06,23.41,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08,-0.14093 -L100A-02.xml,148.76,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16,-0.13795 -L100A-03.xml,148.25,22.61,5.28,8.65,35.96,2.92,9.68,74.22,3.78,10.28,21.87,-0.16182 -L100A-04.xml,125.05,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16,-0.14093 -L100A-05.xml,125.59,22.97,5.53,10.83,36.52,3.03,11.86,59.93,3.88,12.46,23.16,-0.16165 +L100A-01.xml,158.07,23.4,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08,-0.14111 +L100A-02.xml,148.76,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16,-0.13808 +L100A-03.xml,148.28,22.61,5.27,8.65,35.96,2.9,9.68,74.21,3.76,10.28,21.87,-0.16187 +L100A-04.xml,125.05,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16,-0.14111 +L100A-05.xml,125.58,22.96,5.52,10.83,36.52,3.02,11.86,59.93,3.86,12.46,23.16,-0.16176 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 93ca26ed9..f1be1cb19 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,89 +1,89 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -house001.xml,62.67,31.972,21.37,34.0979,0.21374,1.0795,0.9705,1.0179,1.0665,1.0,19.864,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2477,0.8521,1.2821,0.2625,1.6393,5.5795,1.1293,4.0052,0.0,0.0,8.9135,1.197,7.7055,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5819.88,7644.8,57.42,1.0,57.42,62.67,62.67,0.0,46.56,1.0,46.56,62.67,62.67,0.0,59.89,33.336,21.2934,35.5526,0.21374,1.0795,0.9705,1.0179,1.0665,1.0,19.8364,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8026,0.2396,0.8512,1.2821,0.2625,1.6393,5.5506,1.0868,4.0011,0.0,0.0,8.8663,1.191,7.7055,9.78,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house002.xml,70.23,115.239,79.5892,113.323,0.18473,0.9834,1.0,1.0,0.9834,1.0,69.18,0.0,0.0,52.3,21.41,9.53,42.22,12.28,10.55,30.8,1.19,0.0,0.5491,0.4579,0.9819,0.4432,0.2625,1.087,34.1428,11.1073,8.5301,0.0,0.0,27.5612,6.3691,9.443,27.56,6.37,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.11,12589.03,18002.31,50.88,1.0,50.88,70.23,70.23,0.0,48.41,1.0,48.41,70.23,70.23,0.0,64.81,123.611,78.7839,121.5558,0.18473,0.9834,1.0,1.0,0.9834,1.0,68.716,0.0,0.0,60.62,21.5,9.53,48.65,12.81,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.9157,10.5849,8.5293,0.0,0.0,27.2172,6.3051,9.443,27.22,6.31,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 -house003.xml,62.92,88.645,55.362,87.9853,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.5606,0.0,0.0,28.19,21.63,8.82,31.39,12.32,16.03,29.0,1.0,0.0,1.4119000000000002,0.461,0.9324,1.7253,0.2625,1.6949,18.2952,11.9779,1.9778,0.0,0.0,18.9375,6.8221,3.5952,19.729999999999997,6.82,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,74.02,9462.7,12880.13,49.15,1.0,49.15,62.92,62.92,0.0,47.2,1.0,47.2,62.92,62.92,0.0,59.44,92.157,54.3728,91.4712,0.24242,0.9926,1.0,1.0,0.9926,1.0,44.2032,0.0,0.0,31.95,21.43,8.82,35.08,12.76,16.04,29.0,0.97,0.0,1.4140000000000001,0.441,0.9318,1.7253,0.2625,1.6949,17.9941,11.3373,1.9764,0.0,0.0,18.5709,6.7491,3.5952,19.35,6.75,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 -house004.xml,60.97,90.446,57.5881,94.4507,0.3198,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.75,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1652,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.53,4964.51,7146.14,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.931,57.7752,104.3555,0.31979,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.38,0.5657,4.8635,0.0,0.0,30.6663,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 +house001.xml,62.67,31.972,21.37,34.0981,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.864,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2477,0.8521,1.2821,0.2625,1.6393,5.5795,1.1293,4.0052,0.0,0.0,8.9135,1.197,7.7055,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5819.88,7644.8,57.42,1.0,57.42,62.67,62.67,0.0,46.56,1.0,46.56,62.67,62.67,0.0,59.89,33.336,21.2934,35.5528,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.8364,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8026,0.2396,0.8512,1.2821,0.2625,1.6393,5.5506,1.0868,4.0011,0.0,0.0,8.8663,1.191,7.7055,9.78,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house002.xml,70.22,115.263,79.5937,113.3464,0.18474,0.9834,1.0,1.0,0.9834,1.0,69.183,0.0,0.0,52.32,21.41,9.53,42.24,12.28,10.55,30.8,1.19,0.0,0.5491,0.4579,0.9819,0.4432,0.2625,1.087,34.1472,11.1073,8.5301,0.0,0.0,27.5652,6.3691,9.443,27.57,6.37,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.1,12589.73,18006.37,50.83,1.0,50.83,70.22,70.22,0.0,48.37,1.0,48.37,70.22,70.22,0.0,64.8,123.635,78.7843,121.5792,0.18474,0.9834,1.0,1.0,0.9834,1.0,68.719,0.0,0.0,60.65,21.5,9.53,48.67,12.81,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.917,10.5841,8.5293,0.0,0.0,27.2192,6.3051,9.443,27.22,6.31,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 +house003.xml,62.92,88.641,55.361,87.9812,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.5606,0.0,0.0,28.19,21.63,8.82,31.39,12.32,16.03,29.0,1.0,0.0,1.4119000000000002,0.4609,0.9324,1.7253,0.2625,1.6949,18.296300000000002,11.976,1.9778,0.0,0.0,18.9375,6.8221,3.5952,19.729999999999997,6.82,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,74.02,9462.73,12879.78,49.15,1.0,49.15,62.92,62.92,0.0,47.2,1.0,47.2,62.92,62.92,0.0,59.44,92.153,54.3719,91.4671,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.2032,0.0,0.0,31.95,21.43,8.82,35.08,12.76,16.04,29.0,0.97,0.0,1.4140000000000001,0.441,0.9318,1.7253,0.2625,1.6949,17.9931,11.3373,1.9764,0.0,0.0,18.5709,6.7491,3.5952,19.35,6.75,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 +house004.xml,60.97,90.448,57.588,94.454,0.3199,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.76,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1651,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.52,4964.55,7146.29,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.933,57.7773,104.3589,0.31989,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.3821,0.5657,4.8635,0.0,0.0,30.6683,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 house005.xml,60.32,28.235,18.3565,30.4326,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.788,0.0,0.0,5.0,4.01,5.78,4.33,2.28,12.12,12.72,0.72,0.0,0.5125,0.4626,0.8089,0.4432,0.2625,1.6949,1.5782,2.8722,0.8716,2.3849,0.0366,1.365,1.63,1.8264,1.37,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.36,2692.93,2997.34,49.97,1.0,49.97,60.32,60.32,0.0,44.75,1.0,44.75,60.32,60.32,0.0,58.43,29.066,18.3044,31.3282,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.7682,0.0,0.0,5.92,3.94,5.78,4.97,2.29,12.13,12.71,0.72,0.0,0.5275,0.4518,0.8079,0.4432,0.2625,1.6949,1.6137,2.791,0.8706,2.3805,0.0366,1.356,1.622,1.8264,1.36,1.62,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 -house006.xml,71.74,92.114,67.327,93.844,0.23948,1.0022,1.0165,1.0,1.0188,1.0,57.422,0.0,0.0,32.58,20.6,10.53,24.52,11.92,11.82,27.5,0.91,0.0,1.1782,0.9077999999999999,0.9796,0.8864,0.525,1.0989,22.3455,12.8279,9.4726,0.0,0.0,16.813200000000002,7.42,10.6265,16.82,7.42,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.99,10225.1,13750.82,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.095,66.747,95.8622,0.23948,1.0022,1.0165,1.0,1.0188,1.0,57.268,0.0,0.0,34.74,20.48,10.53,26.18,12.16,11.82,27.49,0.85,0.0,1.1766,0.8844000000000001,0.9796,0.8864,0.525,1.0989,22.1667,12.4267,9.4726,0.0,0.0,16.7002,7.378,10.6265,16.700000000000003,7.38,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 -house007.xml,76.94,46.876,38.1153,49.5388,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,15.98,4.62,8.84,13.68,2.59,9.87,17.03,0.41,0.0,0.518,0.4679,0.9739,0.4432,0.2625,1.087,13.3192,1.08,7.592,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.2,8954.51,10697.87,57.11,1.0,57.11,76.94,76.94,0.0,48.03,1.0,48.03,76.94,76.94,0.0,73.9,48.977,38.2493,51.7591,0.23468,1.0534,0.9838,1.0197,1.0568,1.0,36.6,0.0,0.0,18.29,4.48,8.84,15.47,2.57,9.87,17.02,0.35,0.0,0.5242,0.4572,0.9735,0.4432,0.2625,1.087,13.4809,1.0554,7.589,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 -house008.xml,62.86,161.24,98.5552,156.7814,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.8726,0.0,0.0,97.9,10.46,13.21,155.99,6.65,22.24,38.43,1.24,0.0,0.8046,0.4129,1.0241,1.2821,0.2625,1.7241,47.6657,5.6347,7.7118,0.0,0.0,75.9538,3.583,12.9828,83.84,3.58,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.57,24536.57,34298.38,51.56,1.0,51.56,62.86,62.86,0.0,46.66,1.0,46.66,62.86,62.86,0.0,57.41,175.769,98.115,170.9086,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.7344,0.0,0.0,112.92,10.12,13.21,179.93,6.72,22.26,38.43,1.1,0.0,0.8046,0.3951,1.0235,1.2821,0.2625,1.7241,47.5117,5.354,7.7073,0.0,0.0,75.7083,3.558,12.9828,83.57,3.56,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 -house009.xml,62.57,99.612,63.8505,102.0464,0.28589,1.0046,1.0197,1.0,1.0244,1.0,47.5506,0.0,0.0,20.07,41.83,8.98,32.15,24.91,16.38,27.85,0.88,0.0,0.8004,0.4409,0.9448,1.2821,0.2625,1.7241,11.1288,22.589,6.2937,0.0,0.0,17.8259,13.4511,11.4851,18.01,13.45,12.35,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.95,10149.88,11527.01,48.9,1.0,48.9,62.57,62.57,0.0,45.72,1.0,45.72,62.57,62.57,0.0,59.53,102.499,62.5055,105.004,0.28589,1.0046,1.0197,1.0,1.0244,1.0,47.0992,0.0,0.0,22.63,42.24,8.98,36.25,25.92,16.38,27.84,0.82,0.0,0.8004,0.4278,0.9448,1.2821,0.2625,1.7241,10.7693,21.652,6.2942,0.0,0.0,17.25,13.2881,11.486,17.43,13.29,12.35,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house010.xml,63.25,256.9707,147.284,232.8321,0.28135,0.9061,1.0,1.0,0.9061,0.9999,104.568,0.006,0.0,53.019999999999996,137.79,7.1,84.82,76.19,13.56,59.06,0.0,0.0,2.4048,1.4233,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.1554,75.0145,1.7482,0.0,0.0,40.243900000000004,41.4794,3.3382,43.879999999999995,41.48,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.39,17438.59,19968.19,54.59,1.0,54.59,63.26,63.26,0.0,49.22,1.0,49.22,63.26,63.26,0.0,60.6,266.8179,146.5169,241.7543,0.28135,0.9061,1.0,1.0,0.9061,0.9999,104.1554,0.006,0.0,59.61,141.05,7.1,95.37,78.11,13.56,59.06,0.0,0.0,2.4049,1.4212,1.7748,3.8463000000000003,0.7875000000000001,3.3898,24.8397,74.5644,1.7478,0.0,0.0,39.7376,41.2934,3.3382,43.32,41.3,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 +house006.xml,71.74,92.114,67.3235,93.8442,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.422,0.0,0.0,32.58,20.6,10.53,24.52,11.92,11.82,27.5,0.91,0.0,1.178,0.9078999999999999,0.9796,0.8864,0.525,1.0989,22.341,12.829,9.4726,0.0,0.0,16.813200000000002,7.42,10.6265,16.82,7.42,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.98,10225.11,13751.74,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.096,66.7476,95.8635,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.268,0.0,0.0,34.74,20.48,10.53,26.18,12.16,11.82,27.49,0.85,0.0,1.1768,0.8844000000000001,0.9796,0.8864,0.525,1.0989,22.1674,12.4267,9.4726,0.0,0.0,16.7002,7.378,10.6265,16.700000000000003,7.38,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 +house007.xml,76.98,46.854,38.1145,49.5123,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,15.96,4.62,8.84,13.66,2.59,9.87,17.03,0.41,0.0,0.5179,0.4679,0.9739,0.4432,0.2625,1.087,13.3184,1.08,7.592,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.24,8954.51,10693.74,57.14,1.0,57.14,76.98,76.98,0.0,48.06,1.0,48.06,76.98,76.98,0.0,73.93,48.956,38.2491,51.7336,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,18.27,4.48,8.84,15.45,2.57,9.87,17.02,0.35,0.0,0.5242,0.4573,0.9735,0.4432,0.2625,1.087,13.4804,1.0557,7.589,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 +house008.xml,62.88,161.2,98.5565,156.7425,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.8726,0.0,0.0,97.86,10.46,13.21,155.93,6.65,22.24,38.43,1.24,0.0,0.8046,0.413,1.0241,1.2821,0.2625,1.7241,47.6656,5.6361,7.7118,0.0,0.0,75.9538,3.583,12.9828,83.84,3.58,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.59,24536.57,34289.96,51.57,1.0,51.57,62.88,62.88,0.0,46.67,1.0,46.67,62.88,62.88,0.0,57.42,175.729,98.1149,170.8697,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.7344,0.0,0.0,112.88,10.12,13.21,179.87,6.72,22.26,38.43,1.1,0.0,0.8046,0.395,1.0235,1.2821,0.2625,1.7241,47.5119,5.3537,7.7073,0.0,0.0,75.7083,3.558,12.9828,83.57,3.56,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 +house009.xml,62.57,99.613,63.851,102.0474,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.5506,0.0,0.0,20.07,41.83,8.98,32.15,24.91,16.38,27.85,0.88,0.0,0.8004,0.4409,0.9448,1.2821,0.2625,1.7241,11.1293,22.589,6.2937,0.0,0.0,17.8269,13.4511,11.4851,18.01,13.45,12.35,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.95,10149.99,11527.2,48.9,1.0,48.9,62.57,62.57,0.0,45.72,1.0,45.72,62.57,62.57,0.0,59.53,102.5,62.5054,105.0049,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.0992,0.0,0.0,22.63,42.24,8.98,36.25,25.92,16.38,27.84,0.82,0.0,0.8004,0.4278,0.9448,1.2821,0.2625,1.7241,10.7692,21.652,6.2942,0.0,0.0,17.25,13.2881,11.486,17.43,13.29,12.35,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house010.xml,63.23,257.0097,147.2575,232.8661,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.571,0.006,0.0,53.019999999999996,137.83,7.1,84.83,76.24,13.56,59.06,0.0,0.0,2.4048,1.4228,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.1582,74.98519999999999,1.7482,0.0,0.0,40.2486,41.4804,3.3382,43.879999999999995,41.48,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.38,17439.37,19970.86,54.61,1.0,54.61,63.24,63.24,0.0,49.23,1.0,49.23,63.24,63.24,0.0,60.58,266.8559,146.4934,241.7874,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.1584,0.006,0.0,59.64,141.08,7.1,95.4,78.16,13.56,59.06,0.0,0.0,2.4050000000000002,1.4205999999999999,1.775,3.8463000000000003,0.7875000000000001,3.3898,24.843,74.53739999999999,1.748,0.0,0.0,39.743,41.2954,3.3382,43.32,41.3,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 house011.xml,68.57,40.222,29.4229,42.9106,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.7284,0.0,0.0,8.92,6.49,7.88,14.28,4.48,8.89,16.77,0.16,0.0,0.8011,0.3803,0.9632,1.2821,0.2625,1.087,6.9487,2.4888,7.2764,0.0,0.0,11.1201,1.718,8.211,12.26,1.72,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,96.79,4269.58,4134.75,56.82,1.0,56.82,68.57,68.57,0.0,53.21,1.0,53.21,68.57,68.57,0.0,66.31,41.435,29.3104,44.2047,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.6828,0.0,0.0,10.35,6.37,7.88,16.57,4.48,8.89,16.77,0.07,0.0,0.8013,0.3727,0.9629,1.2821,0.2625,1.087,6.9043,2.4231,7.2739,0.0,0.0,11.0466,1.707,8.211,12.18,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house012.xml,49.98,70.802,37.0256,74.0781,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,54.29,1.0,54.29,49.98,49.98,1.0,46.06,76.71,36.9649,80.2595,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.4553,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house013.xml,59.02,44.135,27.466,46.5394,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.993,0.0,0.0,12.88,1.84,10.35,9.36,0.87,11.96,18.45,0.61,0.0,0.6098,0.5556,0.9616,0.4432,0.2625,1.1111,9.7201,0.383,2.9779,0.0,0.0,7.0651,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.51,1719.33,2835.28,52.76,1.0,52.76,59.02,59.02,0.0,47.39,1.0,47.39,59.02,59.02,0.0,57.68,45.035,27.3935,47.4884,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.878,0.0,0.0,13.89,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5539,0.9616,0.4432,0.2625,1.1111,9.6581,0.384,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 -house014.xml,55.26,184.213,100.4373,181.7437,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.361,0.0,0.0,89.78999999999999,28.339999999999996,15.5,66.25,15.399999999999999,17.19,47.42,3.17,0.0,1.2001,0.9657,1.0132,0.8864,0.525,1.1236,43.5969,12.916599999999999,3.4267,0.0,0.0,32.1693,7.018,3.7999,32.17,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9572.09,17328.52,48.4,1.0,48.4,55.26,55.26,0.0,46.03,1.0,46.03,55.26,55.26,0.0,50.66,199.236,99.589,196.5653,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.182,0.0,0.0,105.25999999999999,27.91,15.5,77.56,15.98,17.19,47.41,3.17,0.0,1.2027999999999999,0.9164,1.0132,0.8864,0.525,1.1236,43.4562,12.2101,3.4267,0.0,0.0,32.0213,6.989000000000001,3.7999,32.019999999999996,6.99,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 -house015.xml,16.79,37.845,21.3741,42.9423,0.27913,1.1531,0.9615,1.0235,1.1347,0.3373,17.126,11.35,0.0,0.24,22.01,3.31,0.29,11.91,5.92,12.0,0.29,0.0,0.36,0.4853,0.6894,0.4432,0.2625,1.2346,0.1771,10.4922,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.6,879.17,3428.3,49.73,1.0,49.73,49.77,49.77,1.0,47.7,1.0,47.7,49.77,49.77,0.0,47.2,37.906,21.3686,43.0115,0.27913,1.1531,0.9615,1.0235,1.1347,0.95,17.126,0.8563,0.0,0.26,22.06,3.31,0.3,11.95,5.92,12.0,0.29,0.0,0.373,0.4848,0.6894,0.4432,0.2625,1.2346,0.1835,10.4803,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 -house016.xml,51.6,104.473,56.1773,108.8666,0.27655,1.0184,1.0,1.0233,1.0421,1.0,39.1962,0.0,0.0,0.68,72.2,5.6,0.59,38.95,11.56,25.13,0.87,0.0,0.5134,0.4866,0.8215,0.4432,0.2625,1.6949,0.3127,34.2035,2.9331,0.0,0.0,0.27,18.4522,6.0515,0.27,18.45,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.33,6035.93,8008.6,51.13,1.0,51.13,51.6,51.6,0.0,48.95,1.0,48.95,51.6,51.6,0.0,51.28,104.747,55.9715,109.1521,0.27655,1.0184,1.0,1.0233,1.0421,1.0,39.1012,0.0,0.0,0.74,72.42,5.6,0.63,39.12,11.56,25.13,0.85,0.0,0.5251,0.486,0.8211,0.4432,0.2625,1.6949,0.3128,34.0019,2.9318,0.0,0.0,0.264,18.3672,6.0515,0.26,18.37,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 -house017.xml,69.43,58.607,42.6244,61.3934,0.20237,1.0301,1.0,1.017,1.0475,1.0,37.1856,0.0,0.0,21.1,5.63,10.94,33.64,3.77,18.88,20.27,0.67,0.0,0.8043,0.3915,0.9819,1.2821,0.2625,1.6949,22.0678,2.0373,2.3734,0.0,0.0,35.178,1.366,4.0967,38.68,1.37,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,180.19,8417.14,4459.13,52.58,1.0,52.58,69.43,69.43,0.0,47.67,1.0,47.67,69.43,69.43,0.0,65.11,61.847,42.1859,64.7875,0.20237,1.0301,1.0,1.017,1.0475,1.0,36.8728,0.0,0.0,24.58,5.43,10.94,39.17,3.69,18.9,20.26,0.64,0.0,0.8046,0.3866,0.981,1.2821,0.2625,1.6949,21.6972,1.9956,2.3711,0.0,0.0,34.5722,1.355,4.0967,38.01,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 -house018.xml,31.37,276.4361,144.2302,264.9727,0.22628,0.9122,1.0625,0.9891,0.9585,0.5763,114.9892,48.722,0.0,152.29000000000002,32.43,17.32,242.51,21.15,27.24,72.71,1.67,0.0,2.4159,1.2037,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.8717,14.3819,5.9486,0.0,0.0,119.2298,9.38,9.3478,130.71,9.379999999999999,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.62,24796.13,25966.26,51.27,1.0,51.27,54.43,54.43,0.0,47.29,1.0,47.29,54.43,54.43,0.0,45.69,297.5593,143.2268,285.2199,0.22628,0.9122,1.0625,0.9891,0.9585,0.9099,114.611,10.3285,0.0,174.45999999999998,31.94,17.32,277.71,21.57,27.24,72.7,1.12,0.0,2.4171,1.1632,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.50450000000001,13.749300000000002,5.946,0.0,0.0,118.58680000000001,9.289,9.3478,130.01,9.29,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 -house019.xml,64.86,163.996,103.8723,160.1461,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.7478,0.0,0.0,98.89,10.31,13.21,157.58,6.86,22.25,41.58,0.0,0.0,0.8046,0.3947,1.0241,1.2821,0.2625,1.7241,59.2672,3.1091,7.336,0.0,0.0,94.4402,2.068,12.3506,104.19,2.07,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,77.67,26309.23,34689.05,52.01,1.0,52.01,64.86,64.86,0.0,46.8,1.0,46.8,64.86,64.86,0.0,59.12,179.483,103.6132,175.2695,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.5956,0.0,0.0,114.74,9.96,13.21,182.83,6.72,22.26,41.57,0.0,0.0,0.8046,0.3891,1.0235,1.2821,0.2625,1.7241,59.0725,3.0455,7.3322,0.0,0.0,94.1293,2.055,12.3515,103.85,2.06,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 -house020.xml,39.65,160.6119,130.0403,157.1826,0.25999,0.9408,1.0179,1.0219,0.9786,0.4793,108.1472,56.311,0.0,90.99,12.98,13.07,105.52999999999999,7.4399999999999995,14.11,43.46,0.11,0.0,1.9514,2.0103,1.0069,2.1364,1.05,1.087,72.1544,8.864,12.112,0.0,0.0,86.994,5.101,13.075,93.85000000000001,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,114.0,13147.67,11784.94,56.22,1.0,56.22,82.73,82.73,0.0,52.04,1.0,52.04,82.73,82.73,0.0,71.76,172.9472,130.4341,169.2545,0.25999,0.9408,1.0179,1.0219,0.9786,0.9311,108.1472,7.4461,0.0,103.67999999999999,12.64,13.07,119.67999999999999,7.3,14.11,43.45,0.11,0.0,1.9665,1.9933,1.0067,2.1364,1.05,1.087,72.6046,8.81,12.1094,0.0,0.0,86.994,5.101,13.075,93.85000000000001,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 -house021.xml,59.6,107.634,67.3106,112.9349,0.27058,1.0115,1.0373,1.0,1.0492,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8046,0.3864,1.0544,1.2821,0.2625,1.6949,28.9019,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.52,23392.86,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.173,66.9515,120.8452,0.27058,1.0115,1.0373,1.0,1.0492,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6424,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 -house022.xml,54.49,80.919,45.8202,84.0895,0.24278,1.0358,0.9832,1.0204,1.0392,1.0,32.4456,0.0,0.0,0.53,53.6,4.49,0.5,29.4,5.69,21.32,0.98,0.0,0.4744,0.4787,0.8759,0.4432,0.2625,1.1111,0.7203,25.3301,1.8308,0.0,0.0,0.673,13.8911,2.3225,0.67,13.89,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.03,4106.82,6371.48,50.9,1.0,50.9,54.49,54.49,0.0,48.57,1.0,48.57,54.49,54.49,0.0,54.12,81.205,45.6667,84.3867,0.24278,1.0358,0.9832,1.0204,1.0392,1.0,32.3626,0.0,0.0,0.6,53.82,4.49,0.54,29.56,5.69,21.32,0.98,0.0,0.4907,0.478,0.8757,0.4432,0.2625,1.1111,0.7317,25.1652,1.8297,0.0,0.0,0.661,13.8221,2.3215,0.66,13.82,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 -house023.xml,72.62,87.921,64.2202,88.4272,0.26062,1.0022,0.982,1.0219,1.0058,1.0,51.112,0.0,0.0,16.78,39.79,6.02,12.25,22.62,7.25,24.51,0.83,0.0,0.6071,0.4618,0.9221,0.4432,0.2625,1.1111,10.6811,25.7509,4.9491,0.0,0.0,7.7981,14.6411,5.9636,7.8,14.64,5.83,18.81,4.03,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.44,7661.57,10232.75,45.82,1.0,45.82,72.62,72.62,0.0,44.01,1.0,44.01,72.62,72.62,0.0,70.35,89.142,63.0756,89.6552,0.26062,1.0022,0.982,1.0219,1.0058,1.0,50.507,0.0,0.0,17.88,39.95,6.02,12.99,23.07,7.25,24.51,0.79,0.0,0.6101,0.4547,0.922,0.4432,0.2625,1.1111,10.4629,25.0623,4.9485,0.0,0.0,7.6011,14.4711,5.9636,7.6,14.47,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house024.xml,68.95,107.282,74.6711,108.2993,0.27108,0.9909,1.0187,1.0,1.0095,1.0,55.9756,0.0,0.0,22.26,45.03,8.98,35.66,26.9,16.05,30.27,0.76,0.0,0.8002,0.4395,0.9477,1.2821,0.2625,1.6949,15.2715,24.3432,6.6384,0.0,0.0,24.4663,14.5421,11.8729,24.72,14.54,12.52,23.87,4.55,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.62,11944.85,12374.68,53.03,1.0,53.03,68.95,68.95,0.0,49.92,1.0,49.92,68.95,68.95,0.0,64.75,110.753,72.3894,111.8033,0.27108,0.9909,1.0187,1.0,1.0095,1.0,54.8028,0.0,0.0,25.4,45.52,8.98,40.69,28.12,16.05,30.27,0.6,0.0,0.8003,0.425,0.9476,1.2821,0.2625,1.6949,14.7936,23.1628,6.638,0.0,0.0,23.7003,14.3071,11.8729,23.95,14.31,12.52,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house025.xml,9.54,195.002,105.1975,186.8374,0.15772,0.9551,1.0109,0.9924,0.9581,0.1694,84.722,70.37,0.0,108.46,19.58,12.53,80.1,10.36,13.85,51.62,2.81,0.0,1.2004,0.9924,1.0048,0.8864,0.525,1.1111,53.4253,9.9823,2.4219,0.0,0.0,39.4534,5.282,2.6782,39.45,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.68,2941.35,13536.25,51.07,1.0,51.07,56.3,56.3,0.0,46.05,1.0,46.05,56.3,56.3,0.0,49.63,209.107,104.8069,200.3518,0.15772,0.9551,1.0109,0.9924,0.9581,0.9488,84.239,4.3122,0.0,122.46,19.68,12.53,89.84,10.44,13.86,51.62,2.81,0.0,1.2084,0.9905999999999999,1.0045,0.8864,0.525,1.1111,53.3054,9.7122,2.4232,0.0,0.0,39.1064,5.148,2.6803,39.11,5.15,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 -house026.xml,65.17,72.568,49.4041,75.8062,0.21422,1.0262,1.0,1.018,1.0446,1.0,37.8916,0.0,0.0,12.1,29.5,7.52,19.38,17.78,14.12,22.79,0.66,0.0,0.8003,0.4357,1.8052,1.2821,0.2625,3.3898,6.22,16.6625,7.0676,0.0,0.0,9.9646,10.0401,13.272,10.99,10.04,14.26,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.76,8167.79,8520.99,47.29,1.0,47.29,65.17,65.17,0.0,44.51,1.0,44.51,65.17,65.17,0.0,62.95,74.057,48.6982,77.3617,0.21422,1.0262,1.0,1.018,1.0446,1.0,37.6504,0.0,0.0,13.44,29.7,7.52,21.53,18.3,14.12,22.78,0.62,0.0,0.8003,0.4261,1.8048,1.2821,0.2625,3.3898,6.0345,16.1781,7.0666,0.0,0.0,9.6672,9.9671,13.272,10.66,9.97,14.26,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 -house027.xml,66.92,87.976,61.0968,91.3031,0.30309,1.012,1.0,1.0255,1.0378,1.0,45.7152,0.0,0.0,16.18,37.74,7.52,25.92,22.48,14.43,25.76,0.78,0.0,0.8004,0.4409,0.8981,1.2821,0.2625,1.7241,10.6143,20.9711,6.0934,0.0,0.0,17.0016,12.4881,11.698,17.18,12.49,11.7,19.66,3.76,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,91.0,9657.78,10226.65,51.99,1.0,51.99,66.92,66.92,0.0,48.92,1.0,48.92,66.92,66.92,0.0,64.38,89.151,59.5675,92.5225,0.30309,1.012,1.0,1.0255,1.0378,1.0,44.8116,0.0,0.0,17.27,37.9,7.52,27.66,22.92,14.43,25.76,0.71,0.0,0.8004,0.4341,0.8982,1.2821,0.2625,1.7241,10.1567,20.2587,6.0932,0.0,0.0,16.2683,12.2511,11.696,16.44,12.25,11.7,19.66,3.4,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 -house028.xml,66.25,114.58,77.329,116.7181,0.28673,0.9799,1.0396,1.0,1.0187,1.0,62.146,0.0,0.0,23.19,48.32,10.4,16.75,28.12,11.65,31.53,1.14,0.0,0.6137,0.4512,0.9924,0.4432,0.2625,1.1111,13.8194,28.9563,8.0122,0.0,0.0,9.9811,16.8482,8.971,9.98,16.85,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.34,9361.79,13448.73,44.76,1.0,44.76,66.25,66.25,0.0,42.91,1.0,42.91,66.25,66.25,0.0,62.87,118.33,75.7854,120.5381,0.28673,0.9799,1.0396,1.0,1.0187,1.0,61.597,0.0,0.0,26.5,48.86,10.4,18.96,29.3,11.65,31.52,1.05,0.0,0.6196,0.4378,0.9924,0.4432,0.2625,1.1111,13.6426,27.6505,8.0122,0.0,0.0,9.7601,16.5811,8.971,9.76,16.58,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house029.xml,61.74,112.478,69.441,112.4709,0.25558,0.9826,1.0176,1.0,0.9999,1.0,53.0334,0.0,0.0,22.84,47.42,8.98,36.599999999999994,28.72,16.06,32.24,1.0,0.0,1.6003,0.8659,1.8954,2.5642,0.525,3.3898,14.4869,23.913899999999998,3.7572,0.0,0.0,23.2125,14.484200000000001,6.7198,23.45,14.489999999999998,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.85,11182.76,13026.54,49.5,1.0,49.5,61.74,61.74,0.0,46.36,1.0,46.36,61.74,61.74,0.0,58.26,116.33,67.768,116.3227,0.25558,0.9826,1.0176,1.0,0.9999,1.0,52.4388,0.0,0.0,26.240000000000002,47.980000000000004,8.98,42.06,30.060000000000002,16.06,32.24,0.9,0.0,1.6003,0.8371,1.8952,2.5642,0.525,3.3898,13.9912,22.811799999999998,3.757,0.0,0.0,22.4177,14.2912,6.7198,22.659999999999997,14.29,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 -house030.xml,60.16,135.548,81.7643,135.9003,0.29437,0.9635,1.0406,1.0,1.0026,1.0,61.6232,0.0,0.0,29.14,57.67999999999999,10.4,46.69,34.74,17.92,37.11,1.21,0.0,1.6004,0.869,1.9678,2.5642,0.525,3.3898,18.4629,31.954900000000002,2.6766,0.0,0.0,29.5815,19.2682,4.6108,29.900000000000002,19.27,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.81,13111.07,15603.29,50.33,1.0,50.33,60.16,60.16,0.0,46.99,1.0,46.99,60.16,60.16,0.0,56.55,140.242,79.5103,140.6065,0.29437,0.9635,1.0406,1.0,1.0026,1.0,60.828,0.0,0.0,33.28,58.36,10.4,53.33,36.36,17.92,37.11,1.08,0.0,1.6004,0.8400000000000001,1.9676,2.5642,0.525,3.3898,17.8245,30.4285,2.6764,0.0,0.0,28.5583,18.9812,4.6108,28.86,18.990000000000002,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 +house012.xml,49.98,70.802,37.0256,74.0781,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,54.29,1.0,54.29,49.98,49.98,1.0,46.06,76.71,36.9646,80.2595,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.455,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house013.xml,59.01,44.14,27.468,46.5447,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.994,0.0,0.0,12.89,1.84,10.35,9.37,0.87,11.96,18.45,0.61,0.0,0.6099,0.5556,0.9616,0.4432,0.2625,1.1111,9.7222,0.383,2.9779,0.0,0.0,7.0661,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.5,1719.38,2835.53,52.75,1.0,52.75,59.01,59.01,0.0,47.39,1.0,47.39,59.01,59.01,0.0,57.68,45.04,27.3945,47.4937,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.879,0.0,0.0,13.9,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5545,0.9616,0.4432,0.2625,1.1111,9.6587,0.3844,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 +house014.xml,55.26,184.213,100.4373,181.7437,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.361,0.0,0.0,89.78999999999999,28.339999999999996,15.5,66.25,15.399999999999999,17.19,47.42,3.17,0.0,1.2001,0.9657,1.0132,0.8864,0.525,1.1236,43.5969,12.916599999999999,3.4267,0.0,0.0,32.1693,7.018,3.7999,32.17,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9572.09,17328.52,48.4,1.0,48.4,55.26,55.26,0.0,46.03,1.0,46.03,55.26,55.26,0.0,50.67,199.236,99.5903,196.5653,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.182,0.0,0.0,105.25999999999999,27.91,15.5,77.56,15.98,17.19,47.41,3.17,0.0,1.2027999999999999,0.9165000000000001,1.0132,0.8864,0.525,1.1236,43.4568,12.2109,3.4267,0.0,0.0,32.0213,6.989000000000001,3.7999,32.019999999999996,6.99,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 +house015.xml,16.75,37.9,21.3538,43.0064,0.27921,1.1531,0.9615,1.0235,1.1347,0.3373,17.126,11.35,0.0,0.24,22.07,3.31,0.29,11.96,5.92,12.0,0.29,0.0,0.36,0.4844,0.6894,0.4432,0.2625,1.2346,0.1771,10.4719,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.57,879.17,3433.38,49.66,1.0,49.66,49.65,49.65,1.0,47.62,1.0,47.62,49.65,49.65,0.0,47.09,37.957,21.3504,43.0711,0.27921,1.1531,0.9615,1.0235,1.1347,0.95,17.126,0.8563,0.0,0.26,22.11,3.31,0.3,12.0,5.92,12.0,0.29,0.0,0.373,0.4839,0.6894,0.4432,0.2625,1.2346,0.1835,10.4621,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 +house016.xml,51.59,104.482,56.1698,108.8767,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.1962,0.0,0.0,0.68,72.21,5.6,0.59,38.96,11.56,25.13,0.87,0.0,0.5151,0.4865,0.8214,0.4432,0.2625,1.6949,0.3138,34.1955,2.9326,0.0,0.0,0.27,18.4522,6.0515,0.27,18.45,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.32,6035.98,8009.75,51.19,1.0,51.19,51.59,51.59,0.0,48.99,1.0,48.99,51.59,51.59,0.0,51.27,104.758,55.967,109.1643,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.1012,0.0,0.0,0.75,72.43,5.6,0.63,39.14,11.56,25.13,0.85,0.0,0.5267,0.4859,0.8212,0.4432,0.2625,1.6949,0.3137,33.9963,2.932,0.0,0.0,0.264,18.3682,6.0515,0.26,18.37,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 +house017.xml,69.46,58.603,42.6372,61.3835,0.20197,1.03,1.0,1.0169,1.0474,1.0,37.1908,0.0,0.0,21.1,5.62,10.94,33.63,3.77,18.88,20.27,0.67,0.0,0.8044,0.3917,0.9819,1.2821,0.2625,1.6949,22.0799,2.038,2.3734,0.0,0.0,35.1889,1.366,4.0967,38.69,1.37,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,180.25,8418.94,4459.13,52.6,1.0,52.6,69.46,69.46,0.0,47.68,1.0,47.68,69.46,69.46,0.0,65.14,61.844,42.1982,64.7783,0.20197,1.03,1.0,1.0169,1.0474,1.0,36.8786,0.0,0.0,24.58,5.42,10.94,39.16,3.68,18.9,20.26,0.64,0.0,0.8048,0.3867,0.981,1.2821,0.2625,1.6949,21.7091,1.9961,2.3711,0.0,0.0,34.5831,1.355,4.0967,38.02,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 +house018.xml,31.37,276.4361,144.2302,264.9736,0.22626,0.9122,1.0624,0.9891,0.9585,0.5763,114.9892,48.722,0.0,152.29000000000002,32.43,17.32,242.51,21.15,27.24,72.71,1.67,0.0,2.4159,1.2037,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.8717,14.3819,5.9486,0.0,0.0,119.2298,9.38,9.3478,130.71,9.379999999999999,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.62,24796.13,25966.26,51.26,1.0,51.26,54.43,54.43,0.0,47.29,1.0,47.29,54.43,54.43,0.0,45.69,297.5593,143.2268,285.2208,0.22626,0.9122,1.0624,0.9891,0.9585,0.9099,114.611,10.3285,0.0,174.45999999999998,31.94,17.32,277.71,21.57,27.24,72.7,1.12,0.0,2.4171,1.1632,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.50450000000001,13.749300000000002,5.946,0.0,0.0,118.58680000000001,9.289,9.3478,130.01,9.29,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 +house019.xml,64.85,163.996,103.8538,160.1461,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.7332,0.0,0.0,98.89,10.31,13.21,157.58,6.86,22.25,41.58,0.0,0.0,0.8046,0.3949,1.0241,1.2821,0.2625,1.7241,59.2473,3.1105,7.336,0.0,0.0,94.4085,2.068,12.3506,104.15,2.07,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,77.7,26304.04,34669.31,52.01,1.0,52.01,64.85,64.85,0.0,46.8,1.0,46.8,64.85,64.85,0.0,59.1,179.483,103.5929,175.2695,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.582,0.0,0.0,114.74,9.96,13.21,182.83,6.72,22.26,41.57,0.0,0.0,0.8046,0.389,1.0235,1.2821,0.2625,1.7241,59.0526,3.0451,7.3322,0.0,0.0,94.0976,2.055,12.3515,103.81,2.06,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 +house020.xml,39.66,160.5879,130.0452,157.16,0.25991,0.9409,1.0179,1.0219,0.9787,0.4793,108.1542,56.311,0.0,90.98,12.98,13.07,105.51,7.44,14.11,43.46,0.11,0.0,1.9513,2.0099,1.0069,2.1364,1.05,1.087,72.1614,8.861799999999999,12.112,0.0,0.0,87.005,5.101,13.075,93.86,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,114.03,13149.36,11783.24,56.22,1.0,56.22,82.75,82.75,0.0,52.04,1.0,52.04,82.75,82.75,0.0,71.77,172.9242,130.4402,169.233,0.25991,0.9409,1.0179,1.0219,0.9787,0.9311,108.1542,7.4468,0.0,103.65,12.64,13.07,119.64,7.3,14.11,43.45,0.11,0.0,1.9665,1.9931,1.0067,2.1364,1.05,1.087,72.6118,8.809,12.1094,0.0,0.0,87.005,5.101,13.075,93.86,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 +house021.xml,59.6,107.634,67.3106,112.9349,0.27058,1.0115,1.0373,1.0,1.0492,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8046,0.3864,1.0544,1.2821,0.2625,1.6949,28.9019,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.63,23392.91,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.173,66.9525,120.8452,0.27058,1.0115,1.0373,1.0,1.0492,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6435,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 +house022.xml,54.48,80.923,45.8129,84.0938,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.4416,0.0,0.0,0.53,53.61,4.49,0.5,29.4,5.69,21.32,0.98,0.0,0.4744,0.4787,0.8757,0.4432,0.2625,1.1111,0.7192,25.3241,1.8305,0.0,0.0,0.672,13.8901,2.3225,0.67,13.89,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.01,4106.37,6372.07,50.94,1.0,50.94,54.48,54.48,0.0,48.61,1.0,48.61,54.48,54.48,0.0,54.1,81.208,45.6564,84.39,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.3596,0.0,0.0,0.6,53.83,4.49,0.54,29.57,5.69,21.32,0.98,0.0,0.4907,0.4779,0.8757,0.4432,0.2625,1.1111,0.7306,25.1561,1.8297,0.0,0.0,0.66,13.8191,2.3215,0.66,13.82,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 +house023.xml,72.62,87.922,64.22,88.4281,0.26056,1.0022,0.982,1.0219,1.0058,1.0,51.112,0.0,0.0,16.78,39.79,6.02,12.25,22.62,7.25,24.51,0.83,0.0,0.6071,0.4618,0.9221,0.4432,0.2625,1.1111,10.6809,25.7509,4.9491,0.0,0.0,7.7981,14.6411,5.9636,7.8,14.64,5.83,18.81,4.03,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.44,7661.61,10232.92,45.82,1.0,45.82,72.62,72.62,0.0,44.01,1.0,44.01,72.62,72.62,0.0,70.35,89.142,63.0748,89.6551,0.26056,1.0022,0.982,1.0219,1.0058,1.0,50.508,0.0,0.0,17.88,39.95,6.02,12.99,23.07,7.25,24.51,0.79,0.0,0.6101,0.4547,0.922,0.4432,0.2625,1.1111,10.4621,25.0623,4.9485,0.0,0.0,7.6011,14.4711,5.9636,7.6,14.47,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house024.xml,68.95,107.283,74.6732,108.3,0.271,0.991,1.0187,1.0,1.0095,1.0,55.976,0.0,0.0,22.26,45.03,8.98,35.66,26.9,16.05,30.27,0.76,0.0,0.8002,0.4395,0.9477,1.2821,0.2625,1.6949,15.272,24.3449,6.6384,0.0,0.0,24.4673,14.5431,11.8729,24.72,14.54,12.52,23.87,4.55,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.62,11945.05,12374.92,53.03,1.0,53.03,68.95,68.95,0.0,49.92,1.0,49.92,68.95,68.95,0.0,64.75,110.754,72.391,111.8039,0.271,0.991,1.0187,1.0,1.0095,1.0,54.8042,0.0,0.0,25.4,45.52,8.98,40.69,28.12,16.05,30.27,0.6,0.0,0.8003,0.425,0.9476,1.2821,0.2625,1.6949,14.7944,23.1636,6.638,0.0,0.0,23.7013,14.3081,11.8729,23.95,14.31,12.52,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house025.xml,9.55,195.002,105.217,186.8374,0.15772,0.9551,1.0109,0.9924,0.9581,0.1695,84.734,70.37,0.0,108.46,19.58,12.53,80.1,10.36,13.85,51.62,2.81,0.0,1.2004,0.9924,1.0048,0.8864,0.525,1.1111,53.443,9.984200000000001,2.4219,0.0,0.0,39.4664,5.2829999999999995,2.6782,39.47,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.69,2942.46,13536.25,51.07,1.0,51.07,56.31,56.31,0.0,46.06,1.0,46.06,56.31,56.31,0.0,49.64,209.107,104.8265,200.3518,0.15772,0.9551,1.0109,0.9924,0.9581,0.9488,84.251,4.3128,0.0,122.46,19.68,12.53,89.84,10.44,13.86,51.62,2.81,0.0,1.2084,0.9905999999999999,1.0045,0.8864,0.525,1.1111,53.3232,9.7141,2.4232,0.0,0.0,39.1194,5.149,2.6803,39.12,5.15,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 +house026.xml,65.17,72.569,49.4034,75.8062,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.8916,0.0,0.0,12.1,29.5,7.52,19.38,17.78,14.12,22.79,0.66,0.0,0.8003,0.4357,1.8052,1.2821,0.2625,3.3898,6.2202,16.6616,7.0676,0.0,0.0,9.9646,10.0401,13.272,10.99,10.04,14.26,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.76,8167.85,8521.12,47.29,1.0,47.29,65.17,65.17,0.0,44.51,1.0,44.51,65.17,65.17,0.0,62.95,74.058,48.698,77.3617,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.6504,0.0,0.0,13.44,29.7,7.52,21.53,18.3,14.12,22.78,0.62,0.0,0.8003,0.4261,1.8048,1.2821,0.2625,3.3898,6.0352,16.1772,7.0666,0.0,0.0,9.6681,9.9671,13.272,10.66,9.97,14.26,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 +house027.xml,66.92,87.977,61.0977,91.3034,0.30303,1.012,1.0,1.0255,1.0378,1.0,45.7166,0.0,0.0,16.19,37.74,7.52,25.92,22.48,14.43,25.76,0.78,0.0,0.8004,0.4409,0.8981,1.2821,0.2625,1.7241,10.6151,20.9711,6.0934,0.0,0.0,17.0026,12.4881,11.698,17.18,12.49,11.7,19.66,3.76,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,91.0,9657.9,10226.81,51.99,1.0,51.99,66.92,66.92,0.0,48.92,1.0,48.92,66.92,66.92,0.0,64.38,89.152,59.5664,92.5228,0.30303,1.012,1.0,1.0255,1.0378,1.0,44.813,0.0,0.0,17.27,37.9,7.52,27.66,22.92,14.43,25.76,0.71,0.0,0.8004,0.4341,0.8982,1.2821,0.2625,1.7241,10.1575,20.2578,6.0932,0.0,0.0,16.2693,12.2511,11.696,16.44,12.25,11.7,19.66,3.4,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 +house028.xml,66.4,114.591,77.51,116.729,0.28669,0.9799,1.0396,1.0,1.0187,1.0,62.28,0.0,0.0,23.2,48.32,10.4,16.76,28.12,11.65,31.53,1.14,0.0,0.6137,0.4512,0.9924,0.4432,0.2625,1.1111,14.0001,28.9566,8.0122,0.0,0.0,10.1121,16.8492,8.971,10.11,16.85,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.48,9381.87,13450.0,44.76,1.0,44.76,66.4,66.4,0.0,42.91,1.0,42.91,66.4,66.4,0.0,62.73,118.341,75.6177,120.5489,0.28669,0.9799,1.0396,1.0,1.0187,1.0,61.478,0.0,0.0,26.51,48.86,10.4,18.96,29.3,11.65,31.52,1.05,0.0,0.6196,0.4378,0.9924,0.4432,0.2625,1.1111,13.4729,27.6525,8.0122,0.0,0.0,9.6381,16.5831,8.971,9.64,16.58,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house029.xml,61.73,112.479,69.4336,112.4719,0.25554,0.9826,1.0176,1.0,0.9999,1.0,53.0292,0.0,0.0,22.84,47.42,8.98,36.599999999999994,28.72,16.06,32.24,1.0,0.0,1.6002,0.8658,1.8954,2.5642,0.525,3.3898,14.482,23.9114,3.7572,0.0,0.0,23.2055,14.4832,6.7198,23.45,14.489999999999998,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.84,11181.46,13026.79,49.5,1.0,49.5,61.73,61.73,0.0,46.36,1.0,46.36,61.73,61.73,0.0,58.25,116.331,67.7617,116.3237,0.25554,0.9826,1.0176,1.0,0.9999,1.0,52.4342,0.0,0.0,26.259999999999998,47.980000000000004,8.98,42.06,30.060000000000002,16.06,32.24,0.9,0.0,1.6003,0.8371,1.8952,2.5642,0.525,3.3898,13.9865,22.810200000000002,3.757,0.0,0.0,22.4099,14.290199999999999,6.7198,22.64,14.29,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 +house030.xml,60.16,135.55,81.7652,135.9022,0.29427,0.9635,1.0406,1.0,1.0026,1.0,61.6236,0.0,0.0,29.14,57.67999999999999,10.4,46.69,34.74,17.92,37.11,1.21,0.0,1.6004,0.869,1.9678,2.5642,0.525,3.3898,18.4645,31.954,2.6766,0.0,0.0,29.5835,19.2682,4.6108,29.900000000000002,19.27,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.81,13111.27,15603.6,50.33,1.0,50.33,60.16,60.16,0.0,46.99,1.0,46.99,60.16,60.16,0.0,56.55,140.245,79.5115,140.6094,0.29427,0.9635,1.0406,1.0,1.0026,1.0,60.8284,0.0,0.0,33.28,58.36,10.4,53.33,36.36,17.92,37.11,1.08,0.0,1.6004,0.8400000000000001,1.9676,2.5642,0.525,3.3898,17.8262,30.428,2.6764,0.0,0.0,28.5603,18.9812,4.6108,28.86,18.990000000000002,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 house031.xml,55.71,208.0042,116.6366,209.3557,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,94.18,0.0,0.0,122.45000000000002,19.84,14.53,89.82,10.48,17.32,50.05,1.16,0.0,2.4168,1.9881,1.0352,1.7728,1.05,1.2346,60.229600000000005,13.917200000000001,3.1868,0.0,0.0,44.1804,7.352,3.8004,44.18,7.36,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8085.37,14528.41,49.52,1.0,49.52,55.71,55.71,0.0,44.8,1.0,44.8,55.71,55.71,0.0,51.8,222.9991,116.2575,224.448,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,93.735,0.0,0.0,137.38,19.88,14.53,100.2,10.53,17.33,50.04,1.16,0.0,2.4322999999999997,1.9832,1.035,1.7728,1.05,1.2346,60.158899999999996,13.6127,3.187,0.0,0.0,43.8784,7.208,3.8015,43.87,7.21,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 -house032.xml,70.85,125.942,90.8774,128.2737,0.26783,0.978,1.0185,1.0225,1.0185,1.0,66.9232,0.0,0.0,26.45,56.43,8.98,42.35,33.53,16.33,33.12,0.96,0.0,1.6019999999999999,0.8782,0.9474,2.5642,0.525,1.7241,18.1945,33.9395,7.1814,0.0,0.0,29.1293,20.1682,13.0697,29.43,20.17,13.07,25.94,5.63,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.47,15478.66,14408.54,54.66,1.0,54.66,70.85,70.85,0.0,51.33,1.0,51.33,70.85,70.85,0.0,67.29,127.974,87.7085,130.3433,0.26783,0.978,1.0185,1.0225,1.0185,1.0,64.9386,0.0,0.0,28.36,56.7,8.98,45.39,34.3,16.33,33.12,0.82,0.0,1.6021,0.8627,0.9474,2.5642,0.525,1.7241,17.3396,32.6015,7.1814,0.0,0.0,27.7587,19.7222,13.0697,28.05,19.72,13.07,25.94,4.65,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house033.xml,66.99,151.344,98.293,146.7317,0.22297,0.9548,1.0154,1.0,0.9695,1.0,81.1744,0.0,0.0,69.81,28.159999999999997,11.38,111.38999999999999,17.62,19.4,42.0,0.0,0.0,1.6073,0.8359,0.9947,2.5642,0.525,1.6949,52.339600000000004,11.2348,3.4067,0.0,0.0,83.5082,7.022,5.8048,92.34,7.0200000000000005,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,95.48,22069.44,23841.22,52.58,1.0,52.58,66.99,66.99,0.0,49.36,1.0,49.36,66.99,66.99,0.0,61.83,162.856,97.6232,157.8929,0.22297,0.9548,1.0154,1.0,0.9695,1.0,80.9784,0.0,0.0,81.28999999999999,28.19,11.38,129.7,18.28,19.41,41.99,0.0,0.0,1.6072,0.8071,0.994,2.5642,0.525,1.6949,52.152100000000004,10.755700000000001,3.4044,0.0,0.0,83.2107,6.965,5.8048,92.00999999999999,6.970000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 -house034.xml,62.02,60.576,38.6477,62.3131,0.18761,1.0127,1.0,1.0157,1.0287,1.0,33.4906,0.0,0.0,19.58,4.47,9.97,31.34,3.08,18.48,24.53,2.03,0.0,0.8008,0.3809,0.9149,1.2821,0.2625,1.6949,9.3181,2.9086,4.2021,0.0,0.0,14.9184,2.005,7.7844,16.45,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.48,5830.03,3668.8,55.62,1.0,55.62,62.02,62.02,0.0,50.24,1.0,50.24,62.02,62.02,0.0,60.5,61.939,38.5456,63.7152,0.18761,1.0127,1.0,1.0157,1.0287,1.0,33.4334,0.0,0.0,21.05,4.36,9.97,33.7,3.03,18.48,24.53,2.03,0.0,0.8008,0.3776,0.9149,1.2821,0.2625,1.6949,9.2534,2.8724,4.2018,0.0,0.0,14.8141,1.997,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house035.xml,70.11,103.362,72.1977,102.9709,0.19291,0.9804,1.0,1.0162,0.9962,1.0,61.004,0.0,0.0,52.39,6.54,11.06,83.48,4.69,12.38,32.3,1.06,0.0,0.8046,0.3663,0.9925,1.2821,0.2625,1.1111,39.6214,2.9786,9.1447,0.0,0.0,63.1352,2.135,10.2376,68.44,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.29,18231.32,22793.42,55.91,1.0,55.91,70.11,70.11,0.0,49.51,1.0,49.51,70.11,70.11,0.0,64.68,110.234,71.0251,109.8169,0.19291,0.9804,1.0,1.0162,0.9962,1.0,60.1914,0.0,0.0,59.6,6.31,11.06,94.98,4.61,12.39,32.3,0.97,0.0,0.8046,0.3595,0.9922,1.2821,0.2625,1.1111,38.5711,2.9081,9.1408,0.0,0.0,61.4618,2.124,10.2365,66.63,2.12,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house036.xml,68.18,113.983,76.2184,111.7202,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.9054,0.035,0.0,61.66,8.82,8.65,98.27,5.91,15.94,33.62,1.24,0.0,0.8044,0.3914,0.9197,1.2821,0.2625,1.6949,38.9004,4.8421,2.3779,0.0,0.0,61.9964,3.248,4.3819,68.16,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.34,18849.36,24238.98,55.49,1.0,55.49,68.22,68.22,0.0,49.87,1.0,49.87,68.22,68.22,0.0,63.3,121.85,75.6393,119.431,0.18742,0.9776,0.9871,1.0157,0.9801,0.9994,62.4868,0.035,0.0,69.78,8.6,8.65,111.2,5.79,15.96,33.61,1.21,0.0,0.8045,0.3902,0.9191,1.2821,0.2625,1.6949,38.4776,4.7356,2.3761,0.0,0.0,61.3216,3.186,4.3819,67.42,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 -house037.xml,67.03,113.262,76.7413,114.4834,0.19359,0.9975,1.0134,1.0,1.0108,1.0,64.8088,0.0,0.0,65.19,6.7,13.21,103.97,4.84,14.55,27.32,0.84,0.0,0.8039,0.363,1.0094,1.2821,0.2625,1.1111,41.1178,3.9656,10.1998,0.0,0.0,65.5732,2.868,11.2281,71.09,2.87,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.29,19280.27,24365.15,52.9,1.0,52.9,67.03,67.03,0.0,47.97,1.0,47.97,67.03,67.03,0.0,60.87,122.6,75.4338,123.9221,0.19359,0.9975,1.0134,1.0,1.0108,1.0,63.908,0.0,0.0,74.87,6.48,13.21,119.3,4.82,14.55,27.32,0.73,0.0,0.8046,0.3534,1.0091,1.2821,0.2625,1.1111,40.0273,3.8065,10.197,0.0,0.0,63.7827,2.828,11.2281,69.15,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house038.xml,65.16,130.313,82.5796,126.7265,0.26727,0.9549,1.0184,1.0,0.9725,1.0,62.9332,0.0,0.0,39.6,39.93,9.92,35.15,22.42,17.57,39.59,1.29,0.0,1.8868,0.9351,0.9565,2.1685,0.525,1.6949,27.578899999999997,21.4891,5.0656,0.0,0.0,24.746699999999997,12.065100000000001,8.9761,24.85,12.07,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14041.27,19636.38,47.38,1.0,47.38,65.16,65.16,0.0,45.3,1.0,45.3,65.16,65.16,0.0,62.0,133.884,80.72,130.1992,0.26727,0.9549,1.0184,1.0,0.9725,1.0,62.0392,0.0,0.0,43.410000000000004,39.82,9.92,38.15,22.94,17.57,39.59,1.14,0.0,1.8883,0.9111,0.9564,2.1685,0.525,1.6949,26.698900000000002,20.6101,5.065,0.0,0.0,24.026,11.8761,8.9761,24.12,11.879999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house039.xml,59.43,157.779,153.8177,157.3805,0.09394,0.9784,1.0194,1.0,0.9975,0.6081,113.0822,44.319,0.0,73.85,20.25,16.5,117.81,13.25,29.71,47.17,0.0,0.0,2.4121,1.1898,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.6704,10.0455,15.1348,0.0,0.0,147.8168,6.566,27.2586,151.58,6.57,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,238.22,26536.13,11167.47,54.29,1.0,54.29,97.74,97.74,0.0,49.76,1.0,49.76,97.74,97.74,0.0,80.64,172.104,153.2715,171.6693,0.09394,0.9784,1.0194,1.0,0.9975,0.9032,112.6972,10.9135,0.0,88.18,20.25,16.5,140.60999999999999,13.26,29.71,47.16,0.0,0.0,2.4127,1.19,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.3202,9.8498,15.1354,0.0,0.0,147.2083,6.442,27.2597,150.95,6.4399999999999995,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 -house040.xml,63.71,195.689,119.2807,187.2327,0.18492,0.9568,1.0,1.0,0.9568,1.0,92.541,0.0,0.0,125.31,12.48,11.06,199.68,8.0,19.45,44.92,1.91,0.0,0.8046,0.4097,0.9804,1.2821,0.2625,1.7241,63.6893,14.1047,7.1827,0.0,0.0,101.487,9.0381,12.6309,112.22,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.84,29248.27,40843.67,52.88,1.0,52.88,63.71,63.71,0.0,49.75,1.0,49.75,63.71,63.71,0.0,58.85,211.23,118.9278,202.1021,0.18492,0.9568,1.0,1.0,0.9568,1.0,92.2718,0.0,0.0,141.2,12.14,11.06,224.99,7.76,19.46,44.92,1.91,0.0,0.8046,0.411,0.9799,1.2821,0.2625,1.7241,63.4691,13.9762,7.1795,0.0,0.0,101.1361,8.9281,12.6317,111.83,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house041.xml,79.71,72.738,59.3529,74.4596,0.13119,1.0035,1.0091,1.011,1.0237,1.0,48.279,0.0,0.0,25.92,8.19,12.53,41.33,5.19,20.93,26.11,0.0,0.0,0.8039,0.4141,1.0143,1.2821,0.2625,1.6949,17.7774,6.1636,11.573,0.0,0.0,28.3498,3.908,19.3379,30.56,3.91,20.39,23.35,0.49,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.22,9768.61,5354.42,52.96,1.0,52.96,79.71,79.71,0.0,46.88,1.0,46.88,79.71,79.71,0.0,73.45,75.378,56.6731,77.1621,0.13119,1.0035,1.0091,1.011,1.0237,1.0,46.2706,0.0,0.0,28.64,8.11,12.53,45.66,5.16,20.94,26.11,0.0,0.0,0.8041,0.4127,1.014,1.2821,0.2625,1.6949,15.6282,6.1309,11.5641,0.0,0.0,24.9185,3.9,19.3303,26.86,3.9,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house042.xml,90.13,114.912,103.3237,114.6328,0.21956,0.9827,1.0151,1.0,0.9976,1.0,77.679,0.0,0.0,50.3,21.01,11.38,80.28,12.91,19.73,32.22,0.0,0.0,0.8033,0.4272,0.9946,1.2821,0.2625,1.7241,51.6684,16.2331,8.3472,0.0,0.0,82.4656,9.9751,14.4703,83.33,9.98,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.34,21271.39,18171.67,50.09,1.0,50.09,90.13,90.13,0.0,47.02,1.0,47.02,90.13,90.13,0.0,83.77,122.65,102.4991,122.352,0.21956,0.9827,1.0151,1.0,0.9976,1.0,77.4926,0.0,0.0,58.04,21.01,11.38,92.65,13.35,19.75,32.22,0.0,0.0,0.8032,0.4132,0.9939,1.2821,0.2625,1.7241,51.4854,15.5985,8.3412,0.0,0.0,82.1777,9.9101,14.4693,83.04,9.91,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house043.xml,-8.1,52.033,21.8478,53.8573,0.30156,1.0351,1.0,1.0,1.0351,-0.1996,20.615,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.351,2.5087,2.3731,0.0,0.0,1.077,1.313,2.669,1.08,1.31,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.53,22.01,4017.42,53.47,1.0,53.47,40.57,40.57,1.0,47.89,1.0,47.89,40.57,40.57,1.0,35.68,56.143,21.824,58.1114,0.30156,1.0351,1.0,1.0,1.0351,0.95,20.585,1.0293,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4991,0.9875,0.4432,0.2625,1.1111,1.3791,2.4579,2.373,0.0,0.0,1.067,1.293,2.67,1.07,1.29,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 -house044.xml,69.13,42.878,31.249,45.2029,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.749,0.0,0.0,19.12,3.36,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3155,0.9207,1.2821,0.2625,1.1111,14.5687,2.2243,4.5241,0.0,0.0,23.2658,1.851,5.4597,25.58,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.25,7639.23,9380.61,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.93,44.161,31.1576,46.5554,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.707,0.0,0.0,20.47,3.3,6.35,32.67,2.8,7.66,13.7,0.34,0.0,0.8035,0.3089,0.9205,1.2821,0.2625,1.1111,14.54,2.1637,4.5229,0.0,0.0,23.2013,1.839,5.4597,25.51,1.84,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -house045.xml,88.8,180.374,153.7624,173.1551,0.22009,0.9417,1.0304,0.9893,0.96,1.0,124.728,0.0,0.0,75.19,42.92,12.22,56.32,24.57,21.3,50.05,0.0,0.0,0.5917,0.4586,1.9438,0.4432,0.2625,3.3898,64.4963,31.2496,13.7026,0.0,0.0,48.3134,17.8892,23.895,48.31,17.89,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,99.99,25492.22,26558.55,49.73,1.0,49.73,88.8,88.8,0.0,45.81,1.0,45.81,88.8,88.8,0.0,82.85,190.595,151.5943,182.967,0.22009,0.9417,1.0304,0.9893,0.96,1.0,124.159,0.0,0.0,85.94,42.39,12.22,64.25,25.48,21.3,50.05,0.0,0.0,0.5929,0.4368,1.9438,0.4432,0.2625,3.3898,64.0499,29.5295,13.702,0.0,0.0,47.8854,17.7492,23.895,47.89,17.75,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 -house046.xml,-4.25,132.817,49.242,132.162,0.27774,0.9896,1.0192,0.9866,0.9951,-0.1142,46.134,51.401,0.0,75.55,12.01,12.93,62.72,6.72,13.96,29.19,3.15,0.0,0.5338,0.469,1.0064,0.4432,0.2625,1.087,16.3487,2.5295,9.7587,0.0,0.0,13.5741,1.416,10.54,13.57,1.42,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.86,2778.49,28322.25,50.18,1.0,50.18,37.26,37.26,1.0,44.16,1.0,44.16,37.26,37.26,1.0,32.42,144.426,49.044,143.7138,0.27774,0.9896,1.0192,0.9866,0.9951,0.95,46.063,2.3032,0.0,87.51,11.66,12.93,72.58,6.85,13.97,29.18,3.15,0.0,0.5344,0.4467,1.0062,0.4432,0.2625,1.087,16.2902,2.3922,9.7566,0.0,0.0,13.5111,1.406,10.54,13.51,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 -house047.xml,63.74,84.063,53.8118,84.4234,0.20919,0.987,1.0,1.0176,1.0043,1.0,42.9956,0.0,0.0,32.66,9.13,10.49,52.01,5.62,11.8,30.7,1.09,0.0,0.805,0.4266,0.9872,1.2821,0.2625,1.1111,26.1557,3.8628,2.4723,0.0,0.0,41.6572,2.377,2.7825,45.67,2.38,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.63,10572.9,6169.99,58.44,1.0,58.44,63.74,63.74,0.0,53.2,1.0,53.2,63.74,63.74,0.0,58.63,90.516,53.3014,90.9041,0.20919,0.987,1.0,1.0176,1.0043,1.0,42.6386,0.0,0.0,39.21,9.07,10.49,62.45,5.6,11.81,30.69,1.05,0.0,0.805,0.425,0.9868,1.2821,0.2625,1.1111,25.7521,3.772,2.4703,0.0,0.0,41.0133,2.33,2.7815,44.97,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 -house048.xml,66.13,98.438,68.8483,104.1034,0.33386,1.0286,1.0,1.0282,1.0576,1.0,46.4292,0.0,0.0,1.98,65.85,5.6,3.17,37.7,10.95,24.41,0.6,0.0,0.8005,0.4586,0.8822,1.2821,0.2625,1.7241,0.5005,44.0908,3.7459,0.0,0.0,0.8016,25.2412,7.3207,0.81,25.24,7.59,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.97,6732.91,7672.88,50.84,1.0,50.84,66.13,66.13,0.0,46.29,1.0,46.29,66.13,66.13,0.0,65.26,98.65,68.0827,104.3276,0.33386,1.0286,1.0,1.0282,1.0576,1.0,45.965,0.0,0.0,2.09,66.05,5.6,3.35,37.86,10.95,24.4,0.51,0.0,0.8003,0.458,0.8822,1.2821,0.2625,1.7241,0.438,43.5088,3.7459,0.0,0.0,0.7016,24.9392,7.3207,0.71,24.94,7.59,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house032.xml,70.85,125.937,90.8785,128.2678,0.26774,0.978,1.0185,1.0225,1.0185,1.0,66.924,0.0,0.0,26.45,56.43,8.98,42.34,33.53,16.33,33.12,0.96,0.0,1.6019999999999999,0.8782,0.9474,2.5642,0.525,1.7241,18.1956,33.9395,7.1814,0.0,0.0,29.130300000000002,20.1682,13.0697,29.43,20.17,13.07,25.94,5.63,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.48,15478.92,14407.84,54.66,1.0,54.66,70.85,70.85,0.0,51.33,1.0,51.33,70.85,70.85,0.0,67.3,127.967,87.71,130.3354,0.26774,0.978,1.0185,1.0225,1.0185,1.0,64.9404,0.0,0.0,28.35,56.7,8.98,45.39,34.3,16.33,33.12,0.82,0.0,1.6021,0.8627,0.9474,2.5642,0.525,1.7241,17.34,32.6025,7.1814,0.0,0.0,27.759700000000002,19.7232,13.0697,28.060000000000002,19.72,13.07,25.94,4.65,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house033.xml,66.99,151.325,98.2833,146.7133,0.22297,0.9548,1.0154,1.0,0.9695,1.0,81.1662,0.0,0.0,69.79,28.159999999999997,11.38,111.35,17.62,19.4,42.0,0.0,0.0,1.6073,0.8359,0.9947,2.5642,0.525,1.6949,52.329800000000006,11.2348,3.4067,0.0,0.0,83.49289999999999,7.022,5.8048,92.33,7.0200000000000005,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,95.48,22066.72,23838.05,52.59,1.0,52.59,66.99,66.99,0.0,49.37,1.0,49.37,66.99,66.99,0.0,61.83,162.837,97.6118,157.8745,0.22297,0.9548,1.0154,1.0,0.9695,1.0,80.9702,0.0,0.0,81.27,28.19,11.38,129.66,18.28,19.41,41.99,0.0,0.0,1.6072,0.8071,0.994,2.5642,0.525,1.6949,52.1422,10.7541,3.4044,0.0,0.0,83.1943,6.964,5.8048,92.0,6.970000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 +house034.xml,62.02,60.575,38.648,62.3109,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4906,0.0,0.0,19.58,4.47,9.97,31.34,3.08,18.48,24.53,2.03,0.0,0.8008,0.3809,0.9149,1.2821,0.2625,1.6949,9.3181,2.9089,4.2021,0.0,0.0,14.9184,2.005,7.7844,16.45,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.48,5830.03,3668.8,55.63,1.0,55.63,62.02,62.02,0.0,50.25,1.0,50.25,62.02,62.02,0.0,60.5,61.938,38.5452,63.713,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4334,0.0,0.0,21.05,4.36,9.97,33.7,3.03,18.48,24.53,2.03,0.0,0.8008,0.3775,0.9149,1.2821,0.2625,1.6949,9.2536,2.8717,4.2018,0.0,0.0,14.8141,1.997,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house035.xml,70.1,103.39,72.2063,102.9988,0.19292,0.9804,1.0,1.0162,0.9962,1.0,61.0104,0.0,0.0,52.42,6.54,11.06,83.53,4.69,12.38,32.3,1.06,0.0,0.8046,0.3663,0.9925,1.2821,0.2625,1.1111,39.63,2.9786,9.1447,0.0,0.0,63.1499,2.135,10.2376,68.46,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.22,18233.77,22816.59,55.9,1.0,55.9,70.1,70.1,0.0,49.5,1.0,49.5,70.1,70.1,0.0,64.67,110.263,71.034,109.8457,0.19292,0.9804,1.0,1.0162,0.9962,1.0,60.1978,0.0,0.0,59.63,6.31,11.06,95.02,4.61,12.39,32.3,0.97,0.0,0.8046,0.3595,0.9922,1.2821,0.2625,1.1111,38.5801,2.9081,9.1408,0.0,0.0,61.4766,2.124,10.2365,66.65,2.12,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house036.xml,68.19,114.018,76.2517,111.7543,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.9086,0.035,0.0,61.7,8.82,8.65,98.33,5.88,15.94,33.62,1.24,0.0,0.8044,0.3937,0.9197,1.2821,0.2625,1.6949,38.9049,4.8709,2.3779,0.0,0.0,62.0037,3.248,4.3819,68.17,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.37,18850.58,24231.95,55.47,1.0,55.47,68.23,68.23,0.0,49.86,1.0,49.86,68.23,68.23,0.0,63.28,121.884,75.6428,119.4641,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.49,0.035,0.0,69.81,8.6,8.65,111.26,5.79,15.96,33.61,1.21,0.0,0.8044,0.3902,0.9191,1.2821,0.2625,1.6949,38.4818,4.735,2.3761,0.0,0.0,61.3288,3.186,4.3819,67.43,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 +house037.xml,67.05,113.253,76.7498,114.4743,0.1936,0.9975,1.0134,1.0,1.0108,1.0,64.8148,0.0,0.0,65.19,6.7,13.21,103.96,4.84,14.55,27.32,0.84,0.0,0.8039,0.363,1.0094,1.2821,0.2625,1.1111,41.1264,3.9656,10.1998,0.0,0.0,65.587,2.868,11.2281,71.1,2.87,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.3,19282.66,24364.47,52.9,1.0,52.9,67.05,67.05,0.0,47.97,1.0,47.97,67.05,67.05,0.0,60.88,122.591,75.4441,123.913,0.1936,0.9975,1.0134,1.0,1.0108,1.0,63.915,0.0,0.0,74.86,6.48,13.21,119.28,4.81,14.55,27.32,0.73,0.0,0.8046,0.3535,1.0091,1.2821,0.2625,1.1111,40.0368,3.8073,10.197,0.0,0.0,63.7975,2.828,11.2281,69.16,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house038.xml,65.17,130.326,82.5957,126.741,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.9446,0.0,0.0,39.61,39.93,9.92,35.16,22.42,17.57,39.59,1.29,0.0,1.8869,0.935,0.9565,2.1685,0.525,1.6949,27.5924,21.4916,5.0656,0.0,0.0,24.7586,12.0671,8.9761,24.85,12.07,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14043.9,19638.63,47.37,1.0,47.37,65.17,65.17,0.0,45.32,1.0,45.32,65.17,65.17,0.0,61.95,133.898,80.6675,130.2147,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.0144,0.0,0.0,43.43,39.82,9.92,38.16,22.94,17.57,39.59,1.14,0.0,1.8883999999999999,0.911,0.9564,2.1685,0.525,1.6949,26.6448,20.6117,5.065,0.0,0.0,23.999000000000002,11.8781,8.9761,24.09,11.879999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house039.xml,59.43,157.797,153.828,157.3985,0.09392,0.9785,1.0194,1.0,0.9975,0.6081,113.0802,44.319,0.0,73.88,20.25,16.5,117.83,13.260000000000002,29.71,47.17,0.0,0.0,2.4120999999999997,1.1898,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.6776,10.0485,15.1348,0.0,0.0,147.8177,6.566,27.2586,151.58,6.57,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,238.19,26536.13,11168.79,54.28,1.0,54.28,97.73,97.73,0.0,49.75,1.0,49.75,97.73,97.73,0.0,80.63,172.123,153.2764,171.6884,0.09392,0.9785,1.0194,1.0,0.9975,0.9032,112.6956,10.9134,0.0,88.2,20.25,16.5,140.62,13.280000000000001,29.71,47.16,0.0,0.0,2.4129,1.1886,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.3283,9.8466,15.1354,0.0,0.0,147.2074,6.4430000000000005,27.2597,150.95,6.4399999999999995,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 +house040.xml,63.72,195.655,119.2785,187.2007,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.541,0.0,0.0,125.28,12.48,11.06,199.63,8.0,19.45,44.92,1.91,0.0,0.8046,0.4097,0.9804,1.2821,0.2625,1.7241,63.6889,14.1029,7.1827,0.0,0.0,101.487,9.0381,12.6309,112.22,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.9,29248.27,40814.69,52.87,1.0,52.87,63.72,63.72,0.0,49.75,1.0,49.75,63.72,63.72,0.0,58.88,211.199,118.9757,202.0731,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.2718,0.0,0.0,141.16,12.15,11.06,224.94,7.73,19.46,44.92,1.91,0.0,0.8046,0.4124,0.9799,1.2821,0.2625,1.7241,63.4695,14.0237,7.1795,0.0,0.0,101.1361,8.9281,12.6317,111.83,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house041.xml,79.71,72.748,59.3561,74.4693,0.13115,1.0035,1.009,1.011,1.0237,1.0,48.279,0.0,0.0,25.93,8.19,12.53,41.34,5.19,20.93,26.11,0.0,0.0,0.804,0.4142,1.0143,1.2821,0.2625,1.6949,17.7789,6.1652,11.573,0.0,0.0,28.3498,3.908,19.3379,30.56,3.91,20.39,23.35,0.49,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.2,9768.62,5355.13,52.96,1.0,52.96,79.71,79.71,0.0,46.87,1.0,46.87,79.71,79.71,0.0,73.44,75.388,56.6775,77.1718,0.13115,1.0035,1.009,1.011,1.0237,1.0,46.271,0.0,0.0,28.65,8.11,12.53,45.67,5.16,20.94,26.11,0.0,0.0,0.8041,0.4129,1.014,1.2821,0.2625,1.6949,15.6297,6.1337,11.5641,0.0,0.0,24.9185,3.9,19.3303,26.86,3.9,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house042.xml,90.13,114.914,103.325,114.6348,0.21954,0.9827,1.0151,1.0,0.9976,1.0,77.6816,0.0,0.0,50.3,21.01,11.38,80.29,12.91,19.73,32.22,0.0,0.0,0.8032,0.4272,0.9946,1.2821,0.2625,1.7241,51.6697,16.2331,8.3472,0.0,0.0,82.4696,9.9751,14.4703,83.34,9.98,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.34,21272.03,18172.07,50.09,1.0,50.09,90.13,90.13,0.0,47.02,1.0,47.02,90.13,90.13,0.0,83.77,122.653,102.5024,122.355,0.21954,0.9827,1.0151,1.0,0.9976,1.0,77.4952,0.0,0.0,58.05,21.01,11.38,92.65,13.35,19.75,32.22,0.0,0.0,0.8032,0.4133,0.9939,1.2821,0.2625,1.7241,51.488,15.5992,8.3412,0.0,0.0,82.1816,9.9101,14.4693,83.04,9.91,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house043.xml,-8.05,52.033,21.9032,53.8574,0.30156,1.0351,1.0,1.0,1.0351,-0.1978,20.645,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.351,2.5641,2.3731,0.0,0.0,1.077,1.342,2.669,1.08,1.34,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.59,24.37,4017.42,53.47,1.0,53.47,40.67,40.67,1.0,47.89,1.0,47.89,40.67,40.67,1.0,35.77,56.143,21.881,58.1115,0.30156,1.0351,1.0,1.0,1.0351,0.95,20.615,1.0308,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4991,0.9875,0.4432,0.2625,1.1111,1.3791,2.515,2.373,0.0,0.0,1.067,1.323,2.67,1.07,1.32,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 +house044.xml,69.13,42.879,31.2493,45.2039,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.749,0.0,0.0,19.12,3.36,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3155,0.9207,1.2821,0.2625,1.1111,14.569,2.2243,4.5241,0.0,0.0,23.2658,1.851,5.4597,25.58,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.25,7639.26,9380.79,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.92,44.162,31.1579,46.5565,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.707,0.0,0.0,20.48,3.3,6.35,32.67,2.8,7.66,13.7,0.34,0.0,0.8035,0.3089,0.9205,1.2821,0.2625,1.1111,14.5403,2.1637,4.5229,0.0,0.0,23.2013,1.839,5.4597,25.51,1.84,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +house045.xml,88.89,180.375,153.9019,173.1434,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.836,0.0,0.0,75.19,42.92,12.22,56.33,24.57,21.3,50.05,0.0,0.0,0.5917,0.4586,1.9438,0.4432,0.2625,3.3898,64.6317,31.2536,13.7026,0.0,0.0,48.4194,17.8922,23.895,48.42,17.89,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,100.07,25512.51,26559.57,49.7,1.0,49.7,88.89,88.89,0.0,45.77,1.0,45.77,88.89,88.89,0.0,82.94,190.597,151.7399,182.9555,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.267,0.0,0.0,85.95,42.39,12.22,64.26,25.48,21.3,50.05,0.0,0.0,0.5929,0.4368,1.9438,0.4432,0.2625,3.3898,64.1922,29.5328,13.702,0.0,0.0,47.9914,17.7512,23.895,47.99,17.75,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 +house046.xml,-4.25,132.782,49.2257,132.1265,0.27804,0.9896,1.0192,0.9866,0.9951,-0.1141,46.135,51.401,0.0,75.51,12.01,12.93,62.76,6.72,13.96,29.19,3.15,0.0,0.5333,0.469,1.0064,0.4432,0.2625,1.087,16.3322,2.5297,9.7587,0.0,0.0,13.5751,1.416,10.54,13.58,1.42,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.86,2778.52,28330.5,50.22,1.0,50.22,37.26,37.26,1.0,44.19,1.0,44.19,37.26,37.26,1.0,32.43,144.39,49.0445,143.6772,0.27804,0.9896,1.0192,0.9866,0.9951,0.95,46.063,2.3032,0.0,87.47,11.66,12.93,72.55,6.85,13.97,29.18,3.15,0.0,0.5344,0.4467,1.0062,0.4432,0.2625,1.087,16.2904,2.3924,9.7566,0.0,0.0,13.5111,1.406,10.54,13.51,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 +house047.xml,63.75,84.038,53.8066,84.3982,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.9912,0.0,0.0,32.64,9.12,10.49,51.98,5.61,11.8,30.7,1.09,0.0,0.805,0.4271,0.9872,1.2821,0.2625,1.1111,26.1515,3.8618,2.4723,0.0,0.0,41.6517,2.374,2.7825,45.67,2.37,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.66,10571.8,6168.12,58.46,1.0,58.46,63.75,63.75,0.0,53.21,1.0,53.21,63.75,63.75,0.0,58.65,90.492,53.3,90.8798,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.6346,0.0,0.0,39.19,9.07,10.49,62.42,5.6,11.81,30.69,1.05,0.0,0.805,0.4253,0.9868,1.2821,0.2625,1.1111,25.7494,3.7732,2.4703,0.0,0.0,41.0087,2.329,2.7815,44.96,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 +house048.xml,66.1,98.439,68.8156,104.1039,0.33383,1.0286,1.0,1.0282,1.0575,1.0,46.4212,0.0,0.0,1.98,65.85,5.6,3.17,37.71,10.95,24.41,0.6,0.0,0.8005,0.4584,0.8822,1.2821,0.2625,1.7241,0.4993,44.0594,3.7459,0.0,0.0,0.7996,25.2322,7.3207,0.81,25.23,7.59,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.95,6731.72,7674.01,50.82,1.0,50.82,66.1,66.1,0.0,46.26,1.0,46.26,66.1,66.1,0.0,65.22,98.652,68.0476,104.3292,0.33383,1.0286,1.0,1.0282,1.0575,1.0,45.9566,0.0,0.0,2.09,66.05,5.6,3.35,37.88,10.95,24.4,0.51,0.0,0.8003,0.4578,0.8822,1.2821,0.2625,1.7241,0.4374,43.4743,3.7459,0.0,0.0,0.7006,24.9312,7.3207,0.71,24.93,7.59,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 house049.xml,52.33,43.64,24.0148,45.8873,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.59,16.62,17.28,1.37,0.0,0.606,0.5153,0.813,0.4432,0.2625,1.6949,4.7937,1.1012,2.9789,0.0,0.0,3.506,0.561,6.2103,3.51,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.66,2584.2,2740.94,49.11,1.0,49.11,52.33,52.33,0.0,44.16,1.0,44.16,52.33,52.33,0.0,51.24,44.549,24.0039,46.8431,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6418,0.0,0.0,14.88,3.06,7.97,10.81,1.56,16.62,17.27,1.37,0.0,0.6102,0.5128,0.813,0.4432,0.2625,1.6949,4.7921,1.0919,2.9789,0.0,0.0,3.481,0.559,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 -house050.xml,86.66,66.535,58.583,67.6045,0.16654,1.0045,1.0115,1.0,1.0161,1.0,50.436,0.0,0.0,21.4,4.92,11.91,34.11,3.21,21.36,27.26,1.05,0.0,0.8042,0.4029,0.9617,1.2821,0.2625,1.7241,9.1034,4.2601,8.3976,0.0,0.0,14.5118,2.776,15.0553,15.91,2.78,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.07,7503.93,4147.44,55.71,1.0,55.71,86.66,86.66,0.0,50.46,1.0,50.46,86.66,86.66,0.0,82.0,69.961,58.2888,71.0856,0.16654,1.0045,1.0115,1.0,1.0161,1.0,50.2664,0.0,0.0,25.08,4.68,11.91,39.98,3.11,21.36,27.25,1.04,0.0,0.8043,0.3952,0.9616,1.2821,0.2625,1.7241,9.0189,4.1241,8.3968,0.0,0.0,14.3768,2.74,15.0553,15.76,2.74,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house051.xml,55.17,45.5,25.7069,46.5952,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.4128,0.0,0.0,11.33,2.81,9.97,8.56,1.44,18.47,20.61,0.77,0.0,0.587,0.5114,0.9154,0.4432,0.2625,1.6949,5.6285,0.452,2.0155,0.0,0.0,4.25,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.43,2727.41,2913.1,51.66,1.0,51.66,55.17,55.17,0.0,46.34,1.0,46.34,55.17,55.17,0.0,52.64,47.809,25.7734,48.9597,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.3748,0.0,0.0,13.85,2.62,9.97,10.23,1.36,18.47,20.6,0.77,0.0,0.6,0.5044,0.9153,0.4432,0.2625,1.6949,5.7061,0.4419,2.0153,0.0,0.0,4.215,0.23,3.7319,4.22,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 -house052.xml,58.77,44.421,27.63,47.0167,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.766,0.0,0.0,13.19,1.69,10.35,9.57,0.8,11.96,18.54,0.66,0.0,0.6109,0.5529,0.9619,0.4432,0.2625,1.1111,6.0861,0.2359,7.148,0.0,0.0,4.416,0.112,8.2565,4.42,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.37,1795.03,2856.59,53.24,1.0,53.24,58.77,58.77,0.0,48.05,1.0,48.05,58.77,58.77,0.0,57.11,45.747,27.6506,48.4202,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.739,0.0,0.0,14.65,1.57,10.35,10.52,0.75,11.96,18.53,0.65,0.0,0.6168,0.5496,0.9619,0.4432,0.2625,1.1111,6.1091,0.2345,7.148,0.0,0.0,4.39,0.112,8.2565,4.39,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 -house053.xml,70.9,66.037,47.6358,67.1844,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.707,0.0,0.0,21.53,4.76,11.91,34.33,3.13,21.31,26.94,0.88,0.0,0.8043,0.3994,0.9637,1.2821,0.2625,1.7241,13.1925,3.0608,8.0595,0.0,0.0,21.03,2.012,14.4194,22.67,2.01,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.81,7447.59,4117.09,55.57,1.0,55.57,70.9,70.9,0.0,50.34,1.0,50.34,70.9,70.9,0.0,66.53,69.568,47.0894,70.7768,0.16718,1.0058,1.0115,1.0,1.0174,1.0,38.345,0.0,0.0,25.37,4.52,11.91,40.44,3.03,21.32,26.93,0.83,0.0,0.8043,0.3916,0.9635,1.2821,0.2625,1.7241,12.7723,2.9951,8.058,0.0,0.0,20.3593,2.008,14.4194,21.95,2.01,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house054.xml,62.26,170.097,108.2936,173.9389,0.33489,0.9506,1.0462,1.0282,1.0226,1.0,76.5686,0.0,0.0,3.6599999999999997,120.1,7.75,5.85,69.11,13.55,37.12,1.49,0.0,1.6014,0.9113,0.9688,2.5642,0.525,1.6949,1.3447,75.4195,1.8344,0.0,0.0,2.1534,43.4024,3.2093,2.18,43.4,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.7,9805.02,13372.43,49.9,1.0,49.9,62.26,62.26,0.0,45.25,1.0,45.25,62.26,62.26,0.0,61.56,170.831,107.5442,174.6895,0.33489,0.9506,1.0462,1.0282,1.0226,1.0,76.175,0.0,0.0,3.92,120.63,7.75,6.27,69.53999999999999,13.55,37.11,1.42,0.0,1.6007,0.9098999999999999,0.9687,2.5642,0.525,1.6949,1.2565,74.82050000000001,1.8343,0.0,0.0,2.0128,43.1284,3.2093,2.03,43.129999999999995,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 -house055.xml,63.63,95.876,64.6653,101.6245,0.33857,1.0305,1.0,1.0286,1.06,1.0,46.8366,0.0,0.0,2.0,65.19,5.6,3.2,37.24,10.68,22.28,0.81,0.0,0.8006,0.4596,0.8893,1.2821,0.2625,1.6949,0.9461,42.4165,1.6847,0.0,0.0,1.5151,24.2312,3.2109,1.53,24.23,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.3,6174.94,7634.85,48.98,1.0,48.98,63.63,63.63,0.0,44.55,1.0,44.55,63.63,63.63,0.0,63.16,96.084,64.3295,101.845,0.33857,1.0305,1.0,1.0286,1.06,1.0,46.6578,0.0,0.0,2.07,65.34,5.6,3.32,37.36,10.68,22.28,0.8,0.0,0.8004,0.4591,0.8893,1.2821,0.2625,1.6949,0.9069,42.1379,1.6847,0.0,0.0,1.4528,24.0952,3.2109,1.47,24.1,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 -house056.xml,62.74,73.45,46.5841,74.2454,0.20104,0.997,1.0139,1.0,1.0108,1.0,41.0018,0.0,0.0,26.09,5.17,11.91,41.75,3.45,20.93,29.21,1.07,0.0,1.6101,0.3937,0.9647,2.5642,0.2625,1.6949,13.5153,2.8855,3.3663,0.0,0.0,21.6175,1.924,5.9145,23.28,1.92,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.23,7316.55,4461.54,54.96,1.0,54.96,62.74,62.74,0.0,49.7,1.0,49.7,62.74,62.74,0.0,58.69,77.834,46.1747,78.6768,0.20104,0.997,1.0139,1.0,1.0108,1.0,40.736,0.0,0.0,30.78,4.9,11.91,49.24,3.34,20.93,29.2,1.04,0.0,1.6084,0.386,0.9646,2.5642,0.2625,1.6949,13.2517,2.811,3.366,0.0,0.0,21.196,1.912,5.9145,22.84,1.91,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 -house057.xml,82.27,57.391,47.8899,58.2118,0.1605,1.0143,1.0,1.0,1.0143,1.0,42.4114,0.0,0.0,18.8,4.13,9.97,29.96,2.81,11.53,23.76,0.74,0.0,0.8042,0.3859,0.9611,1.2821,0.2625,1.1111,9.7918,4.2652,2.8559,0.0,0.0,15.6095,2.902,3.3018,17.21,2.9,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.84,5206.68,3593.78,57.91,1.0,57.91,82.27,82.27,0.0,53.16,1.0,53.16,82.27,82.27,0.0,76.74,60.292,46.9322,61.1542,0.1605,1.0143,1.0,1.0,1.0143,1.0,41.5934,0.0,0.0,21.95,3.93,9.97,34.99,2.73,11.53,23.75,0.69,0.0,0.8043,0.3781,0.961,1.2821,0.2625,1.1111,9.69,4.0945,2.8557,0.0,0.0,15.4462,2.843,3.3018,17.03,2.84,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 -house058.xml,64.66,122.032,79.8818,123.5415,0.33376,0.9896,1.023,1.0,1.0124,1.0,56.7802,0.0,0.0,3.5,82.44,6.68,5.6,47.58,12.5,28.44,0.97,0.0,0.8005,0.4549,0.9222,1.2821,0.2625,1.7241,1.2488,50.633,5.616,0.0,0.0,2.0,29.2223,10.5,2.02,29.22,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.93,7857.32,9709.67,50.8,1.0,50.8,64.66,64.66,0.0,46.18,1.0,46.18,64.66,64.66,0.0,63.21,123.541,79.0508,125.0692,0.33376,0.9896,1.023,1.0,1.0124,1.0,56.3668,0.0,0.0,4.05,83.49,6.68,6.48,48.37,12.5,28.43,0.89,0.0,0.8004,0.4532,0.9222,1.2821,0.2625,1.7241,1.1331,49.9978,5.616,0.0,0.0,1.815,28.9663,10.5,1.83,28.97,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house059.xml,55.26,35.102,20.8276,37.6918,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.6476,0.0,0.0,7.78,2.93,7.97,6.04,1.47,15.04,16.0,0.42,0.0,0.5709,0.5224,0.8987,0.4432,0.2625,1.6949,3.7326,0.8855,2.0045,0.0,0.0,2.898,0.445,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.32,2428.55,2168.1,50.61,1.0,50.61,55.26,55.26,0.0,46.27,1.0,46.27,55.26,55.26,0.0,54.29,35.695,20.8087,38.3286,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.5936,0.0,0.0,8.47,2.85,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5795,0.5203,0.8981,0.4432,0.2625,1.6949,3.7246,0.88,2.0031,0.0,0.0,2.849,0.444,3.7805,2.85,0.44,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 -house060.xml,71.58,113.139,81.8536,114.3538,0.23111,0.9795,1.0319,1.0,1.0107,1.0,60.4044,0.0,0.0,32.1,33.54,11.5,51.34,20.06,19.93,36.01,0.0,0.0,1.6029,0.8775999999999999,0.9947,2.5642,0.525,1.7241,26.6695,19.8701,7.9621,0.0,0.0,42.6643,11.8882,13.8006,43.12,11.89,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,89.84,15743.85,17337.78,50.12,1.0,50.12,71.58,71.58,0.0,46.41,1.0,46.41,71.58,71.58,0.0,69.26,115.89,81.131,117.1344,0.23111,0.9795,1.0319,1.0,1.0107,1.0,60.242,0.0,0.0,34.98,33.42,11.5,55.93,20.490000000000002,19.93,36.01,0.0,0.0,1.6036,0.8563000000000001,0.9946,2.5642,0.525,1.7241,26.5333,19.2844,7.9613,0.0,0.0,42.4248,11.8262,13.8006,42.88,11.83,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house061.xml,69.96,27.219,20.2833,28.9926,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.892,0.0,0.0,4.95,3.02,5.78,7.89,1.75,6.8,13.47,0.0,0.0,0.8039,0.4535,0.9248,1.2821,0.2625,1.087,6.4358,0.7618,3.9607,0.0,0.0,10.2631,0.441,4.655,11.25,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,102.17,3205.25,2945.22,63.31,1.0,63.31,69.96,69.96,0.0,50.98,1.0,50.98,69.96,69.96,0.0,67.33,28.185,20.2141,30.0216,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.8572,0.0,0.0,5.98,2.96,5.78,9.53,1.76,6.8,13.46,0.0,0.0,0.8041,0.4432,0.9243,1.2821,0.2625,1.087,6.4007,0.731,3.9583,0.0,0.0,10.2047,0.433,4.655,11.19,0.43,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 -house062.xml,76.11,38.169,30.9208,40.6264,0.24836,1.0796,0.9657,1.0209,1.0644,1.0,26.462,0.0,0.0,9.63,8.95,5.18,7.42,5.09,6.18,14.41,0.0,0.0,0.5754,0.4612,0.911,0.4432,0.2625,1.087,11.0933,6.2222,3.9843,0.0,0.0,8.5451,3.542,4.754,8.55,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,76.71,4698.37,5754.32,49.37,1.0,49.37,76.11,76.11,0.0,45.88,1.0,45.88,76.11,76.11,0.0,75.49,38.332,30.7994,40.7999,0.24836,1.0796,0.9657,1.0209,1.0644,1.0,26.388,0.0,0.0,9.81,8.93,5.18,7.55,5.11,6.18,14.41,0.0,0.0,0.5764,0.4587,0.911,0.4432,0.2625,1.087,11.0409,6.1532,3.9843,0.0,0.0,8.4911,3.522,4.754,8.49,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house063.xml,78.21,89.575,70.4451,90.0767,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,52.3312,0.0,0.0,16.56,40.16,6.02,26.52,23.55,12.48,26.01,0.83,0.0,0.8005,0.4476,0.8309,1.2821,0.2625,1.7241,14.0545,27.0921,4.2484,0.0,0.0,22.5088,15.8901,8.8161,22.75,15.89,9.48,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.36,10936.48,10322.51,49.31,1.0,49.31,78.21,78.21,0.0,46.44,1.0,46.44,78.21,78.21,0.0,75.62,90.787,69.0402,91.2955,0.25336,1.0022,0.9825,1.0213,1.0056,1.0,51.6182,0.0,0.0,17.66,40.32,6.02,28.28,24.02,12.48,26.01,0.79,0.0,0.8005,0.4407,0.8309,1.2821,0.2625,1.7241,13.6351,26.3477,4.2484,0.0,0.0,21.8369,15.6951,8.8161,22.07,15.7,9.48,20.83,3.98,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house064.xml,71.0,74.716,55.179,77.7138,0.27451,1.0363,0.9811,1.0231,1.0401,1.0,40.4504,0.0,0.0,14.5,32.27,6.02,23.22,18.98,12.18,21.4,0.53,0.0,0.8005,0.4463,0.8368,1.2821,0.2625,1.6949,11.1119,20.9505,3.9385,0.0,0.0,17.7963,12.3241,7.9772,17.98,12.32,8.41,16.8,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,97.04,8654.63,8574.97,53.92,1.0,53.92,71.0,71.0,0.0,50.71,1.0,50.71,71.0,71.0,0.0,68.17,75.718,53.6852,78.756,0.27451,1.0363,0.9811,1.0231,1.0401,1.0,39.5846,0.0,0.0,15.45,32.39,6.02,24.74,19.36,12.18,21.4,0.47,0.0,0.8006,0.4392,0.8368,1.2821,0.2625,1.6949,10.6399,20.2897,3.9385,0.0,0.0,17.0382,12.1291,7.9772,17.22,12.13,8.41,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house065.xml,76.47,97.781,77.4167,101.2356,0.25233,0.9965,1.0174,1.0212,1.0353,1.0,58.086,0.0,0.0,16.61,41.88,8.98,26.6,25.11,16.32,29.28,1.05,0.0,0.8003,0.4378,0.9482,1.2821,0.2625,1.7241,15.0685,26.9874,6.2818,0.0,0.0,24.1387,16.1831,11.4228,24.39,16.18,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.15,12217.65,11439.87,47.97,1.0,47.97,76.47,76.47,0.0,45.18,1.0,45.18,76.47,76.47,0.0,74.25,99.087,76.1681,102.5877,0.25233,0.9965,1.0174,1.0212,1.0353,1.0,57.4662,0.0,0.0,17.77,42.06,8.98,28.47,25.58,16.32,29.27,1.01,0.0,0.8003,0.4316,0.9481,1.2821,0.2625,1.7241,14.6834,26.3152,6.2814,0.0,0.0,23.5212,16.0071,11.4228,23.77,16.01,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house066.xml,74.11,73.08,56.7816,76.6174,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.394,0.0,0.0,12.03,30.82,7.52,8.88,17.9,8.75,21.92,0.79,0.0,0.6004,0.452,0.9549,0.4432,0.2625,1.1111,8.316,21.4501,5.6426,0.0,0.0,6.1391,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.14,8758.25,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.831,56.1715,77.4048,0.26201,1.0258,1.0,1.022,1.0484,1.0,46.105,0.0,0.0,12.7,30.92,7.52,9.35,18.15,8.75,21.91,0.78,0.0,0.602,0.4472,0.9549,0.4432,0.2625,1.1111,8.1906,21.0414,5.6426,0.0,0.0,6.0311,12.3541,6.5657,6.03,12.35,6.42,17.79,3.51,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house067.xml,60.44,86.331,54.0713,89.4686,0.29321,1.0114,1.0,1.0247,1.0363,1.0,40.4848,0.0,0.0,15.35,36.88,7.52,24.58,21.97,14.12,25.79,0.8,0.0,0.8004,0.4406,0.9026,1.2821,0.2625,1.6949,9.8954,21.0045,2.9774,0.0,0.0,15.8507,12.5151,5.5908,16.02,12.51,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.83,8501.85,10025.26,48.76,1.0,48.76,60.44,60.44,0.0,45.9,1.0,45.9,60.44,60.44,0.0,58.44,87.699,53.1167,90.8863,0.29321,1.0114,1.0,1.0247,1.0363,1.0,40.1002,0.0,0.0,16.58,37.06,7.52,26.56,22.48,14.12,25.79,0.75,0.0,0.8003,0.4329,0.9026,1.2821,0.2625,1.6949,9.5929,20.3894,2.9774,0.0,0.0,15.3667,12.3661,5.5908,15.53,12.37,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house068.xml,74.6,117.679,85.6889,114.8719,0.25155,0.9761,1.0,1.0,0.9761,1.0,65.0198,0.0,0.0,24.86,51.480000000000004,7.52,39.81,30.69,14.44,32.85,0.98,0.0,1.6014,0.873,0.8975,2.5642,0.525,1.7241,17.9568,29.072100000000002,5.285,0.0,0.0,28.760199999999998,17.3291,10.1524,29.07,17.33,10.92,26.89,6.49,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.33,13540.29,13554.81,50.41,1.0,50.41,74.6,74.6,0.0,47.23,1.0,47.23,74.6,74.6,0.0,69.14,121.782,82.1929,118.877,0.25155,0.9761,1.0,1.0,0.9761,1.0,63.1012,0.0,0.0,28.48,52.08,7.52,45.620000000000005,32.18,14.44,32.84,0.86,0.0,1.6014,0.8424,0.8975,2.5642,0.525,1.7241,17.0934,27.3746,5.285,0.0,0.0,27.3767,16.9121,10.1524,27.67,16.91,10.92,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 -house069.xml,73.15,109.742,79.4836,108.6545,0.27554,0.9901,1.0,1.0,0.9901,1.0,58.334,0.0,0.0,26.08,46.5,7.52,41.79,27.42,14.18,29.32,0.33,0.0,0.8003,0.4453,0.8987,1.2821,0.2625,1.6949,19.3239,28.1412,5.2964,0.0,0.0,30.9581,16.5931,9.9891,31.28,16.59,10.53,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.81,12697.39,12474.23,56.16,1.0,56.16,73.15,73.15,0.0,52.94,1.0,52.94,73.15,73.15,0.0,69.43,113.769,78.2052,112.6416,0.27554,0.9901,1.0,1.0,0.9901,1.0,58.1996,0.0,0.0,29.71,47.08,7.52,47.59,28.85,14.18,29.31,0.15,0.0,0.8004,0.4284,0.8986,1.2821,0.2625,1.6949,19.1956,26.9796,5.2961,0.0,0.0,30.7483,16.5321,9.9891,31.07,16.53,10.53,22.98,3.76,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house070.xml,47.28,181.182,81.4352,172.245,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.507,0.0,0.0,88.71,25.0,11.77,65.77,13.99,13.08,53.58,2.13,0.0,0.5978,0.4692,0.9994,0.4432,0.2625,1.1111,31.5376,5.6615,8.244,0.0,0.0,23.3822,3.168,9.1652,23.38,3.17,8.97,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8020.17,17263.2,52.1,1.0,52.1,47.28,47.28,1.0,46.1,1.0,46.1,47.28,47.28,0.0,43.16,195.781,80.3251,186.1239,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.008,0.0,0.0,103.84,24.6,11.77,77.31,14.54,13.09,53.57,2.01,0.0,0.5953,0.4441,0.9992,0.4432,0.2625,1.1111,30.8395,5.2813,8.2394,0.0,0.0,22.9612,3.122,9.1622,22.96,3.12,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house071.xml,75.64,58.701,46.6916,61.7297,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.3238,0.0,0.0,20.51,8.57,9.85,16.3,4.86,11.46,19.19,0.58,0.0,1.4445999999999999,0.4632,0.9555,1.7253,0.2625,1.1111,22.8696,3.7811,7.0929,0.0,0.0,18.207199999999997,2.143,8.2483,18.259999999999998,2.14,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.96,4783.29,5909.97,51.55,1.0,51.55,75.64,75.64,0.0,53.48,1.0,53.48,75.64,75.64,0.0,72.06,61.226,46.3978,64.3849,0.19663,1.0345,1.0,1.0165,1.0516,1.0,40.221,0.0,0.0,23.21,8.45,9.85,18.48,4.94,11.46,19.19,0.53,0.0,1.4311,0.4489,0.9555,1.7253,0.2625,1.1111,22.7347,3.6232,7.0929,0.0,0.0,18.1254,2.119,8.2483,18.189999999999998,2.12,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 -house072.xml,61.3,132.316,79.74,130.0794,0.22799,0.98,0.9843,1.0191,0.9831,1.0,64.5236,0.0,0.0,88.37,1.24,10.45,138.72,1.74,18.75,31.12,1.14,0.0,1.3274,0.1862,0.9613,1.7253,0.2625,1.7241,52.3583,0.6703,5.2854,0.0,0.0,80.3367,0.945,9.4796,88.25,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.15,16206.33,10557.2,55.89,1.0,55.89,61.3,61.3,0.0,49.01,1.0,49.01,61.3,61.3,0.0,55.28,146.2,79.4515,143.7287,0.22799,0.98,0.9843,1.0191,0.9831,1.0,64.2244,0.0,0.0,102.47,1.05,10.45,160.74,1.66,18.77,31.11,1.11,0.0,1.3484,0.1651,0.96,1.7253,0.2625,1.7241,52.167,0.5942,5.2784,0.0,0.0,79.7485,0.945,9.4796,87.60000000000001,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 -house073.xml,32.76,221.323,114.4698,210.9093,0.16694,0.9421,1.0115,1.0,0.9529,0.6037,90.9106,36.031,0.0,118.91,26.9,11.77,97.71000000000001,15.030000000000001,26.81,61.14,2.62,0.0,1.9849,0.9402,0.9976,2.1364,0.525,2.2727,28.4236,23.8029,14.8433,0.0,0.0,25.0332,13.2961,33.8161,25.85,13.3,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.84,13743.71,20949.04,50.6,1.0,50.6,54.27,54.27,0.0,47.79,1.0,47.79,54.27,54.27,0.0,46.39,237.62,112.4174,226.4395,0.16694,0.9421,1.0115,1.0,0.9529,0.9345,90.5728,5.9315,0.0,135.55,26.55,11.77,112.08,15.71,26.84,61.13,2.62,0.0,1.9765,0.8875,0.9965,2.1364,0.525,2.2727,28.016299999999998,22.1734,14.8277,0.0,0.0,24.841700000000003,13.1221,33.8172,25.65,13.129999999999999,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house074.xml,72.27,78.2,59.5064,82.3377,0.24387,1.0318,1.0,1.0205,1.0529,1.0,48.411,0.0,0.0,14.57,33.17,7.52,10.63,19.3,8.67,22.21,0.73,0.0,0.6076,0.4511,0.9528,0.4432,0.2625,1.0989,8.9464,22.6805,5.7265,0.0,0.0,6.5261,13.1991,6.6048,6.53,13.2,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.99,7256.82,9315.36,43.82,1.0,43.82,72.27,72.27,0.0,42.14,1.0,42.14,72.27,72.27,0.0,70.41,79.445,58.9,83.6485,0.24387,1.0318,1.0,1.0205,1.0529,1.0,48.232,0.0,0.0,15.7,33.31,7.52,11.36,19.75,8.67,22.21,0.71,0.0,0.6126,0.4428,0.9528,0.4432,0.2625,1.0989,8.9273,22.1181,5.7265,0.0,0.0,6.4591,13.1131,6.6048,6.46,13.11,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house075.xml,67.25,82.167,57.3073,85.2197,0.21668,1.0219,1.015,1.0,1.0372,1.0,45.5168,0.0,0.0,32.56,15.52,11.38,52.01,9.82,19.4,22.71,0.0,0.0,0.8025,0.4151,0.9943,1.2821,0.2625,1.6949,20.737,8.322,10.2992,0.0,0.0,33.127,5.264,17.5566,35.91,5.26,18.51,17.68,0.27,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,89.9,12093.47,12969.68,46.66,1.0,46.66,67.25,67.25,0.0,43.88,1.0,43.88,67.25,67.25,0.0,62.14,86.093,55.4824,89.2915,0.21668,1.0219,1.015,1.0,1.0372,1.0,44.2816,0.0,0.0,36.47,15.54,11.38,58.27,10.06,19.41,22.7,0.0,0.0,0.8026,0.4055,0.9938,1.2821,0.2625,1.6949,19.5503,7.9583,10.2928,0.0,0.0,31.2304,5.152,17.5537,33.86,5.15,18.51,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house076.xml,66.44,31.439,22.0875,33.2457,0.17958,1.0683,0.9752,1.015,1.0575,1.0,19.2756,0.0,0.0,6.98,4.84,5.78,11.13,3.44,12.13,13.69,0.15,0.0,0.804,0.3687,0.8083,1.2821,0.2625,1.6949,5.6429,2.948,2.7976,0.0,0.0,8.9978,2.099,5.8665,9.92,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,112.32,3996.89,3365.18,52.65,1.0,52.65,66.44,66.44,0.0,46.98,1.0,46.98,66.44,66.44,0.0,64.65,32.152,21.9815,33.9997,0.17958,1.0683,0.9752,1.015,1.0575,1.0,19.2376,0.0,0.0,7.84,4.76,5.78,12.5,3.45,12.14,13.68,0.08,0.0,0.8041,0.3626,0.8075,1.2821,0.2625,1.6949,5.6126,2.8755,2.7954,0.0,0.0,8.9489,2.082,5.8673,9.87,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house077.xml,77.4,39.284,32.5341,42.0326,0.20653,1.0669,0.9857,1.0173,1.07,1.0,31.0452,0.0,0.0,9.12,5.06,8.65,14.57,3.61,9.53,15.25,1.21,0.0,0.8023,0.3678,0.9764,1.2821,0.2625,1.0753,5.5274,2.6364,6.5863,0.0,0.0,8.8323,1.882,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.35,7529.46,8545.66,56.2,1.0,56.2,77.4,77.4,0.0,46.39,1.0,46.39,77.4,77.4,0.0,74.38,40.711,32.399,43.5594,0.20653,1.0669,0.9857,1.0173,1.07,1.0,30.9986,0.0,0.0,10.72,4.88,8.65,17.12,3.58,9.53,15.24,1.22,0.0,0.8026,0.3582,0.976,1.2821,0.2625,1.0753,5.4803,2.5512,6.5835,0.0,0.0,8.7543,1.87,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house078.xml,57.38,134.713,76.3128,132.9869,0.26738,0.9693,1.0184,1.0,0.9872,1.0,57.3132,0.0,0.0,30.34,57.14,8.98,48.6,32.61,16.25,36.97,1.29,0.0,0.8004,0.46,0.9359,1.2821,0.2625,1.6949,13.944,30.3286,3.7552,0.0,0.0,22.3341,17.3092,6.8003,24.49,17.31,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.58,12012.05,15289.41,53.89,1.0,53.89,57.38,57.38,0.0,50.74,1.0,50.74,57.38,57.38,0.0,54.63,139.297,75.1227,137.5122,0.26738,0.9693,1.0184,1.0,0.9872,1.0,57.1734,0.0,0.0,34.4,57.73,8.98,55.1,34.04,16.25,36.97,1.23,0.0,0.8004,0.4452,0.9359,1.2821,0.2625,1.6949,13.8539,29.2277,3.7552,0.0,0.0,22.1899,17.2342,6.8003,24.33,17.23,9.47,27.69,0.6,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house050.xml,86.58,66.55,58.5442,67.6206,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.417,0.0,0.0,21.4,4.94,11.91,34.11,3.22,21.36,27.26,1.05,0.0,0.8042,0.4021,0.9617,1.2821,0.2625,1.7241,9.1034,4.2212,8.3976,0.0,0.0,14.5118,2.756,15.0553,15.91,2.76,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.01,7502.99,4148.1,55.68,1.0,55.68,86.58,86.58,0.0,50.42,1.0,50.42,86.58,86.58,0.0,81.92,69.977,58.2504,71.1028,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.2464,0.0,0.0,25.08,4.69,11.91,39.98,3.13,21.36,27.25,1.04,0.0,0.8043,0.3944,0.9616,1.2821,0.2625,1.7241,9.0189,4.0857,8.3968,0.0,0.0,14.3768,2.72,15.0553,15.76,2.72,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house051.xml,55.17,45.5,25.7069,46.5952,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.4128,0.0,0.0,11.33,2.81,9.97,8.56,1.44,18.47,20.61,0.77,0.0,0.587,0.5114,0.9154,0.4432,0.2625,1.6949,5.6285,0.452,2.0155,0.0,0.0,4.25,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.43,2727.41,2913.1,51.66,1.0,51.66,55.17,55.17,0.0,46.31,1.0,46.31,55.17,55.17,0.0,52.64,47.809,25.7734,48.9597,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.3748,0.0,0.0,13.85,2.62,9.97,10.23,1.36,18.47,20.6,0.77,0.0,0.6,0.5044,0.9153,0.4432,0.2625,1.6949,5.7061,0.4419,2.0153,0.0,0.0,4.215,0.23,3.7319,4.22,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 +house052.xml,58.76,44.427,27.6296,47.023,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.766,0.0,0.0,13.19,1.69,10.35,9.57,0.8,11.96,18.54,0.66,0.0,0.6108,0.5529,0.9619,0.4432,0.2625,1.1111,6.0857,0.2359,7.148,0.0,0.0,4.416,0.112,8.2565,4.42,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.36,1795.05,2856.87,53.23,1.0,53.23,58.76,58.76,0.0,48.05,1.0,48.05,58.76,58.76,0.0,57.1,45.752,27.6511,48.4255,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.739,0.0,0.0,14.65,1.57,10.35,10.53,0.75,11.96,18.53,0.65,0.0,0.6168,0.5503,0.9619,0.4432,0.2625,1.1111,6.1093,0.2348,7.148,0.0,0.0,4.39,0.112,8.2565,4.39,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 +house053.xml,70.86,66.051,47.6149,67.1997,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.696,0.0,0.0,21.53,4.78,11.91,34.33,3.15,21.31,26.94,0.88,0.0,0.8043,0.3986,0.9637,1.2821,0.2625,1.7241,13.1925,3.0399,8.0595,0.0,0.0,21.03,2.002,14.4194,22.67,2.0,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.76,7447.09,4117.75,55.54,1.0,55.54,70.86,70.86,0.0,50.31,1.0,50.31,70.86,70.86,0.0,66.53,69.584,47.1001,70.7941,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.357,0.0,0.0,25.37,4.54,11.91,40.44,3.05,21.32,26.93,0.83,0.0,0.8043,0.3907,0.9635,1.2821,0.2625,1.7241,12.7723,3.0058,8.058,0.0,0.0,20.3593,2.02,14.4194,21.95,2.02,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house054.xml,62.23,170.101,108.2463,173.9422,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.56,0.0,0.0,3.6599999999999997,120.1,7.75,5.85,69.14,13.55,37.12,1.49,0.0,1.601,0.9109,0.9688,2.5642,0.525,1.6949,1.345,75.3719,1.8344,0.0,0.0,2.1544,43.3934,3.2093,2.18,43.39,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.69,9803.9,13373.16,49.88,1.0,49.88,62.23,62.23,0.0,45.24,1.0,45.24,62.23,62.23,0.0,61.53,170.836,107.4967,174.6938,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.1664,0.0,0.0,3.92,120.63,7.75,6.27,69.57,13.55,37.11,1.42,0.0,1.6008,0.9095,0.9687,2.5642,0.525,1.6949,1.2571,74.7723,1.8343,0.0,0.0,2.0138000000000003,43.1194,3.2093,2.03,43.120000000000005,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house055.xml,63.54,95.877,64.5746,101.6243,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.7966,0.0,0.0,2.0,65.19,5.6,3.2,37.26,10.68,22.28,0.81,0.0,0.8006,0.4593,0.8893,1.2821,0.2625,1.6949,0.9455,42.3274,1.6847,0.0,0.0,1.5141,24.1942,3.2109,1.53,24.19,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.22,6168.65,7635.96,48.95,1.0,48.95,63.54,63.54,0.0,44.51,1.0,44.51,63.54,63.54,0.0,63.07,96.086,64.239,101.8459,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.6132,0.0,0.0,2.07,65.34,5.6,3.32,37.38,10.68,22.28,0.8,0.0,0.8006,0.459,0.8893,1.2821,0.2625,1.6949,0.9072,42.0471,1.6847,0.0,0.0,1.4528,24.0522,3.2109,1.47,24.05,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 +house056.xml,62.74,73.451,46.5835,74.2453,0.20078,0.997,1.0139,1.0,1.0108,1.0,41.0018,0.0,0.0,26.09,5.17,11.91,41.75,3.45,20.93,29.21,1.07,0.0,1.6101,0.3937,0.9647,2.5642,0.2625,1.6949,13.515,2.8852,3.3663,0.0,0.0,21.6175,1.924,5.9145,23.28,1.92,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.24,7316.55,4461.54,54.97,1.0,54.97,62.74,62.74,0.0,49.71,1.0,49.71,62.74,62.74,0.0,58.69,77.836,46.1739,78.6778,0.20078,0.997,1.0139,1.0,1.0108,1.0,40.736,0.0,0.0,30.78,4.91,11.91,49.24,3.34,20.93,29.2,1.04,0.0,1.6084,0.3859,0.9646,2.5642,0.2625,1.6949,13.2514,2.8104,3.366,0.0,0.0,21.196,1.912,5.9145,22.84,1.91,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 +house057.xml,82.32,57.403,47.9296,58.2245,0.16061,1.0143,1.0,1.0,1.0143,1.0,42.4424,0.0,0.0,18.8,4.14,9.97,29.96,2.82,11.53,23.76,0.74,0.0,0.8042,0.3853,0.9611,1.2821,0.2625,1.1111,9.7918,4.3049,2.8559,0.0,0.0,15.6095,2.933,3.3018,17.21,2.93,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.85,5208.16,3594.34,57.91,1.0,57.91,82.32,82.32,0.0,53.13,1.0,53.13,82.32,82.32,0.0,76.79,60.304,46.9698,61.167,0.16061,1.0143,1.0,1.0,1.0143,1.0,41.6224,0.0,0.0,21.95,3.94,9.97,34.99,2.74,11.53,23.75,0.69,0.0,0.8043,0.3775,0.961,1.2821,0.2625,1.1111,9.69,4.1321,2.8557,0.0,0.0,15.4462,2.874,3.3018,17.03,2.87,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 +house058.xml,64.63,122.033,79.8492,123.5423,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.7712,0.0,0.0,3.5,82.44,6.68,5.61,47.6,12.5,28.44,0.97,0.0,0.8003,0.4547,0.9222,1.2821,0.2625,1.7241,1.2485,50.6007,5.616,0.0,0.0,2.0,29.2143,10.5,2.02,29.21,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.92,7856.19,9710.37,50.78,1.0,50.78,64.63,64.63,0.0,46.17,1.0,46.17,64.63,64.63,0.0,63.18,123.542,79.0149,125.0699,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.3588,0.0,0.0,4.05,83.49,6.68,6.48,48.39,12.5,28.43,0.89,0.0,0.8004,0.453,0.9222,1.2821,0.2625,1.7241,1.1331,49.9619,5.616,0.0,0.0,1.815,28.9583,10.5,1.83,28.96,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house059.xml,55.26,35.102,20.8276,37.6918,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.6476,0.0,0.0,7.78,2.93,7.97,6.04,1.47,15.04,16.0,0.42,0.0,0.5709,0.5224,0.8987,0.4432,0.2625,1.6949,3.7326,0.8855,2.0045,0.0,0.0,2.898,0.445,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.32,2428.55,2168.1,50.61,1.0,50.61,55.26,55.26,0.0,46.25,1.0,46.25,55.26,55.26,0.0,54.29,35.695,20.8087,38.3286,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.5936,0.0,0.0,8.47,2.85,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5795,0.5203,0.8981,0.4432,0.2625,1.6949,3.7246,0.88,2.0031,0.0,0.0,2.849,0.444,3.7805,2.85,0.44,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 +house060.xml,71.58,113.139,81.8531,114.3532,0.23098,0.9795,1.0319,1.0,1.0107,1.0,60.4044,0.0,0.0,32.1,33.54,11.5,51.34,20.07,19.93,36.01,0.0,0.0,1.6029,0.8775999999999999,0.9947,2.5642,0.525,1.7241,26.67,19.8691,7.9621,0.0,0.0,42.6643,11.8882,13.8006,43.12,11.89,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,89.79,15743.85,17348.05,50.12,1.0,50.12,71.58,71.58,0.0,46.41,1.0,46.41,71.58,71.58,0.0,69.26,115.89,81.1319,117.1337,0.23098,0.9795,1.0319,1.0,1.0107,1.0,60.242,0.0,0.0,34.98,33.42,11.5,55.93,20.490000000000002,19.93,36.01,0.0,0.0,1.6036,0.8563000000000001,0.9946,2.5642,0.525,1.7241,26.5333,19.2853,7.9613,0.0,0.0,42.4248,11.8262,13.8006,42.88,11.83,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house061.xml,69.96,27.219,20.2833,28.9926,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.892,0.0,0.0,4.95,3.02,5.78,7.89,1.75,6.8,13.47,0.0,0.0,0.8039,0.4535,0.9248,1.2821,0.2625,1.087,6.4358,0.7618,3.9607,0.0,0.0,10.2631,0.441,4.655,11.25,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,102.17,3205.25,2945.21,63.31,1.0,63.31,69.96,69.96,0.0,50.97,1.0,50.97,69.96,69.96,0.0,67.33,28.185,20.2141,30.0216,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.8572,0.0,0.0,5.98,2.96,5.78,9.53,1.76,6.8,13.46,0.0,0.0,0.8041,0.4432,0.9243,1.2821,0.2625,1.087,6.4007,0.731,3.9583,0.0,0.0,10.2047,0.433,4.655,11.19,0.43,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 +house062.xml,76.1,38.169,30.9221,40.6311,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,26.463,0.0,0.0,9.63,8.95,5.18,7.42,5.09,6.18,14.41,0.0,0.0,0.5754,0.4612,0.911,0.4432,0.2625,1.087,11.0946,6.2222,3.9843,0.0,0.0,8.5461,3.542,4.754,8.55,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,76.7,4698.5,5754.36,49.37,1.0,49.37,76.1,76.1,0.0,45.88,1.0,45.88,76.1,76.1,0.0,75.49,38.332,30.8025,40.8046,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,26.389,0.0,0.0,9.81,8.93,5.18,7.55,5.11,6.18,14.41,0.0,0.0,0.5764,0.4587,0.911,0.4432,0.2625,1.087,11.0422,6.155,3.9843,0.0,0.0,8.4921,3.523,4.754,8.49,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house063.xml,78.21,89.576,70.446,90.0776,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,52.3322,0.0,0.0,16.56,40.16,6.02,26.53,23.55,12.48,26.01,0.83,0.0,0.8005,0.4476,0.8309,1.2821,0.2625,1.7241,14.0549,27.0927,4.2484,0.0,0.0,22.5098,15.8911,8.8161,22.75,15.89,9.48,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.36,10936.57,10322.7,49.31,1.0,49.31,78.21,78.21,0.0,46.44,1.0,46.44,78.21,78.21,0.0,75.62,90.788,69.04,91.2964,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,51.6182,0.0,0.0,17.66,40.32,6.02,28.28,24.02,12.48,26.01,0.79,0.0,0.8005,0.4407,0.8309,1.2821,0.2625,1.7241,13.636,26.3466,4.2484,0.0,0.0,21.8378,15.6951,8.8161,22.07,15.7,9.48,20.83,3.98,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house064.xml,71.0,74.721,55.1825,77.718,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,40.452,0.0,0.0,14.51,32.27,6.02,23.23,18.98,12.18,21.4,0.53,0.0,0.8005,0.4463,0.8368,1.2821,0.2625,1.6949,11.1149,20.9511,3.9385,0.0,0.0,17.8002,12.3251,7.9772,17.99,12.33,8.41,16.8,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,97.04,8655.28,8575.62,53.92,1.0,53.92,71.0,71.0,0.0,50.7,1.0,50.7,71.0,71.0,0.0,68.17,75.723,53.6893,78.7602,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,39.5872,0.0,0.0,15.45,32.39,6.02,24.74,19.36,12.18,21.4,0.47,0.0,0.8006,0.4392,0.8368,1.2821,0.2625,1.6949,10.6417,20.292,3.9385,0.0,0.0,17.0422,12.1301,7.9772,17.22,12.13,8.41,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house065.xml,76.48,97.776,77.4164,101.2294,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,58.0834,0.0,0.0,16.6,41.88,8.98,26.59,25.11,16.32,29.28,1.05,0.0,0.8003,0.4378,0.9482,1.2821,0.2625,1.7241,15.0661,26.9895,6.2818,0.0,0.0,24.1347,16.1831,11.4228,24.39,16.18,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.16,12217.0,11439.17,47.97,1.0,47.97,76.48,76.48,0.0,45.18,1.0,45.18,76.48,76.48,0.0,74.25,99.082,76.1676,102.5815,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,57.4636,0.0,0.0,17.77,42.06,8.98,28.46,25.58,16.32,29.27,1.01,0.0,0.8003,0.4316,0.9481,1.2821,0.2625,1.7241,14.6809,26.3173,6.2814,0.0,0.0,23.5172,16.0071,11.4228,23.76,16.01,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house066.xml,74.11,73.085,56.7838,76.6221,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.395,0.0,0.0,12.04,30.82,7.52,8.89,17.9,8.75,21.92,0.79,0.0,0.6005,0.452,0.9549,0.4432,0.2625,1.1111,8.3194,21.4489,5.6426,0.0,0.0,6.1411,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.25,8758.92,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.836,56.1727,77.4094,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.106,0.0,0.0,12.71,30.92,7.52,9.36,18.15,8.75,21.91,0.78,0.0,0.602,0.4471,0.9549,0.4432,0.2625,1.1111,8.1939,21.0402,5.6426,0.0,0.0,6.0331,12.3541,6.5657,6.03,12.35,6.42,17.79,3.5,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house067.xml,60.43,86.338,54.0732,89.4753,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.4864,0.0,0.0,15.35,36.88,7.52,24.59,21.97,14.12,25.79,0.8,0.0,0.8004,0.4406,0.9026,1.2821,0.2625,1.6949,9.8977,21.0041,2.9774,0.0,0.0,15.8546,12.5151,5.5908,16.02,12.51,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.83,8502.51,10026.11,48.76,1.0,48.76,60.43,60.43,0.0,45.9,1.0,45.9,60.43,60.43,0.0,58.44,87.707,53.1193,90.894,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.1018,0.0,0.0,16.59,37.06,7.52,26.57,22.48,14.12,25.79,0.75,0.0,0.8004,0.4329,0.9026,1.2821,0.2625,1.6949,9.5958,20.389,2.9774,0.0,0.0,15.3707,12.3661,5.5908,15.53,12.37,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house068.xml,74.6,117.671,85.6903,114.8645,0.2515,0.9761,1.0,1.0,0.9761,1.0,65.0198,0.0,0.0,24.84,51.480000000000004,7.52,39.8,30.69,14.44,32.85,0.98,0.0,1.6014,0.873,0.8975,2.5642,0.525,1.7241,17.9578,29.072400000000002,5.285,0.0,0.0,28.761200000000002,17.3291,10.1524,29.07,17.33,10.92,26.89,6.49,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.34,13540.45,13553.77,50.42,1.0,50.42,74.6,74.6,0.0,47.23,1.0,47.23,74.6,74.6,0.0,69.15,121.774,82.1958,118.8697,0.2515,0.9761,1.0,1.0,0.9761,1.0,63.1016,0.0,0.0,28.47,52.08,7.52,45.6,32.18,14.44,32.84,0.86,0.0,1.6014,0.8424,0.8975,2.5642,0.525,1.7241,17.0937,27.3771,5.285,0.0,0.0,27.377699999999997,16.9131,10.1524,27.67,16.91,10.92,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 +house069.xml,73.15,109.743,79.4819,108.6557,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.3358,0.0,0.0,26.08,46.5,7.52,41.79,27.42,14.18,29.32,0.33,0.0,0.8002,0.4452,0.8987,1.2821,0.2625,1.6949,19.325,28.1385,5.2964,0.0,0.0,30.9601,16.5921,9.9891,31.29,16.59,10.53,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.81,12697.63,12474.48,56.16,1.0,56.16,73.15,73.15,0.0,52.94,1.0,52.94,73.15,73.15,0.0,69.43,113.77,78.2064,112.6428,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.2014,0.0,0.0,29.71,47.08,7.52,47.6,28.85,14.18,29.31,0.15,0.0,0.8004,0.4284,0.8986,1.2821,0.2625,1.6949,19.196,26.9803,5.2961,0.0,0.0,30.7493,16.5331,9.9891,31.07,16.53,10.53,22.98,3.76,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house070.xml,47.28,181.182,81.4356,172.245,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.507,0.0,0.0,88.71,25.0,11.77,65.77,13.99,13.08,53.58,2.13,0.0,0.5978,0.4692,0.9994,0.4432,0.2625,1.1111,31.5376,5.662,8.244,0.0,0.0,23.3822,3.168,9.1652,23.38,3.17,8.97,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8020.17,17263.0,52.1,1.0,52.1,47.28,47.28,1.0,46.1,1.0,46.1,47.28,47.28,0.0,43.16,195.781,80.3251,186.1239,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.008,0.0,0.0,103.84,24.6,11.77,77.31,14.54,13.09,53.57,2.01,0.0,0.5953,0.4441,0.9992,0.4432,0.2625,1.1111,30.8395,5.2813,8.2394,0.0,0.0,22.9612,3.122,9.1622,22.96,3.12,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house071.xml,75.65,58.701,46.6908,61.7229,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.3238,0.0,0.0,20.51,8.57,9.85,16.3,4.86,11.46,19.19,0.58,0.0,1.4445999999999999,0.4631,0.9555,1.7253,0.2625,1.1111,22.8696,3.7803,7.0929,0.0,0.0,18.207199999999997,2.143,8.2483,18.259999999999998,2.14,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.97,4783.29,5910.04,51.52,1.0,51.52,75.65,75.65,0.0,53.48,1.0,53.48,75.65,75.65,0.0,72.07,61.226,46.3978,64.3779,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.221,0.0,0.0,23.21,8.45,9.85,18.48,4.94,11.46,19.19,0.53,0.0,1.4311,0.4489,0.9555,1.7253,0.2625,1.1111,22.7347,3.6232,7.0929,0.0,0.0,18.1254,2.119,8.2483,18.189999999999998,2.12,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 +house072.xml,61.28,132.367,79.7462,130.1284,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.5272,0.0,0.0,88.42,1.24,10.45,138.8,1.74,18.75,31.12,1.14,0.0,1.3276,0.1862,0.9613,1.7253,0.2625,1.7241,52.3644,0.6703,5.2854,0.0,0.0,80.34479999999999,0.945,9.4796,88.25,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.1,16207.71,10561.56,55.88,1.0,55.88,61.28,61.28,0.0,49.0,1.0,49.0,61.28,61.28,0.0,55.26,146.252,79.4581,143.7786,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.228,0.0,0.0,102.53,1.04,10.45,160.82,1.66,18.77,31.11,1.11,0.0,1.3486,0.165,0.96,1.7253,0.2625,1.7241,52.1737,0.594,5.2784,0.0,0.0,79.75760000000001,0.945,9.4796,87.61,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 +house073.xml,32.76,221.323,114.4599,210.9093,0.16694,0.9421,1.0115,1.0,0.9529,0.6036,90.9024,36.031,0.0,118.91,26.9,11.77,97.71000000000001,15.030000000000001,26.81,61.14,2.62,0.0,1.9849,0.9402,0.9976,2.1364,0.525,2.2727,28.4137,23.8029,14.8433,0.0,0.0,25.0244,13.2961,33.8161,25.830000000000002,13.3,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.84,13742.5,20949.04,50.6,1.0,50.6,54.27,54.27,0.0,47.79,1.0,47.79,54.27,54.27,0.0,46.39,237.62,112.4085,226.4395,0.16694,0.9421,1.0115,1.0,0.9529,0.9345,90.5656,5.9311,0.0,135.55,26.55,11.77,112.08,15.71,26.84,61.13,2.62,0.0,1.9765,0.8875,0.9965,2.1364,0.525,2.2727,28.0073,22.1734,14.8277,0.0,0.0,24.833,13.1221,33.8172,25.64,13.129999999999999,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house074.xml,72.28,78.192,59.508,82.3281,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.411,0.0,0.0,14.56,33.17,7.52,10.62,19.3,8.67,22.21,0.73,0.0,0.6076,0.4512,0.9528,0.4432,0.2625,1.0989,8.9463,22.6822,5.7265,0.0,0.0,6.5261,13.1991,6.6048,6.53,13.2,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.0,7256.84,9314.44,43.82,1.0,43.82,72.28,72.28,0.0,42.15,1.0,42.15,72.28,72.28,0.0,70.42,79.438,58.901,83.6401,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.232,0.0,0.0,15.69,33.31,7.52,11.35,19.75,8.67,22.21,0.71,0.0,0.6127,0.4428,0.9528,0.4432,0.2625,1.0989,8.9279,22.1186,5.7265,0.0,0.0,6.4591,13.1131,6.6048,6.46,13.11,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house075.xml,67.25,82.168,57.3082,85.2209,0.21669,1.0219,1.015,1.0,1.0372,1.0,45.5176,0.0,0.0,32.56,15.52,11.38,52.01,9.82,19.4,22.71,0.0,0.0,0.8025,0.4151,0.9943,1.2821,0.2625,1.6949,20.738,8.322,10.2992,0.0,0.0,33.1288,5.264,17.5566,35.91,5.26,18.51,17.68,0.27,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,89.9,12093.76,12969.9,46.66,1.0,46.66,67.25,67.25,0.0,43.87,1.0,43.87,67.25,67.25,0.0,62.14,86.094,55.4835,89.2928,0.21669,1.0219,1.015,1.0,1.0372,1.0,44.2824,0.0,0.0,36.48,15.54,11.38,58.27,10.06,19.41,22.7,0.0,0.0,0.8026,0.4055,0.9938,1.2821,0.2625,1.6949,19.5513,7.9583,10.2928,0.0,0.0,31.2323,5.152,17.5537,33.86,5.15,18.51,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house076.xml,66.44,31.439,22.0875,33.2458,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.2756,0.0,0.0,6.98,4.84,5.78,11.13,3.44,12.13,13.69,0.15,0.0,0.804,0.3687,0.8083,1.2821,0.2625,1.6949,5.6429,2.948,2.7976,0.0,0.0,8.9978,2.099,5.8665,9.92,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,112.32,3996.89,3365.18,52.65,1.0,52.65,66.44,66.44,0.0,46.98,1.0,46.98,66.44,66.44,0.0,64.65,32.152,21.9815,33.9998,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.2376,0.0,0.0,7.84,4.76,5.78,12.5,3.45,12.14,13.68,0.08,0.0,0.8041,0.3626,0.8075,1.2821,0.2625,1.6949,5.6126,2.8755,2.7954,0.0,0.0,8.9489,2.082,5.8673,9.87,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house077.xml,77.4,39.285,32.534,42.0337,0.20653,1.0669,0.9857,1.0173,1.07,1.0,31.0452,0.0,0.0,9.12,5.06,8.65,14.57,3.61,9.53,15.25,1.21,0.0,0.8023,0.3678,0.9764,1.2821,0.2625,1.0753,5.5273,2.6364,6.5863,0.0,0.0,8.8323,1.882,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.35,7529.46,8545.82,56.2,1.0,56.2,77.4,77.4,0.0,46.39,1.0,46.39,77.4,77.4,0.0,74.38,40.712,32.3992,43.5605,0.20653,1.0669,0.9857,1.0173,1.07,1.0,30.9986,0.0,0.0,10.72,4.88,8.65,17.12,3.58,9.53,15.24,1.22,0.0,0.8026,0.3582,0.976,1.2821,0.2625,1.0753,5.4805,2.5512,6.5835,0.0,0.0,8.7543,1.87,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house078.xml,57.39,134.714,76.3158,132.9883,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.3156,0.0,0.0,30.34,57.14,8.98,48.6,32.61,16.25,36.97,1.29,0.0,0.8004,0.46,0.9359,1.2821,0.2625,1.6949,13.9445,30.3311,3.7552,0.0,0.0,22.335,17.3112,6.8003,24.49,17.31,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.58,12012.38,15289.7,53.9,1.0,53.9,57.39,57.39,0.0,50.74,1.0,50.74,57.39,57.39,0.0,54.63,139.299,75.1196,137.5146,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.1754,0.0,0.0,34.4,57.73,8.98,55.1,34.05,16.25,36.97,1.23,0.0,0.8004,0.4452,0.9359,1.2821,0.2625,1.6949,13.8542,29.2242,3.7552,0.0,0.0,22.1899,17.2352,6.8003,24.33,17.24,9.47,27.69,0.6,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 house079.xml,54.41,93.273,49.2866,90.5821,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.455,0.0,0.0,46.269999999999996,2.9299999999999997,10.35,32.46,1.45,12.36,33.73,0.0,0.0,1.26,1.0615,0.9516,0.8864,0.525,1.1364,23.8625,0.1921,2.827,0.0,0.0,16.7241,0.095,3.3758,16.73,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,53.67,2989.74,5736.19,55.89,1.0,55.89,54.41,54.41,1.0,50.5,1.0,50.5,54.41,54.41,0.0,50.09,101.5,49.3755,98.5717,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.346,0.0,0.0,54.88,2.55,10.35,38.1,1.28,12.36,33.72,0.0,0.0,1.2735,1.0436999999999999,0.9516,0.8864,0.525,1.1364,23.9558,0.1888,2.8268,0.0,0.0,16.6171,0.095,3.3758,16.62,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house080.xml,41.23,144.393,57.9292,140.4867,0.27987,0.9545,1.0193,1.0,0.9729,1.0,46.61,0.0,0.0,32.15,63.269999999999996,8.98,23.380000000000003,37.04,10.83,37.29,2.7,0.0,1.2188,0.8966000000000001,0.9641,0.8864,0.525,1.1628,9.693100000000001,21.4172,1.6258,0.0,0.0,7.048,12.5381,1.9609,7.050000000000001,12.54,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.1,7093.23,16914.92,46.44,1.0,46.44,41.23,41.23,1.0,44.68,1.0,44.68,41.23,41.23,1.0,38.96,150.35,56.9946,146.2826,0.27987,0.9545,1.0193,1.0,0.9729,1.0,46.488,0.0,0.0,37.22,64.17,8.98,26.76,39.14,10.83,37.29,2.7,0.0,1.2328000000000001,0.8605,0.9636,0.8864,0.525,1.1628,9.725999999999999,20.4506,1.625,0.0,0.0,6.993,12.4731,1.9609,6.99,12.48,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house081.xml,65.16,25.582,18.9708,29.1148,0.1687,1.149,0.9767,1.0141,1.1381,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5026,0.4514,0.9399,0.4432,0.2625,1.0638,3.3198,1.8586,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.12,3195.08,4182.44,41.98,1.0,41.98,65.16,65.16,0.0,40.6,1.0,40.6,65.16,65.16,0.0,64.78,25.709,18.9543,29.2593,0.1687,1.149,0.9767,1.0141,1.1381,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house082.xml,63.08,159.433,99.0699,157.0486,0.2639,0.9504,1.0364,1.0,0.985,1.0,75.2468,0.0,0.0,35.54,68.64,10.4,56.94,39.769999999999996,18.4,44.06,0.79,0.0,1.6006,0.9061,0.9582,2.5642,0.525,1.6949,23.9813,36.8425,2.5581,0.0,0.0,38.4172,21.3482,4.5249,41.42,21.35,9.11,30.29,5.4,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.5,16152.32,18119.27,54.94,1.0,54.94,63.08,63.08,0.0,51.62,1.0,51.62,63.08,63.08,0.0,57.41,165.482,93.5744,163.0071,0.2639,0.9504,1.0364,1.0,0.985,1.0,71.7858,0.0,0.0,41.14,69.4,10.4,65.92,41.68,18.4,44.05,0.48,0.0,1.6006,0.8744000000000001,0.9582,2.5642,0.525,1.6949,23.2091,34.2902,2.5581,0.0,0.0,37.1797,20.5912,4.5249,40.08,20.59,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 -house083.xml,54.39,32.893,20.1359,37.0243,0.32011,1.1467,0.9558,1.027,1.1256,1.0,17.878,0.0,0.0,3.14,12.23,4.42,2.61,7.07,5.4,12.77,0.34,0.0,0.5335,0.4538,0.8905,0.4432,0.2625,1.087,1.6454,6.3569,3.1696,0.0,0.0,1.367,3.678,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.51,2655.27,4174.48,50.52,1.0,50.52,54.39,54.39,0.0,45.54,1.0,45.54,54.39,54.39,0.0,53.65,33.166,20.0273,37.3316,0.32011,1.1467,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4487,0.8903,0.4432,0.2625,1.087,1.6524,6.2428,3.1682,0.0,0.0,1.352,3.653,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house084.xml,12.32,139.749,88.6674,137.0851,0.16435,0.9676,1.0,1.0138,0.9809,0.1904,73.0472,59.137,0.0,71.39,16.04,10.48,116.88,10.6,18.32,39.52,2.32,0.0,0.7634,1.1802,1.9402,1.25,0.7875000000000001,3.3898,43.0073,8.432300000000001,6.6598,0.0,0.0,70.4175,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12882.13,10080.0,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.5,148.018,88.4444,145.1964,0.16435,0.9676,1.0,1.0138,0.9809,0.9111,72.824,6.4774,0.0,79.71,15.98,10.48,130.15,10.61,18.34,39.52,2.32,0.0,0.7655,1.1763,1.9394,1.25,0.7875000000000001,3.3898,42.9247,8.2938,6.66,0.0,0.0,70.0894,5.51,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 -house085.xml,-25.28,118.944,70.1908,118.2472,0.22585,0.9641,1.0312,1.0,0.9941,-0.4258,59.457,84.775,0.0,52.64,14.0,14.53,39.81,7.08,16.3,37.79,0.0,0.0,1.1657,1.0366,1.0245,0.8864,0.525,1.1494,41.342,1.6151,2.6597,0.0,0.0,31.244300000000003,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.44,8607.55,52.59,1.0,52.59,59.36,59.36,0.0,47.34,1.0,47.34,59.36,59.36,0.0,51.59,130.71,70.5689,129.9443,0.22585,0.9641,1.0312,1.0,0.9941,0.95,59.273,2.9637,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.032,1.0241,0.8864,0.525,1.1494,41.7763,1.5608,2.6599,0.0,0.0,31.0833,0.794,2.9852,31.09,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 -house086.xml,52.9,74.203,40.919,77.3481,0.30315,1.0164,1.0,1.0255,1.0424,1.0,33.686,0.0,0.0,21.78,19.28,8.82,16.29,10.93,10.26,23.15,0.93,0.24,0.5929,0.4631,0.9554,0.4432,0.2625,1.1111,14.4403,8.7554,1.4643,0.0,0.0,10.7951,4.964,1.703,10.8,4.96,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0,53.57,6093.81,10912.92,50.01,1.0,50.01,52.9,52.9,0.0,48.61,1.0,48.61,52.9,52.9,0.0,52.32,74.635,40.7043,77.7984,0.30315,1.0164,1.0,1.0255,1.0424,1.0,33.569,0.0,0.0,22.23,19.27,8.82,16.61,10.99,10.26,23.15,0.93,0.24,0.593,0.4604,0.9554,0.4432,0.2625,1.1111,14.3231,8.6559,1.4643,0.0,0.0,10.7051,4.936,1.703,10.71,4.94,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0 +house080.xml,41.23,144.396,57.9292,140.4904,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.608,0.0,0.0,32.16,63.269999999999996,8.98,23.380000000000003,37.04,10.83,37.29,2.7,0.0,1.2188,0.8966000000000001,0.9641,0.8864,0.525,1.1628,9.693200000000001,21.4172,1.6258,0.0,0.0,7.048,12.5381,1.9609,7.050000000000001,12.54,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.1,7092.97,16915.32,46.44,1.0,46.44,41.23,41.23,1.0,44.68,1.0,44.68,41.23,41.23,1.0,38.96,150.354,56.9893,146.2872,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.487,0.0,0.0,37.22,64.17,8.98,26.76,39.14,10.83,37.29,2.7,0.0,1.2328000000000001,0.8605,0.9636,0.8864,0.525,1.1628,9.7249,20.446399999999997,1.625,0.0,0.0,6.992,12.4711,1.9609,6.99,12.48,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house081.xml,65.14,25.582,18.9743,29.1266,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5032,0.4512,0.9399,0.4432,0.2625,1.0638,3.3241,1.8578,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.11,3195.09,4181.53,41.98,1.0,41.98,65.14,65.14,0.0,40.6,1.0,40.6,65.14,65.14,0.0,64.75,25.709,18.9543,29.2711,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house082.xml,63.08,159.436,99.0698,157.0517,0.26388,0.9504,1.0364,1.0,0.985,1.0,75.2486,0.0,0.0,35.54,68.64,10.4,56.95,39.769999999999996,18.4,44.06,0.79,0.0,1.6006,0.9061,0.9582,2.5642,0.525,1.6949,23.9825,36.8411,2.5581,0.0,0.0,38.419,21.3482,4.5249,41.42,21.35,9.11,30.29,5.4,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.5,16152.69,18119.64,54.94,1.0,54.94,63.08,63.08,0.0,51.62,1.0,51.62,63.08,63.08,0.0,57.41,165.484,93.581,163.0093,0.26388,0.9504,1.0364,1.0,0.985,1.0,71.7876,0.0,0.0,41.14,69.4,10.4,65.92,41.68,18.4,44.05,0.48,0.0,1.6006,0.8744000000000001,0.9582,2.5642,0.525,1.6949,23.2107,34.295100000000005,2.5581,0.0,0.0,37.1816,20.5942,4.5249,40.08,20.59,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house083.xml,54.4,32.893,20.1394,37.0233,0.32003,1.1466,0.9558,1.027,1.1256,1.0,17.88,0.0,0.0,3.14,12.23,4.42,2.61,7.07,5.4,12.77,0.34,0.0,0.5335,0.4538,0.8905,0.4432,0.2625,1.087,1.6454,6.3603,3.1696,0.0,0.0,1.367,3.68,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.52,2655.56,4174.53,50.52,1.0,50.52,54.4,54.4,0.0,45.55,1.0,45.55,54.4,54.4,0.0,53.65,33.166,20.0273,37.3306,0.32003,1.1466,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4487,0.8903,0.4432,0.2625,1.087,1.6524,6.2428,3.1682,0.0,0.0,1.352,3.653,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house084.xml,12.32,139.757,88.6653,137.0922,0.1644,0.9676,1.0,1.0138,0.9809,0.1904,73.0472,59.137,0.0,71.39,16.04,10.48,116.88,10.61,18.32,39.52,2.32,0.0,0.7634,1.1799,1.9402,1.25,0.7875000000000001,3.3898,43.0073,8.4301,6.6598,0.0,0.0,70.4175,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12882.13,10080.55,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.49,148.025,88.441,145.2026,0.1644,0.9676,1.0,1.0138,0.9809,0.9111,72.824,6.4774,0.0,79.71,16.0,10.48,130.15,10.61,18.34,39.52,2.32,0.0,0.7655,1.1758,1.9394,1.25,0.7875000000000001,3.3898,42.9247,8.2903,6.66,0.0,0.0,70.0894,5.51,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 +house085.xml,-25.28,118.944,70.1908,118.2472,0.22585,0.9641,1.0312,1.0,0.9941,-0.4258,59.457,84.775,0.0,52.64,14.0,14.53,39.81,7.08,16.3,37.79,0.0,0.0,1.1657,1.0366,1.0245,0.8864,0.525,1.1494,41.342,1.6151,2.6597,0.0,0.0,31.244300000000003,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.44,8607.55,52.6,1.0,52.6,59.36,59.36,0.0,47.34,1.0,47.34,59.36,59.36,0.0,51.59,130.71,70.5689,129.9443,0.22585,0.9641,1.0312,1.0,0.9941,0.95,59.273,2.9637,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.032,1.0241,0.8864,0.525,1.1494,41.7763,1.5608,2.6599,0.0,0.0,31.0833,0.794,2.9852,31.09,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 +house086.xml,52.87,74.188,40.8847,77.3332,0.30322,1.0164,1.0,1.0255,1.0424,1.0,33.686,0.0,0.0,21.79,19.27,8.82,16.32,10.93,10.26,23.15,0.93,0.24,0.5917,0.4628,0.9554,0.4432,0.2625,1.1111,14.4109,8.7505,1.4643,0.0,0.0,10.7951,4.964,1.703,10.8,4.96,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0,53.54,6093.82,10918.66,49.99,1.0,49.99,52.87,52.87,0.0,48.6,1.0,48.6,52.87,52.87,0.0,52.29,74.63,40.678,77.794,0.30322,1.0164,1.0,1.0255,1.0424,1.0,33.573,0.0,0.0,22.24,19.26,8.82,16.65,10.99,10.26,23.15,0.93,0.24,0.592,0.4602,0.9554,0.4432,0.2625,1.1111,14.2993,8.6534,1.4643,0.0,0.0,10.7071,4.937,1.703,10.71,4.94,1.67,15.19,0.87,0.2,0.3555,0.1707,0.2857,2.2561,0.0,3.809,0.0,0.92,0.0 house087.xml,48.82,29.58,15.6556,32.0688,0.21132,1.0972,0.9708,1.0177,1.0841,1.0,15.5404,0.0,0.0,6.57,4.35,5.78,5.47,2.47,12.14,12.56,0.32,0.0,0.5323,0.4631,0.8078,0.4432,0.2625,3.3898,3.7686,2.7167,1.0493,0.0,0.0,3.138,1.54,2.2016,3.14,1.54,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026,77.94,2633.55,3116.88,47.4,1.0,47.4,48.82,48.82,0.0,42.94,1.0,42.94,48.82,48.82,0.0,47.41,30.323,15.5849,32.8743,0.21132,1.0972,0.9708,1.0177,1.0841,1.0,15.4904,0.0,0.0,7.37,4.3,5.78,6.05,2.49,12.15,12.55,0.31,0.0,0.5399,0.4535,0.8071,0.4432,0.2625,3.3898,3.7824,2.6342,1.0483,0.0,0.0,3.105,1.525,2.2016,3.11,1.53,6.83,7.96,0.16,0.0,0.3593,0.3075,3.0134,2.2561,0.0,3.809,0.0,2.3754,2.026 -house088.xml,55.92,125.433,69.613,124.4943,0.27198,0.9742,1.0188,1.0,0.9925,1.0,54.5298,0.0,0.0,55.73,23.26,11.38,88.93,14.17,19.75,33.88,1.18,0.0,0.8034,0.431,0.9936,1.2821,0.2625,1.7241,28.7688,10.0011,8.4341,0.0,0.0,45.9112,6.0921,14.6358,49.77,6.09,15.74,21.85,0.56,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,99.45,13216.35,13388.99,51.4,1.0,51.4,55.92,55.92,0.0,48.26,1.0,48.26,55.92,55.92,0.0,51.64,133.591,68.4674,132.5913,0.27198,0.9742,1.0188,1.0,0.9925,1.0,53.938,0.0,0.0,63.89,23.34,11.38,101.96,14.71,19.77,33.87,1.11,0.0,0.8033,0.4166,0.993,1.2821,0.2625,1.7241,28.1914,9.4729,8.429,0.0,0.0,44.9906,5.9701,14.6358,48.77,5.97,15.74,21.85,0.52,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house088.xml,55.92,125.437,69.6143,124.4983,0.27198,0.9742,1.0188,1.0,0.9925,1.0,54.5302,0.0,0.0,55.73,23.27,11.38,88.94,14.17,19.75,33.88,1.18,0.0,0.8034,0.431,0.9936,1.2821,0.2625,1.7241,28.7696,10.0015,8.4341,0.0,0.0,45.9121,6.0921,14.6358,49.77,6.09,15.74,21.85,0.56,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,99.45,13216.5,13389.28,51.4,1.0,51.4,55.92,55.92,0.0,48.26,1.0,48.26,55.92,55.92,0.0,51.64,133.593,68.4684,132.5932,0.27198,0.9742,1.0188,1.0,0.9925,1.0,53.9394,0.0,0.0,63.89,23.34,11.38,101.96,14.71,19.77,33.87,1.11,0.0,0.8033,0.4166,0.993,1.2821,0.2625,1.7241,28.1918,9.4736,8.429,0.0,0.0,44.9915,5.9701,14.6358,48.77,5.97,15.74,21.85,0.52,0.0,1.0753,0.2438,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 diff --git a/workflow/tests/base_results/sample_files1.csv b/workflow/tests/base_results/sample_files1.csv index 6a24e4889..11c9e4485 100644 --- a/workflow/tests/base_results/sample_files1.csv +++ b/workflow/tests/base_results/sample_files1.csv @@ -1,97 +1,97 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-appliances-dehumidifier-ief-portable.xml,68.59,63.451,46.7136,68.1039,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.424,0.0,0.0,9.88,26.59,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8067,0.4449,0.9614,1.2821,0.2625,1.087,3.0456,22.2576,5.9383,0.0,0.0,4.8403,13.1351,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.25,5975.91,7601.23,48.29,1.0,48.29,68.59,68.59,0.0,46.5,1.0,46.5,68.59,68.59,0.0,65.69,64.025,45.1417,68.72,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4486,0.0,0.0,10.36,26.66,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.8038,0.4404,0.9613,1.2821,0.2625,1.087,2.5607,21.4953,5.9368,0.0,0.0,4.0843,12.8141,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,68.6,63.418,46.6927,68.0684,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4272,0.0,0.0,9.86,26.57,7.52,15.7,15.69,8.5,19.22,0.0,0.25,0.8051,0.4445,0.9614,1.2821,0.2625,1.087,3.0383,22.2401,5.9383,0.0,0.0,4.8384,13.1361,6.714,5.22,13.14,6.71,15.09,0.32,0.07,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.96,7602.33,48.36,1.0,48.36,68.6,68.6,0.0,46.67,1.0,46.67,68.6,68.6,0.0,65.69,64.004,45.1241,68.6974,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4468,0.0,0.0,10.35,26.65,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.803,0.4402,0.9613,1.2821,0.2625,1.087,2.5569,21.4815,5.9368,0.0,0.0,4.0824,12.8131,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier-multiple.xml,68.57,63.519,46.7475,68.1769,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4158,0.0,0.0,9.94,26.63,7.52,15.74,15.69,8.5,19.22,0.0,0.21,0.8098,0.4455,0.9613,1.2821,0.2625,1.087,3.0585,22.2864,5.9376,0.0,0.0,4.8422,13.1331,6.714,5.22,13.13,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.32,7600.89,48.16,1.0,48.16,68.57,68.57,0.0,46.19,1.0,46.19,68.57,68.57,0.0,65.65,64.13,45.1909,68.8327,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4428,0.0,0.0,10.44,26.71,7.52,16.56,15.89,8.5,19.22,0.0,0.24,0.808,0.4413,0.9612,1.2821,0.2625,1.087,2.5757,21.5351,5.9361,0.0,0.0,4.0871,12.8111,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-dehumidifier.xml,68.58,63.451,46.708,68.1039,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.4186,0.0,0.0,9.88,26.59,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8067,0.4449,0.9614,1.2821,0.2625,1.087,3.0451,22.2576,5.9383,0.0,0.0,4.8394,13.1351,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5975.14,7601.23,48.29,1.0,48.29,68.58,68.58,0.0,46.5,1.0,46.5,68.58,68.58,0.0,65.67,64.025,45.1301,68.72,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.4392,0.0,0.0,10.36,26.66,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.8038,0.4404,0.9613,1.2821,0.2625,1.087,2.5601,21.4902,5.9368,0.0,0.0,4.0834,12.8111,6.713,4.4,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-gas.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4416,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.1,9051.85,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-modified.xml,78.91,76.706,61.1703,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.2564,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.0844,7.9497,8.6872,0.0,0.0,36.7762,4.915,9.542,39.65,4.92,9.54,21.44,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.7,8694.89,5561.74,56.97,1.0,56.97,78.91,78.91,0.0,51.27,1.0,51.27,78.91,78.91,0.0,74.9,80.735,61.1081,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.2304,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0597,7.9197,8.6857,0.0,0.0,36.7289,4.915,9.542,39.6,4.92,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-none.xml,79.94,76.706,61.9635,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.051,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.0151,7.9853,8.6071,0.0,0.0,36.6659,4.937,9.454,39.53,4.94,9.45,22.35,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.54,8742.15,5561.74,56.72,1.0,56.72,79.94,79.94,0.0,51.05,1.0,51.05,79.94,79.94,0.0,75.87,80.735,61.9028,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.025,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.9904,7.9568,8.6056,0.0,0.0,36.6185,4.938,9.454,39.48,4.94,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-oil.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.31,9288.39,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-propane.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.74,9200.3,5561.74,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-wood.xml,78.63,78.468,62.3359,79.2741,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4412,0.0,0.0,30.12,8.66,10.49,47.98,5.33,11.52,29.2,0.0,0.0,0.8047,0.4268,0.9897,1.2821,0.2625,1.087,22.7677,8.1646,8.2127,0.0,0.0,36.2735,5.022,9.02,39.1,5.02,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.54,1.0,57.54,78.63,78.63,0.0,52.0,1.0,52.0,78.63,78.63,0.0,74.73,82.484,62.2768,83.3313,0.21574,0.9923,1.0,1.0181,1.0103,1.0,50.4146,0.0,0.0,34.2,8.6,10.49,54.48,5.31,11.52,29.2,0.0,0.0,0.8049,0.4252,0.9895,1.2821,0.2625,1.087,22.7445,8.1361,8.2112,0.0,0.0,36.228,5.023,9.02,39.06,5.02,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-cathedral.xml,71.75,79.679,57.7115,80.4331,0.19884,0.9929,1.0,1.0167,1.0095,1.0,49.4442,0.0,0.0,33.37,8.6,10.49,53.14,5.22,11.52,27.23,0.0,0.0,0.805,0.4325,0.9896,1.2821,0.2625,1.087,20.9756,7.4009,8.212,0.0,0.0,33.4053,4.493,9.02,36.01,4.49,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.92,8068.0,5753.36,56.19,1.0,56.19,71.75,71.75,0.0,51.47,1.0,51.47,71.75,71.75,0.0,66.92,85.426,57.7042,86.2344,0.19884,0.9929,1.0,1.0167,1.0095,1.0,49.4208,0.0,0.0,39.18,8.53,10.49,62.4,5.16,11.52,27.22,0.0,0.0,0.805,0.4339,0.9893,1.2821,0.2625,1.087,20.9523,7.4252,8.2098,0.0,0.0,33.3673,4.493,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-conditioned.xml,74.41,92.424,66.9821,90.0199,0.21383,0.974,1.0,1.0,0.974,1.0,57.0404,0.0,0.0,38.4,10.91,10.49,61.16,6.45,11.52,32.63,0.0,0.0,0.805,0.4441,0.9897,1.2821,0.2625,1.087,24.7854,8.8516,8.1271,0.0,0.0,39.4756,5.233,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.73,9397.33,6666.53,57.67,1.0,57.67,74.41,74.41,0.0,51.63,1.0,51.63,74.41,74.41,0.0,68.31,100.669,66.9773,98.0504,0.21383,0.974,1.0,1.0,0.974,1.0,57.0404,0.0,0.0,46.73,10.83,10.49,74.42,6.41,11.52,32.62,0.0,0.0,0.805,0.4439,0.9894,1.2821,0.2625,1.087,24.7865,8.8478,8.125,0.0,0.0,39.4756,5.233,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-flat.xml,71.33,76.727,55.2498,77.4517,0.19845,0.9929,1.0,1.0166,1.0094,1.0,47.761,0.0,0.0,30.34,8.67,10.49,48.32,5.22,11.52,27.23,0.0,0.0,0.805,0.4358,0.9897,1.2821,0.2625,1.087,19.3837,6.5304,8.2127,0.0,0.0,30.8692,3.934,9.02,33.28,3.93,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,135.97,7629.2,5558.26,56.7,1.0,56.7,71.33,71.33,0.0,51.04,1.0,51.04,71.33,71.33,0.0,67.72,80.738,55.1954,81.5006,0.19845,0.9929,1.0,1.0166,1.0094,1.0,47.7376,0.0,0.0,34.43,8.6,10.49,54.83,5.2,11.52,27.22,0.0,0.0,0.805,0.4343,0.9895,1.2821,0.2625,1.087,19.3589,6.5083,8.2112,0.0,0.0,30.8302,3.934,9.02,33.24,3.93,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-radiant-barrier.xml,74.84,63.068,50.0748,66.9075,0.22898,1.0409,1.0,1.0192,1.0609,1.0,39.6386,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8002,0.4431,0.9612,1.2821,0.2625,1.087,4.8323,23.9088,5.9396,0.0,0.0,7.7419,14.1671,6.717,8.35,14.17,6.72,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,82.05,6595.88,7577.46,47.26,1.0,47.26,74.84,74.84,0.0,44.31,1.0,44.31,74.84,74.84,0.0,71.67,63.657,48.4017,67.5324,0.22898,1.0409,1.0,1.0192,1.0609,1.0,38.587,0.0,0.0,10.41,26.51,7.52,16.68,15.85,8.5,19.22,0.0,0.0,0.8003,0.4391,0.961,1.2821,0.2625,1.087,4.2924,23.0903,5.938,0.0,0.0,6.8764,13.8071,6.716,7.41,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-unvented-insulated-roof.xml,73.96,76.706,57.2366,77.3894,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.272,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,21.1344,6.7674,8.2129,0.0,0.0,33.6697,4.184,9.021,36.3,4.18,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.09,8085.35,5561.74,56.72,1.0,56.72,73.96,73.96,0.0,51.05,1.0,51.05,73.96,73.96,0.0,70.21,80.735,57.1854,81.4543,0.18723,0.9933,1.0,1.0157,1.0089,1.0,49.248,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.1145,6.7435,8.2114,0.0,0.0,33.6307,4.185,9.021,36.26,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-vented.xml,76.42,77.041,59.495,77.8555,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.231,0.0,0.0,31.1,8.23,10.49,49.54,5.12,11.82,27.23,0.0,0.0,0.8047,0.4224,0.9644,1.2821,0.2625,1.087,23.1812,7.0424,8.1484,0.0,0.0,36.9312,4.377,9.184,39.81,4.38,9.18,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.88,8615.91,5613.41,57.49,1.0,57.49,76.42,76.42,0.0,51.95,1.0,51.95,76.42,76.42,0.0,72.54,81.089,59.4439,81.9463,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.2086,0.0,0.0,35.21,8.17,10.49,56.08,5.1,11.82,27.22,0.0,0.0,0.8049,0.4209,0.9644,1.2821,0.2625,1.087,23.1608,7.0177,8.1484,0.0,0.0,36.8903,4.377,9.184,39.77,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-battery.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,78.64,40.542,34.5847,43.9798,0.21343,1.0657,1.0,1.0179,1.0848,1.0,31.6532,0.0,0.0,8.48,5.13,10.49,13.56,3.5,11.51,16.45,0.0,0.0,0.8015,0.3843,0.9907,1.2821,0.2625,1.087,9.0135,3.5145,8.7207,0.0,0.0,14.4179,2.401,9.568,15.54,2.4,9.57,12.92,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.26,4325.87,3109.14,67.83,1.0,67.83,78.64,78.64,0.0,58.9,1.0,58.9,78.64,78.64,0.0,71.29,41.506,32.0967,45.0255,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.7806,0.0,0.0,9.49,5.08,10.49,15.18,3.49,11.51,16.44,0.0,0.0,0.8016,0.3829,0.9905,1.2821,0.2625,1.087,6.9736,3.4827,8.7165,0.0,0.0,11.1527,2.388,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-location-portland-or.xml,73.83,33.868,26.81,36.3134,0.18282,1.056,1.0,1.0153,1.0722,1.0,26.081,0.0,0.0,3.99,3.46,9.97,6.39,2.41,10.99,16.45,0.0,0.0,0.8002,0.377,0.9866,1.2821,0.2625,1.087,2.3415,2.8232,8.2704,0.0,0.0,3.7513,1.966,9.112,4.04,1.97,9.11,12.95,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.37,2577.1,2689.55,62.66,1.0,62.66,73.83,73.83,0.0,51.43,1.0,51.43,73.83,73.83,0.0,69.92,34.21,25.6471,36.6801,0.18282,1.056,1.0,1.0153,1.0722,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.36,10.99,16.45,0.0,0.0,0.8002,0.3719,0.9864,1.2821,0.2625,1.087,1.2934,3.1081,8.2616,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,72.97,38.802,30.8174,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,28.968,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.2855,5.4247,8.7152,0.0,0.0,5.3759,3.553,9.552,5.94,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.92,3003.26,3068.63,59.94,1.0,59.94,72.97,72.97,0.0,51.25,1.0,51.25,72.97,72.97,0.0,67.88,39.644,29.2903,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.7334,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.003,5.5864,8.7049,0.0,0.0,3.2722,3.683,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,73.46,38.802,31.0219,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,29.212,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.4901,5.4247,8.7152,0.0,0.0,5.7105,3.553,9.552,6.31,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,91.29,3048.95,3068.63,60.07,1.0,60.07,73.46,73.46,0.0,51.36,1.0,51.36,73.46,73.46,0.0,68.2,39.644,29.4287,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.8952,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.1414,5.5864,8.7049,0.0,0.0,3.4983,3.683,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,73.04,38.802,30.8484,42.2322,0.22213,1.0685,1.0,1.0186,1.0884,1.0,29.1282,0.0,0.0,5.97,5.88,10.49,9.77,3.85,11.5,16.47,0.0,0.0,0.764,0.4008,0.9917,1.25,0.2625,1.087,3.3165,5.4247,8.7152,0.0,0.0,5.4266,3.553,9.552,6.0,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.79,2999.0,3068.63,60.07,1.0,60.07,73.04,73.04,0.0,51.36,1.0,51.36,73.04,73.04,0.0,67.93,39.644,29.3102,43.1486,0.22213,1.0685,1.0,1.0186,1.0884,1.0,27.839,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3982,0.9914,1.25,0.2625,1.087,2.0229,5.5864,8.7049,0.0,0.0,3.3048,3.683,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,71.96,38.799,30.3449,42.1681,0.21835,1.0673,1.0,1.0183,1.0868,1.0,28.7572,0.0,0.0,5.970000000000001,5.88,10.49,9.3,3.85,11.5,16.47,0.0,0.0,1.1056,0.4009,0.9917,1.6932,0.2625,1.087,2.8117,5.4261,8.7152,0.0,0.0,4.5283,3.553,9.552,4.97,3.55,9.55,12.97,0.42,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,85.29,2844.61,3068.63,59.04,1.0,59.04,71.96,73.0,0.0,50.8,1.0,50.8,71.96,73.0,0.0,67.33,39.642,29.0101,43.0843,0.21835,1.0673,1.0,1.0183,1.0868,1.0,27.6032,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3982,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5864,8.7049,0.0,0.0,2.7545,3.683,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.66,38.801,31.431,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.0818,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.176,4.1478,8.7152,0.0,0.0,8.2476,2.716,9.552,8.25,2.72,9.55,12.97,0.42,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.43,3276.98,3068.63,64.39,1.0,64.39,74.66,74.66,0.0,52.75,1.0,52.75,74.66,74.66,0.0,67.64,39.643,29.0945,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.4194,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1253,4.2683,8.7049,0.0,0.0,4.9797,2.814,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,76.4,38.801,32.1614,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.5594,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,4.8778,8.7152,0.0,0.0,8.2466,3.194,9.552,8.25,3.19,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.49,3312.26,3068.63,64.88,1.0,64.88,76.4,76.4,0.0,53.19,1.0,53.19,76.4,76.4,0.0,69.43,39.643,29.8614,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.926,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,5.0358,8.7049,0.0,0.0,4.9787,3.32,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.19,38.801,31.6525,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.2268,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.176,4.3693,8.7152,0.0,0.0,8.2476,2.861,9.552,8.25,2.86,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.74,3287.45,3068.63,64.88,1.0,64.88,75.19,75.19,0.0,53.19,1.0,53.19,75.19,75.19,0.0,68.18,39.643,29.325,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.5714,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1253,4.4989,8.7049,0.0,0.0,4.9797,2.966,9.544,4.98,2.97,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,84.91,38.801,35.7441,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,31.9054,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,8.4606,8.7152,0.0,0.0,8.2466,5.54,9.552,8.25,5.54,9.55,12.97,0.42,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,104.59,3482.0,3068.63,68.15,1.0,68.15,84.91,84.91,0.0,56.14,1.0,56.14,84.91,84.91,0.0,78.1,39.643,33.5927,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,30.385,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,8.7672,8.7049,0.0,0.0,4.9787,5.7801,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,76.02,38.801,32.0026,42.0972,0.21381,1.0658,1.0,1.0179,1.085,1.0,29.4554,0.0,0.0,5.97,5.88,10.49,9.51,3.85,11.5,16.47,0.0,0.0,0.8046,0.4009,0.9917,1.2821,0.2625,1.087,5.1754,4.719,8.7152,0.0,0.0,8.2466,3.09,9.552,8.25,3.09,9.55,12.97,0.42,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.26,3304.78,3068.63,64.52,1.0,64.52,76.02,76.02,0.0,52.86,1.0,52.86,76.02,76.02,0.0,69.05,39.643,29.6975,43.0107,0.21381,1.0658,1.0,1.0179,1.085,1.0,27.817,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3982,0.9914,1.2821,0.2625,1.087,3.1247,4.872,8.7049,0.0,0.0,4.9787,3.212,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-generator.xml,68.23,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.9657,33.7336,1.1572,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.52,4857.8,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,63.18,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,78.44,38.805,33.0021,42.073,0.21203,1.0653,1.0,1.0178,1.0842,1.0,29.967,0.0,0.0,5.97,5.88,10.49,5.25,2.97,11.5,16.47,0.0,0.0,0.504,0.5192,0.9917,0.4432,0.2625,1.087,4.0568,6.8381,8.7152,0.0,0.0,3.568,3.458,9.552,3.57,3.46,9.55,12.97,0.42,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.9,2448.29,2975.15,65.76,1.0,65.76,78.44,78.44,0.0,56.56,1.0,56.56,78.44,78.44,0.0,74.22,39.648,31.9049,42.987,0.21203,1.0653,1.0,1.0178,1.0842,1.0,28.746,0.0,0.0,6.91,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.5179,0.5169,0.9914,0.4432,0.2625,1.087,2.9481,7.2559,8.7049,0.0,0.0,2.523,3.685,9.544,2.52,3.69,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,70.12,38.637,29.3857,41.9089,0.21316,1.0656,1.0,1.0179,1.0847,1.0,24.2808,0.0,0.0,5.61,6.06,10.48,8.98,3.91,18.18,16.47,0.0,0.0,0.8013,0.4073,1.9548,1.2821,0.2625,3.3898,3.1141,4.4883,8.3882,0.0,0.0,4.9822,2.893,14.5468,5.37,2.89,14.54,12.97,0.42,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,131.48,4250.52,2980.5,51.66,1.0,51.66,70.12,70.12,0.0,44.53,1.0,44.53,70.12,70.12,0.0,65.07,39.451,27.8435,42.7918,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.1032,0.0,0.0,6.54,5.96,10.48,10.46,3.87,18.2,16.47,0.0,0.0,0.8016,0.4044,1.953,1.2821,0.2625,3.3898,1.8542,4.6303,8.359,0.0,0.0,2.9656,3.006,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 -base-bldgtype-mf-unit-shared-laundry-room.xml,67.29,38.637,28.2008,41.9089,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.4672,0.0,0.0,5.61,6.06,10.49,8.98,3.91,18.19,16.47,0.0,0.0,0.8013,0.4073,0.9774,1.2821,0.2625,1.6949,3.4069,4.2882,7.1167,0.0,0.0,5.4507,2.764,12.3416,5.88,2.76,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.42,3990.09,2980.45,51.66,1.0,51.66,67.29,67.29,0.0,44.53,1.0,44.53,67.29,67.29,0.0,62.14,39.451,26.5898,42.7918,0.21316,1.0656,1.0,1.0179,1.0847,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.87,18.2,16.47,0.0,0.0,0.8016,0.4044,0.9765,1.2821,0.2625,1.6949,2.085,4.4069,7.1059,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,73.35,39.367,31.3227,42.7051,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.388,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,0.4789,5.1629,8.6979,2.3159,0.1371,0.7662,3.347,9.533,0.83,3.35,9.53,13.04,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.32,2926.13,3020.01,58.21,1.0,58.21,73.35,73.35,0.0,49.59,1.0,49.59,73.35,73.35,0.0,71.67,40.183,31.2424,43.5903,0.21343,1.0657,1.0,1.0179,1.0848,1.0,29.3628,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4021,0.9915,1.2821,0.2625,1.087,0.5632,5.0073,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,69.13,39.367,29.5235,42.7051,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.2194,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8014,0.405,0.9917,1.2821,0.2625,1.087,1.7053,4.6183,8.7079,0.0,0.0,2.7281,2.994,9.544,2.94,2.99,9.54,13.0,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.85,2615.8,3020.01,58.21,1.0,58.21,69.13,69.13,0.0,49.59,1.0,49.59,69.13,69.13,0.0,67.91,40.183,29.6009,43.5903,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.2978,0.0,0.0,6.8,5.87,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8016,0.4021,0.9915,1.2821,0.2625,1.087,1.8438,4.5615,8.7066,0.0,0.0,2.9489,2.978,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,13.09,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.1853,28.9388,24.448,0.872,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,33.48,1080.57,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,61.99,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv.xml,9.11,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,0.1289,28.0668,24.448,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,38.22,1233.58,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,61.99,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,68.87,38.657,28.8769,41.9306,0.21316,1.0656,1.0,1.0179,1.0847,1.0,24.5598,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8013,0.4112,0.9777,1.2821,0.2625,1.6949,3.3198,4.4148,7.7513,0.0,0.0,5.3115,2.819,13.4377,5.73,2.82,13.44,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,125.92,4063.56,2975.15,52.5,1.0,52.5,68.87,68.87,0.0,45.31,1.0,45.31,68.87,68.87,0.0,63.77,39.452,27.291,42.7929,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.3522,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8015,0.4081,0.9768,1.2821,0.2625,1.6949,2.0152,4.5424,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-water-heater.xml,67.36,38.657,28.2447,41.9306,0.21316,1.0656,1.0,1.0179,1.0847,1.0,23.4638,0.0,0.0,5.42,6.27,10.49,8.68,4.0,18.18,16.48,0.0,0.0,0.8013,0.4112,0.9777,1.2821,0.2625,1.6949,3.3198,4.4148,7.1191,0.0,0.0,5.3115,2.819,12.3416,5.73,2.82,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.08,3972.02,2975.15,51.62,1.0,51.62,67.36,67.36,0.0,44.58,1.0,44.58,67.36,67.36,0.0,62.3,39.452,26.6593,42.7929,0.21316,1.0656,1.0,1.0179,1.0847,1.0,22.2562,0.0,0.0,6.34,6.16,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8015,0.4081,0.9768,1.2821,0.2625,1.6949,2.0152,4.5424,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit.xml,70.65,38.801,29.7388,42.0911,0.21343,1.0657,1.0,1.0179,1.0848,1.0,28.0668,0.0,0.0,5.97,5.88,10.49,9.55,3.83,11.5,16.47,0.0,0.0,0.8014,0.4031,0.9917,1.2821,0.2625,1.087,3.2645,4.3671,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,90.13,2908.96,2975.15,58.21,1.0,58.21,70.65,70.65,0.0,49.59,1.0,49.59,70.65,70.65,0.0,65.51,39.643,28.1737,43.0045,0.21343,1.0657,1.0,1.0179,1.0848,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8016,0.4004,0.9914,1.2821,0.2625,1.087,1.9719,4.5009,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-sfa-unit.xml,78.22,56.763,46.1103,58.9512,0.22168,1.0196,1.0,1.0186,1.0386,1.0,40.67,0.0,0.0,18.68,5.77,10.49,29.79,3.86,11.52,21.83,0.0,0.0,0.8041,0.3927,0.9898,1.2821,0.2625,1.087,15.622,4.7953,8.4611,0.0,0.0,24.9083,3.206,9.292,26.85,3.21,9.29,17.02,0.21,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.52,6349.63,4230.63,56.43,1.0,56.43,78.22,78.22,0.0,50.87,1.0,50.87,78.22,78.22,0.0,72.69,59.408,44.8496,61.6982,0.22168,1.0196,1.0,1.0186,1.0386,1.0,39.7276,0.0,0.0,21.4,5.7,10.49,34.11,3.83,11.52,21.82,0.0,0.0,0.8043,0.391,0.9896,1.2821,0.2625,1.087,14.575,4.793,8.4596,0.0,0.0,23.2331,3.218,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-combi-tankless.xml,64.46,76.244,49.6831,77.0817,0.23068,0.9918,1.0,1.0194,1.011,1.0,43.3936,0.0,0.0,29.83,8.7,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.425,0.9711,1.25,0.2625,1.6949,18.4216,7.5824,2.5552,0.0,0.0,30.1599,4.684,4.4598,33.35,4.68,10.29,21.12,0.01,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,147.34,8510.11,5713.06,55.39,1.0,55.39,64.46,64.46,0.0,49.89,1.0,49.89,64.46,64.46,0.0,61.23,80.247,49.6786,81.1287,0.23068,0.9918,1.0,1.0194,1.011,1.0,43.3702,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4234,0.9706,1.25,0.2625,1.6949,18.4517,7.5551,2.5539,0.0,0.0,30.1228,4.685,4.4598,33.31,4.69,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-desuperheater.xml,83.33,76.705,64.594,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.3012,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.8475,8.286,6.3365,0.0,0.0,45.9406,5.155,6.96,45.94,5.16,6.96,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.63,9389.68,5713.06,72.13,1.0,72.13,83.33,83.33,0.0,62.7,1.0,62.7,83.33,83.33,0.0,79.08,80.735,64.5202,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.2706,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.8096,8.2572,6.3354,0.0,0.0,45.8806,5.155,6.96,45.88,5.16,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-dwhr.xml,75.23,76.706,58.3174,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.1526,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,6.1444,0.0,0.0,36.831,4.903,6.749,39.71,4.9,6.75,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.38,8452.08,5561.74,56.72,1.0,56.72,75.23,75.23,0.0,51.05,1.0,51.05,75.23,75.23,0.0,71.4,80.735,58.2558,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.1256,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,6.1433,0.0,0.0,36.7837,4.903,6.749,39.65,4.9,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-indirect-standbyloss.xml,68.25,76.192,52.5623,77.0114,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4976,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4252,0.9697,1.25,0.2625,1.7241,17.484,8.0322,5.9191,0.0,0.0,28.6278,4.959,10.5237,31.65,4.96,14.07,21.12,0.01,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,152.61,8838.13,5729.62,55.39,1.0,55.39,68.25,68.25,0.0,49.89,1.0,49.89,68.25,68.25,0.0,64.83,80.193,52.5514,81.0555,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.4756,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4237,0.9692,1.25,0.2625,1.7241,17.5122,8.0023,5.9159,0.0,0.0,28.5916,4.959,10.5237,31.61,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-gas.xml,78.03,76.193,60.0694,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,47.8604,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.6193,8.1821,8.1421,0.0,0.0,36.0369,5.02,14.4761,38.85,5.02,14.23,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,175.46,9889.59,5578.79,54.44,1.0,54.44,78.03,78.03,0.0,48.57,1.0,48.57,78.03,78.03,0.0,74.06,80.194,60.0052,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,47.8348,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.5956,8.1518,8.1377,0.0,0.0,35.9905,5.02,14.4761,38.8,5.02,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-hpwh.xml,73.95,76.402,57.0713,77.1725,0.21182,0.9924,1.0,1.0178,1.0101,1.0,47.1516,0.0,0.0,30.08,8.61,10.49,47.92,5.3,12.41,27.23,0.0,0.0,0.8047,0.4265,0.9824,1.2821,0.2625,1.1628,25.8736,7.0231,3.0566,0.0,0.0,41.2214,4.323,3.618,44.44,4.32,3.38,21.11,0.01,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,155.72,8832.48,5615.24,57.04,1.0,57.04,73.95,73.95,0.0,51.34,1.0,51.34,73.95,73.95,0.0,70.2,80.415,57.0171,81.226,0.21182,0.9924,1.0,1.0178,1.0101,1.0,47.1246,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.8049,0.425,0.9821,1.2821,0.2625,1.1628,25.8511,6.9983,3.0557,0.0,0.0,41.175,4.323,3.618,44.39,4.32,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-jacket-indirect.xml,67.18,76.192,51.7327,77.0114,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.2264,0.0,0.0,29.75,8.73,10.49,48.71,5.39,18.65,27.23,0.0,0.0,0.7634,0.4252,0.9697,1.25,0.2625,1.7241,17.7547,7.9043,4.9477,0.0,0.0,29.0709,4.88,8.7968,32.14,4.88,13.09,21.12,0.01,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,151.27,8760.57,5729.62,55.39,1.0,55.39,67.18,67.18,0.0,49.89,1.0,49.89,67.18,67.18,0.0,63.81,80.193,51.723,81.0555,0.22582,0.9919,1.0,1.019,1.0108,1.0,44.203,0.0,0.0,33.82,8.66,10.49,55.22,5.37,18.66,27.22,0.0,0.0,0.7656,0.4237,0.9692,1.25,0.2625,1.7241,17.7831,7.8748,4.9451,0.0,0.0,29.0339,4.88,8.7968,32.1,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-low-flow-fixtures.xml,77.64,76.706,60.1829,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.2016,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.0098,0.0,0.0,36.831,4.903,8.798,39.71,4.9,8.8,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.3,8616.33,5561.74,56.72,1.0,56.72,77.64,77.64,0.0,51.05,1.0,51.05,77.64,77.64,0.0,73.69,80.735,60.1209,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.1746,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.0085,0.0,0.0,36.7837,4.903,8.798,39.65,4.9,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-multiple.xml,67.41,76.705,52.2732,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,42.621,0.0,0.0,30.56,8.43,10.5,49.99,5.24,11.5,27.23,0.0,0.0,0.7641,0.422,5.9382,1.25,0.2625,6.522,17.8743,7.799,5.4738,0.0,0.0,29.2392,4.852,6.0120000000000005,32.33,4.85,6.0200000000000005,21.12,0.01,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,131.82,7613.4,5712.87,61.74,1.0,61.74,67.41,67.41,0.0,56.11,1.0,56.11,67.41,67.41,0.0,64.03,80.735,52.2664,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,42.5976,0.0,0.0,34.66,8.37,10.5,56.54,5.22,11.5,27.22,0.0,0.0,0.7663,0.4205,5.9364,1.25,0.2625,6.522,17.9021,7.7718,5.4725,0.0,0.0,29.2021,4.852,6.0120000000000005,32.29,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 -base-dhw-none.xml,82.19,76.244,63.3296,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,50.4554,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,22.3158,8.2998,10.4851,0.0,0.0,35.5536,5.097,18.3009,38.33,5.1,18.3,22.22,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,186.91,10504.95,5561.74,61.64,1.0,61.64,82.19,82.19,0.0,56.57,1.0,56.57,82.19,82.19,0.0,78.02,80.247,63.2674,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,50.4288,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,22.2924,8.2721,10.4799,0.0,0.0,35.5073,5.098,18.3009,38.28,5.1,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-recirc-demand.xml,77.84,76.706,60.3404,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3746,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.1673,0.0,0.0,36.831,4.903,8.971,39.71,4.9,8.97,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,8630.17,5561.74,56.72,1.0,56.72,77.84,77.84,0.0,51.05,1.0,51.05,77.84,77.84,0.0,73.88,80.735,60.2784,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3476,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.1659,0.0,0.0,36.7837,4.903,8.971,39.65,4.9,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-fraction.xml,71.15,76.706,55.1546,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,45.6418,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.2899,7.8656,2.8751,0.0,0.0,37.1037,4.863,3.158,40.0,4.86,3.16,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.96,8203.53,5561.74,56.72,1.0,56.72,71.15,71.15,0.0,51.05,1.0,51.05,71.15,71.15,0.0,67.53,80.735,55.0938,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,45.6148,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.2653,7.8359,2.8746,0.0,0.0,37.0564,4.863,3.158,39.95,4.86,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-indirect-flat-plate.xml,69.34,76.706,53.7506,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,44.1122,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.8771,8.1761,1.5714,0.0,0.0,36.446,5.055,1.726,39.29,5.06,1.73,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.42,8004.68,5561.74,56.72,1.0,56.72,69.34,69.34,0.0,51.05,1.0,51.05,69.34,69.34,0.0,65.81,80.735,53.691,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,44.0856,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.853,8.1469,1.5711,0.0,0.0,36.3996,5.056,1.726,39.24,5.06,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-elec-uef.xml,77.91,76.752,60.4344,77.5679,0.22321,0.992,1.0,1.0187,1.0106,1.0,51.4802,0.0,0.0,30.64,8.4,10.49,48.81,5.2,11.38,27.23,0.0,0.0,0.8047,0.4243,0.9908,1.2821,0.2625,1.0753,23.085,7.9366,8.2878,0.0,0.0,36.7781,4.911,8.9942,39.65,4.91,9.09,21.12,0.01,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,153.81,8632.28,5553.17,56.97,1.0,56.97,77.91,77.91,0.0,51.25,1.0,51.25,77.91,77.91,0.0,73.95,80.785,60.3757,81.6437,0.22321,0.992,1.0,1.0187,1.0106,1.0,51.4536,0.0,0.0,34.74,8.34,10.49,55.33,5.18,11.38,27.22,0.0,0.0,0.8049,0.4228,0.9906,1.2821,0.2625,1.0753,23.0613,7.9091,8.2863,0.0,0.0,36.7317,4.911,8.9942,39.6,4.91,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-gas-uef.xml,77.87,76.343,60.1007,77.1818,0.23067,0.9918,1.0,1.0194,1.011,1.0,48.0306,0.0,0.0,29.99,8.64,10.49,47.78,5.31,17.66,27.23,0.0,0.0,0.8047,0.4269,0.9737,1.2821,0.2625,1.6393,22.5432,8.1919,8.2396,0.0,0.0,35.9154,5.038,13.8725,38.72,5.04,14.75,21.12,0.01,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,177.19,9947.88,5553.17,54.44,1.0,54.44,77.87,77.87,0.0,48.57,1.0,48.57,77.87,77.87,0.0,73.9,80.353,60.0366,81.2358,0.23067,0.9918,1.0,1.0194,1.011,1.0,48.005,0.0,0.0,34.07,8.57,10.49,54.27,5.29,17.67,27.22,0.0,0.0,0.8049,0.4253,0.9733,1.2821,0.2625,1.6393,22.5191,8.1616,8.2359,0.0,0.0,35.869,5.038,13.8725,38.67,5.04,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-heat-pump-uef.xml,73.08,76.608,56.5643,77.4053,0.21856,0.9922,1.0,1.0183,1.0104,1.0,46.4616,0.0,0.0,30.41,8.49,10.49,48.45,5.24,11.81,27.23,0.0,0.0,0.8047,0.4253,0.9872,1.2821,0.2625,1.1111,26.3968,6.8647,2.1869,0.0,0.0,42.0553,4.238,2.4615,45.34,4.24,2.41,21.11,0.01,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,157.53,8879.7,5578.79,56.78,1.0,56.78,73.08,73.08,0.0,51.11,1.0,51.11,73.08,73.08,0.0,69.36,80.633,56.5109,81.4722,0.21856,0.9922,1.0,1.0183,1.0104,1.0,46.4346,0.0,0.0,34.5,8.42,10.49,54.95,5.22,11.81,27.22,0.0,0.0,0.8049,0.4237,0.987,1.2821,0.2625,1.1111,26.3738,6.8406,2.1865,0.0,0.0,42.008,4.239,2.4615,45.29,4.24,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-oil.xml,78.65,76.193,60.5426,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1808,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3683,8.2799,8.7675,0.0,0.0,35.6371,5.08,15.588,38.42,5.08,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,190.49,10736.8,5578.79,54.44,1.0,54.44,78.65,78.65,0.0,48.57,1.0,48.57,78.65,78.65,0.0,74.64,80.194,60.4771,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1538,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3441,8.2492,8.7628,0.0,0.0,35.5898,5.08,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-wood.xml,78.65,76.193,60.5426,76.9787,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1808,0.0,0.0,29.75,8.73,10.49,47.4,5.36,18.65,27.23,0.0,0.0,0.8047,0.4279,0.9697,1.2821,0.2625,1.7241,22.3683,8.2799,8.7675,0.0,0.0,35.6371,5.08,15.588,38.42,5.08,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.44,1.0,54.44,78.65,78.65,0.0,48.57,1.0,48.57,78.65,78.65,0.0,74.64,80.194,60.4771,81.021,0.21658,0.9923,1.0,1.0182,1.0103,1.0,48.1538,0.0,0.0,33.82,8.66,10.49,53.87,5.33,18.66,27.22,0.0,0.0,0.8049,0.4263,0.9692,1.2821,0.2625,1.7241,22.3441,8.2492,8.7628,0.0,0.0,35.5898,5.08,15.588,38.37,5.08,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-electric-uef.xml,78.28,76.706,60.679,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.6918,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.3819,7.83,8.3431,0.0,0.0,37.2503,4.841,9.164,40.16,4.84,9.16,21.12,0.01,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,154.88,8705.03,5561.74,56.86,1.0,56.86,78.28,78.28,0.0,51.19,1.0,51.19,78.28,78.28,0.0,74.3,80.735,60.6174,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.6648,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.3573,7.8005,8.3416,0.0,0.0,37.2029,4.841,9.164,40.11,4.84,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tankless-gas-uef.xml,71.67,76.244,55.2208,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.3906,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,23.3807,7.8829,2.8333,0.0,0.0,37.2503,4.841,4.9453,40.16,4.84,9.66,21.12,0.01,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,167.14,9393.76,5561.74,54.44,1.0,54.44,71.67,71.67,0.0,48.57,1.0,48.57,71.67,71.67,0.0,68.02,80.247,55.162,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.3636,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.357,7.8551,2.8319,0.0,0.0,37.2029,4.841,4.9453,40.11,4.84,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-propane.xml,73.97,76.244,56.9893,77.048,0.22145,0.9921,1.0,1.0186,1.0105,1.0,47.0038,0.0,0.0,29.83,8.7,10.49,47.53,5.34,18.31,27.23,0.0,0.0,0.8047,0.4275,0.9711,1.2821,0.2625,1.6949,23.3807,7.8829,4.6018,0.0,0.0,37.2503,4.841,8.032,40.16,4.84,11.19,21.12,0.01,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,177.23,9960.95,5561.74,54.44,1.0,54.44,73.97,73.97,0.0,48.57,1.0,48.57,73.97,73.97,0.0,70.2,80.247,56.9296,81.0933,0.22145,0.9921,1.0,1.0186,1.0105,1.0,46.9768,0.0,0.0,33.91,8.63,10.49,54.01,5.32,18.32,27.22,0.0,0.0,0.8049,0.426,0.9706,1.2821,0.2625,1.6949,23.357,7.8551,4.5995,0.0,0.0,37.2029,4.841,8.032,40.11,4.84,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-enclosure-2stories-garage.xml,76.87,92.008,69.3002,90.1472,0.22168,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,40.03,10.62,10.49,63.76,6.24,11.52,30.87,0.0,0.0,0.805,0.4467,0.9896,1.2821,0.2625,1.087,25.3056,12.0479,8.1737,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.38,6612.98,56.75,1.0,56.75,76.87,76.87,0.0,51.54,1.0,51.54,76.87,76.87,0.0,70.45,100.553,69.4087,98.5194,0.22168,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,48.62,10.59,10.49,77.43,6.17,11.52,30.86,0.0,0.0,0.805,0.4508,0.9892,1.2821,0.2625,1.087,25.3067,12.1582,8.1709,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-2stories.xml,76.8,104.691,77.616,101.0637,0.22168,0.9654,1.0,1.0,0.9654,1.0,64.6092,0.0,0.0,46.45,12.42,10.49,73.99,7.22,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,30.513,11.7634,8.0706,0.0,0.0,48.5996,6.8401,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.55,11119.84,7501.69,56.51,1.0,56.51,76.8,76.8,0.0,51.2,1.0,51.2,76.8,76.8,0.0,70.42,114.298,77.7011,110.3379,0.22168,0.9654,1.0,1.0,0.9654,1.0,64.6092,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4548,0.9893,1.2821,0.2625,1.087,30.5152,11.8491,8.0678,0.0,0.0,48.5996,6.8401,8.864,52.39,6.84,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-1.xml,82.55,69.214,55.9735,67.8037,0.22187,0.9921,0.9694,1.0186,0.9796,1.0,46.9358,0.0,0.0,29.82,7.9,6.15,47.5,4.93,7.18,25.34,0.0,0.0,0.805,0.4208,0.931,1.2821,0.2625,1.087,24.1306,7.4651,4.6918,0.0,0.0,38.432,4.657,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.11,8466.04,4992.26,58.3,1.0,58.3,82.55,82.55,0.0,53.07,1.0,53.07,82.55,82.55,0.0,78.02,73.246,55.9839,71.7536,0.22187,0.9921,0.9694,1.0186,0.9796,1.0,46.9358,0.0,0.0,33.92,7.84,6.15,54.01,4.89,7.19,25.33,0.0,0.0,0.805,0.4214,0.9307,1.2821,0.2625,1.087,24.1328,7.4745,4.6905,0.0,0.0,38.432,4.657,5.478,41.43,4.66,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-2.xml,80.08,73.021,58.1916,72.663,0.22176,0.9921,0.9847,1.0186,0.9951,1.0,49.201,0.0,0.0,30.19,8.16,8.39,48.09,5.07,9.42,26.28,0.0,0.0,0.8048,0.4228,0.9679,1.2821,0.2625,1.087,23.6059,7.6955,6.4882,0.0,0.0,37.6037,4.779,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.64,8548.59,5281.93,57.49,1.0,57.49,80.08,80.08,0.0,52.01,1.0,52.01,80.08,80.08,0.0,75.8,77.054,58.1197,76.6762,0.22176,0.9921,0.9847,1.0186,0.9951,1.0,49.201,0.0,0.0,34.29,8.1,8.39,54.61,5.08,9.42,26.28,0.0,0.0,0.805,0.4185,0.9677,1.2821,0.2625,1.087,23.6124,7.6185,6.4868,0.0,0.0,37.6037,4.779,7.286,40.54,4.78,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-4.xml,76.89,80.326,63.3651,82.4147,0.22159,0.9921,1.0153,1.0186,1.026,1.0,54.2468,0.0,0.0,30.93,8.7,12.53,49.29,5.36,13.56,28.17,0.0,0.0,0.8046,0.4263,1.0042,1.2821,0.2625,1.087,23.3178,8.1547,9.8985,0.0,0.0,37.1556,5.022,10.714,40.06,5.02,10.71,21.83,0.16,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.64,8900.68,5836.28,55.92,1.0,55.92,76.89,76.89,0.0,50.09,1.0,50.09,76.89,76.89,0.0,72.15,84.355,62.4444,86.5485,0.22159,0.9921,1.0153,1.0186,1.026,1.0,53.558,0.0,0.0,35.03,8.63,12.53,55.81,5.33,13.56,28.17,0.0,0.0,0.8048,0.4249,1.0041,1.2821,0.2625,1.087,22.5795,8.1358,9.8971,0.0,0.0,35.9711,5.027,10.714,38.78,5.03,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-5.xml,75.92,83.909,66.3404,87.386,0.2215,0.9921,1.0306,1.0186,1.0414,1.0,57.0524,0.0,0.0,31.31,8.97,14.53,49.89,5.5,15.56,29.11,0.0,0.0,0.8045,0.4281,1.0148,1.2821,0.2625,1.087,23.5246,8.3872,11.5637,0.0,0.0,37.4905,5.143,12.386,40.42,5.14,12.39,22.55,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.25,9167.3,6102.43,55.14,1.0,55.14,75.92,75.92,0.0,49.17,1.0,49.17,75.92,75.92,0.0,70.5,87.937,64.5615,91.581,0.2215,0.9921,1.0306,1.0186,1.0414,1.0,55.708,0.0,0.0,35.41,8.9,14.53,56.41,5.48,15.56,29.11,0.0,0.0,0.8046,0.4267,1.0147,1.2821,0.2625,1.087,22.0768,8.3764,11.5612,0.0,0.0,35.1752,5.154,12.385,37.92,5.15,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-ceilingtypes.xml,88.14,76.706,67.8606,76.9933,0.07891,0.9972,1.0,1.0066,1.0037,1.0,56.4626,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,30.482,8.0467,8.2129,0.0,0.0,48.5616,4.975,9.021,52.35,4.98,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.27,10510.48,5561.74,56.61,1.0,56.61,88.14,88.14,0.0,50.95,1.0,50.95,88.14,88.14,0.0,83.67,80.735,67.8027,81.0374,0.07891,0.9972,1.0,1.0066,1.0037,1.0,56.4364,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,30.4619,8.0164,8.2114,0.0,0.0,48.5189,4.975,9.021,52.31,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-floortypes.xml,99.25,56.884,59.782,60.2334,0.22168,1.0395,1.0,1.0186,1.0589,1.0,49.5926,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4133,0.9898,1.2821,0.2625,1.087,29.0625,7.0561,8.3944,0.0,0.0,46.404,4.482,9.218,50.03,4.48,9.22,14.95,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,218.1,9639.29,4173.93,54.96,1.0,54.96,99.25,99.25,0.0,49.58,1.0,49.58,99.25,99.25,0.0,93.59,58.456,57.9286,61.898,0.22168,1.0395,1.0,1.0186,1.0589,1.0,48.1834,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4126,0.9898,1.2821,0.2625,1.087,27.563,7.0179,8.3937,0.0,0.0,44.0024,4.466,9.218,47.44,4.47,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-garage.xml,77.54,75.02,58.7809,75.812,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.7844,0.0,0.0,30.44,6.97,10.49,48.49,4.5,11.73,27.12,0.0,0.0,0.8048,0.4068,0.9721,1.2821,0.2625,1.087,24.5731,5.1121,8.1457,0.0,0.0,39.1463,3.299,9.108,42.2,3.3,9.11,20.94,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.69,8873.11,5498.42,57.34,1.0,57.34,77.54,77.54,0.0,51.49,1.0,51.49,77.54,77.54,0.0,73.46,79.119,58.7336,79.9542,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.752,0.0,0.0,34.58,6.93,10.49,55.07,4.48,11.73,27.12,0.0,0.0,0.805,0.4055,0.9721,1.2821,0.2625,1.087,24.5478,5.096,8.1457,0.0,0.0,39.0962,3.299,9.108,42.15,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ach-house-pressure.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm-house-pressure.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm50.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ela.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-ach.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-cfm.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-overhangs.xml,77.76,76.706,60.2738,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.371,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.3126,7.6262,8.212,0.0,0.0,37.1399,4.715,9.02,40.04,4.72,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.25,8669.34,5561.74,56.72,1.0,56.72,77.76,77.76,0.0,51.05,1.0,51.05,77.76,77.76,0.0,73.8,80.735,60.213,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.345,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.288,7.5975,8.2105,0.0,0.0,37.0926,4.715,9.02,39.99,4.72,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-skylights.xml,78.47,76.706,60.7685,77.4443,0.20222,0.9928,1.0,1.017,1.0096,1.0,51.4786,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.2349,9.1935,8.2101,0.0,0.0,35.4228,5.6841,9.018,38.19,5.68,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.95,8476.5,5561.74,56.72,1.0,56.72,78.47,78.47,0.0,51.05,1.0,51.05,78.47,78.47,0.0,74.47,80.735,60.7021,81.5121,0.20222,0.9928,1.0,1.017,1.0096,1.0,51.452,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.2106,9.1589,8.2087,0.0,0.0,35.3765,5.6841,9.018,38.14,5.68,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-walltypes.xml,91.92,76.66,70.3299,76.5118,-0.04085,1.0015,1.0,0.9966,0.9981,1.0,58.8916,0.0,0.0,30.53,8.42,10.49,48.63,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,34.4459,6.5564,8.2147,0.0,0.0,54.8787,4.054,9.023,59.16,4.05,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,205.46,11399.66,5559.23,56.84,1.0,56.84,91.92,91.92,0.0,51.16,1.0,51.16,91.92,91.92,0.0,87.15,80.689,70.1837,80.533,-0.04085,1.0015,1.0,0.9966,0.9981,1.0,58.8088,0.0,0.0,34.62,8.36,10.49,55.15,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,34.422,6.4414,8.2133,0.0,0.0,54.8295,3.998,9.023,59.11,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-ambient.xml,82.48,56.884,49.6778,60.2334,0.22168,1.0395,1.0,1.0186,1.0589,1.0,42.1908,0.0,0.0,20.16,7.11,10.49,32.19,4.52,11.52,19.13,0.0,0.0,0.8029,0.4133,0.9898,1.2821,0.2625,1.087,17.0058,8.9847,8.3853,0.0,0.0,27.1532,5.7071,9.208,29.27,5.71,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.66,6703.11,4173.93,55.15,1.0,55.15,82.48,82.48,0.0,49.78,1.0,49.78,82.48,82.48,0.0,77.33,58.456,47.8646,61.898,0.22168,1.0395,1.0,1.0186,1.0589,1.0,40.8368,0.0,0.0,21.77,7.08,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8031,0.4126,0.9898,1.2821,0.2625,1.087,15.5009,8.99,8.3837,0.0,0.0,24.746,5.7211,9.207,26.68,5.72,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-basement-garage.xml,77.24,68.039,54.3807,70.4049,0.22168,1.0159,1.0,1.0186,1.0348,1.0,46.3146,0.0,0.0,27.7,7.09,10.49,44.11,4.46,11.52,22.76,0.0,0.0,0.8051,0.4177,0.9895,1.2821,0.2625,1.087,20.1698,7.9786,8.4243,0.0,0.0,32.1205,5.015,9.254,34.63,5.02,9.25,17.62,0.19,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.92,7646.62,4928.96,55.55,1.0,55.55,77.24,77.24,0.0,50.35,1.0,50.35,77.24,77.24,0.0,72.68,70.9,53.3205,73.3654,0.22168,1.0159,1.0,1.0186,1.0348,1.0,45.4944,0.0,0.0,30.61,7.05,10.49,48.74,4.42,11.52,22.76,0.0,0.0,0.8051,0.4186,0.9893,1.2821,0.2625,1.087,19.2749,8.0028,8.4228,0.0,0.0,30.6939,5.019,9.254,33.09,5.02,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,77.39,76.706,59.9887,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.0934,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.3548,8.2958,8.211,0.0,0.0,35.6139,5.129,9.019,38.39,5.13,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.52,8460.18,5561.74,56.72,1.0,56.72,77.39,77.39,0.0,51.05,1.0,51.05,77.39,77.39,0.0,73.45,80.735,59.9257,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.0664,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.3306,8.2646,8.2096,0.0,0.0,35.5676,5.129,9.019,38.34,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,77.94,74.912,59.0021,75.7028,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.6258,0.0,0.0,29.13,8.07,10.49,46.41,5.04,11.52,27.23,0.0,0.0,0.8047,0.4204,0.9896,1.2821,0.2625,1.087,22.4457,7.2225,8.212,0.0,0.0,35.7605,4.51,9.02,38.55,4.51,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.77,8430.52,5460.85,57.66,1.0,57.66,77.94,77.94,0.0,51.82,1.0,51.82,77.94,77.94,0.0,73.89,78.938,58.9464,79.7713,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5992,0.0,0.0,33.22,8.01,10.49,52.92,5.02,11.52,27.22,0.0,0.0,0.8049,0.419,0.9894,1.2821,0.2625,1.087,22.422,7.1979,8.2105,0.0,0.0,35.7141,4.51,9.02,38.5,4.51,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-multiple.xml,76.04,55.639,44.7995,58.9151,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.0132,0.0,0.0,19.82,6.53,10.49,31.66,4.24,11.67,18.8,0.0,0.0,0.8027,0.4038,0.9769,1.2821,0.2625,1.087,13.7828,7.6944,8.2394,0.0,0.0,22.0142,5.003,9.168,23.73,5.0,9.17,14.77,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,133.72,5815.88,4107.39,54.55,1.0,54.55,76.04,76.04,0.0,49.0,1.0,49.0,76.04,76.04,0.0,71.07,57.231,43.0691,60.6008,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7006,0.0,0.0,21.44,6.5,10.49,34.24,4.24,11.67,18.8,0.0,0.0,0.8028,0.4031,0.9769,1.2821,0.2625,1.087,12.3821,7.6858,8.2412,0.0,0.0,19.7749,5.006,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-slab.xml,68.07,57.803,41.6614,61.2065,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.8148,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.804,0.4052,0.9896,1.2821,0.2625,1.087,11.2034,6.7699,8.3831,0.0,0.0,17.864,4.386,9.208,19.26,4.39,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.45,5139.9,4204.42,54.26,1.0,54.26,68.07,68.07,0.0,49.11,1.0,49.11,68.07,68.07,0.0,63.8,59.386,40.1215,62.8827,0.22168,1.0395,1.0,1.0186,1.0589,1.0,35.6428,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8041,0.4046,0.9895,1.2821,0.2625,1.087,9.992,6.756,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,73.44,55.742,43.3495,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.9774,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,13.0416,7.0308,8.26,0.0,0.0,20.8315,4.54,9.187,22.46,4.54,9.19,14.7,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.6,5593.37,4107.48,54.0,1.0,54.0,73.44,73.44,0.0,48.5,1.0,48.5,73.44,73.44,0.0,68.58,57.333,41.6341,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.6768,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,11.6591,7.0181,8.2618,0.0,0.0,18.62,4.54,9.189,20.07,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,80.66,55.742,47.6082,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,41.0662,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,17.6585,6.5105,8.2052,0.0,0.0,28.206,4.204,9.126,30.41,4.2,9.13,14.92,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.08,6744.88,4107.48,54.0,1.0,54.0,80.66,80.66,0.0,48.5,1.0,48.5,80.66,80.66,0.0,75.63,57.333,45.9149,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.783,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,16.3192,6.4756,8.2052,0.0,0.0,26.0623,4.189,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement.xml,76.28,55.742,45.0212,59.0242,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.1158,0.0,0.0,19.74,6.7,10.49,31.53,4.33,11.67,18.81,0.0,0.0,0.8026,0.4066,0.9773,1.2821,0.2625,1.087,13.9209,7.8098,8.2555,0.0,0.0,22.2359,5.043,9.182,23.97,5.04,9.18,14.72,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,134.53,5850.98,4107.48,54.0,1.0,54.0,76.28,76.28,0.0,48.5,1.0,48.5,76.28,76.28,0.0,71.27,57.333,43.266,60.7088,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7888,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8028,0.4058,0.9773,1.2821,0.2625,1.087,12.4967,7.7988,8.2564,0.0,0.0,19.9576,5.045,9.183,21.51,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unvented-crawlspace.xml,74.07,55.444,43.4874,58.7086,0.22168,1.0395,1.0,1.0186,1.0589,1.0,38.0676,0.0,0.0,18.38,7.45,10.49,29.36,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,11.9896,7.91,8.2739,0.0,0.0,19.1515,4.979,9.286,20.65,4.98,9.29,15.0,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,124.23,5391.23,4098.42,55.85,1.0,55.85,74.07,74.07,0.0,50.41,1.0,50.41,74.07,74.07,0.0,69.33,56.99,41.8397,60.3456,0.22168,1.0395,1.0,1.0186,1.0589,1.0,36.8216,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,10.6535,7.9086,8.2756,0.0,0.0,17.0152,4.989,9.288,18.34,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace-above-grade.xml,76.42,55.375,44.8112,58.6355,0.22168,1.0395,1.0,1.0186,1.0589,1.0,39.0464,0.0,0.0,18.41,7.34,10.49,29.41,4.64,11.79,19.13,0.0,0.0,0.8026,0.4157,0.9672,1.2821,0.2625,1.087,13.168,8.0066,8.3256,0.0,0.0,21.0346,5.056,9.356,22.68,5.06,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.4,5699.34,4096.36,56.0,1.0,56.0,76.42,76.42,0.0,50.56,1.0,50.56,76.42,76.42,0.0,71.49,56.927,43.0922,60.2789,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.31,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8027,0.4149,0.9672,1.2821,0.2625,1.087,11.7646,8.0021,8.3265,0.0,0.0,18.7907,5.063,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace.xml,76.07,55.444,44.6573,58.7086,0.22168,1.0395,1.0,1.0186,1.0589,1.0,38.9342,0.0,0.0,18.38,7.45,10.49,29.36,4.69,11.77,19.13,0.0,0.0,0.8026,0.4171,0.9685,1.2821,0.2625,1.087,13.2347,7.7702,8.3425,0.0,0.0,21.1404,4.891,9.363,22.79,4.89,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.46,5705.01,4098.42,55.85,1.0,55.85,76.07,76.07,0.0,50.41,1.0,50.41,76.07,76.07,0.0,71.15,56.99,42.9338,60.3456,0.22168,1.0395,1.0,1.0186,1.0589,1.0,37.6338,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8027,0.4162,0.9685,1.2821,0.2625,1.087,11.8273,7.7643,8.3442,0.0,0.0,18.89,4.898,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-walkout-basement.xml,79.43,81.338,64.0947,80.6949,0.22168,0.9921,1.0,1.0,0.9921,1.0,53.9342,0.0,0.0,34.15,9.47,10.49,54.41,5.75,11.52,27.23,0.0,0.0,0.8047,0.4323,0.9896,1.2821,0.2625,1.087,26.3208,8.4401,8.2129,0.0,0.0,41.9347,5.126,9.021,45.21,5.13,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.59,9450.97,5858.99,56.46,1.0,56.46,79.43,79.43,0.0,51.26,1.0,51.26,79.43,79.43,0.0,73.42,87.918,64.037,87.2229,0.22168,0.9921,1.0,1.0,0.9921,1.0,53.9072,0.0,0.0,40.78,9.43,10.49,64.95,5.75,11.52,27.22,0.0,0.0,0.805,0.4308,0.9893,1.2821,0.2625,1.087,26.301,8.4104,8.2107,0.0,0.0,41.8874,5.125,9.021,45.16,5.13,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.59,76.675,65.545,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.9142,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,7.6644,8.2127,0.0,0.0,45.4587,3.907,9.02,45.46,3.91,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.9,9381.28,5629.6,70.68,1.0,70.68,84.59,84.59,0.0,61.27,1.0,61.27,84.59,84.59,0.0,80.28,80.709,65.4785,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.8832,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,7.6436,8.2105,0.0,0.0,45.3977,3.907,9.02,45.4,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.72,76.705,66.4384,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.706,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4771,7.6254,8.212,0.0,0.0,22.8172,4.744,9.02,22.82,4.74,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.78,4894.02,5713.06,56.21,1.0,56.21,85.72,85.72,0.0,50.29,1.0,50.29,85.72,85.72,0.0,81.65,80.736,66.6073,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.674,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6783,7.6004,8.2105,0.0,0.0,22.7922,4.745,9.02,22.79,4.75,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.04,76.713,65.1497,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.289,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.7486,7.0651,8.212,0.0,0.0,21.4512,3.695,9.02,21.45,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.3,4681.53,5561.74,53.34,1.0,53.34,84.04,84.04,0.0,47.33,1.0,47.33,84.04,84.04,0.0,80.15,80.743,65.3925,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.261,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0165,7.0475,8.2105,0.0,0.0,21.4292,3.695,9.02,21.43,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.03,76.713,65.1354,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.284,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.7553,7.0441,8.212,0.0,0.0,21.4562,3.684,9.02,21.46,3.68,9.02,21.12,0.01,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.27,4679.6,5561.74,53.34,1.0,53.34,84.03,84.03,0.0,47.33,1.0,47.33,84.03,84.03,0.0,80.13,80.743,65.3816,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.257,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0246,7.0284,8.2105,0.0,0.0,21.4352,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-portable.xml,68.59,63.464,46.724,68.1175,0.27418,1.0491,1.0,1.0231,1.0733,1.0,37.426,0.0,0.0,9.89,26.6,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8071,0.445,0.9614,1.2821,0.2625,1.087,3.0502,22.2635,5.9383,0.0,0.0,4.8449,13.1361,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.25,5976.85,7601.76,48.28,1.0,48.28,68.59,68.59,0.0,46.5,1.0,46.5,68.59,68.59,0.0,65.69,64.029,45.1445,68.724,0.27418,1.0491,1.0,1.0231,1.0733,1.0,36.451,0.0,0.0,10.37,26.66,7.52,16.54,15.89,8.5,19.22,0.0,0.27,0.8037,0.4404,0.9613,1.2821,0.2625,1.087,2.564,21.4947,5.9368,0.0,0.0,4.0899,12.8141,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,68.6,63.422,46.6959,68.0725,0.27418,1.0491,1.0,1.0231,1.0733,1.0,37.4302,0.0,0.0,9.86,26.57,7.52,15.71,15.69,8.5,19.22,0.0,0.25,0.8051,0.4445,0.9614,1.2821,0.2625,1.087,3.0413,22.2404,5.9383,0.0,0.0,4.8431,13.1371,6.714,5.22,13.14,6.71,15.09,0.32,0.07,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5976.9,7602.85,48.36,1.0,48.36,68.6,68.6,0.0,46.67,1.0,46.67,68.6,68.6,0.0,65.69,64.008,45.1271,68.7014,0.27418,1.0491,1.0,1.0231,1.0733,1.0,36.4498,0.0,0.0,10.36,26.65,7.52,16.53,15.89,8.5,19.22,0.0,0.27,0.803,0.4402,0.9613,1.2821,0.2625,1.087,2.5598,21.4815,5.9368,0.0,0.0,4.0871,12.8131,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier-multiple.xml,68.57,63.523,46.7526,68.1809,0.27418,1.0491,1.0,1.0231,1.0733,1.0,37.4192,0.0,0.0,9.94,26.63,7.52,15.74,15.69,8.5,19.22,0.0,0.21,0.8098,0.4455,0.9613,1.2821,0.2625,1.087,3.0618,22.2881,5.9376,0.0,0.0,4.8477,13.1341,6.714,5.23,13.13,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.25,5976.26,7601.4,48.15,1.0,48.15,68.57,68.57,0.0,46.18,1.0,46.18,68.57,68.57,0.0,65.66,64.135,45.1955,68.8377,0.27418,1.0491,1.0,1.0231,1.0733,1.0,36.4462,0.0,0.0,10.44,26.72,7.52,16.57,15.89,8.5,19.22,0.0,0.24,0.8079,0.4413,0.9612,1.2821,0.2625,1.087,2.5791,21.5363,5.9361,0.0,0.0,4.0926,12.8121,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-dehumidifier.xml,68.59,63.464,46.719,68.1175,0.27418,1.0491,1.0,1.0231,1.0733,1.0,37.421,0.0,0.0,9.89,26.6,7.52,15.71,15.69,8.5,19.22,0.0,0.24,0.8071,0.445,0.9614,1.2821,0.2625,1.087,3.0502,22.2635,5.9383,0.0,0.0,4.8449,13.1361,6.714,5.22,13.14,6.71,15.09,0.32,0.06,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.24,5976.08,7601.76,48.28,1.0,48.28,68.59,68.59,0.0,46.5,1.0,46.5,68.59,68.59,0.0,65.67,64.029,45.1323,68.724,0.27418,1.0491,1.0,1.0231,1.0733,1.0,36.4422,0.0,0.0,10.37,26.66,7.52,16.54,15.89,8.5,19.22,0.0,0.27,0.8037,0.4404,0.9613,1.2821,0.2625,1.087,2.5628,21.4897,5.9368,0.0,0.0,4.088,12.8111,6.713,4.41,12.81,6.71,15.1,0.0,0.05,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-gas.xml,78.76,78.465,62.4353,79.2707,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.516,0.0,0.0,30.12,8.66,10.49,47.97,5.32,11.52,29.2,0.0,0.0,0.8049,0.4271,0.9897,1.2821,0.2625,1.087,22.8345,8.1971,8.2127,0.0,0.0,36.3709,5.039,9.02,39.21,5.04,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.36,9066.8,5561.74,57.54,1.0,57.54,78.76,78.76,0.0,52.0,1.0,52.0,78.76,78.76,0.0,74.83,82.481,62.3576,83.3279,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.49,0.0,0.0,34.2,8.59,10.49,54.47,5.31,11.52,29.2,0.0,0.0,0.805,0.4247,0.9895,1.2821,0.2625,1.087,22.8083,8.1531,8.2112,0.0,0.0,36.3236,5.04,9.02,39.16,5.04,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-modified.xml,79.04,76.703,61.2689,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.3332,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1506,7.982,8.6872,0.0,0.0,36.8727,4.932,9.542,39.75,4.93,9.54,21.44,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.97,8709.98,5561.74,56.98,1.0,56.98,79.04,79.04,0.0,51.28,1.0,51.28,79.04,79.04,0.0,75.0,80.733,61.189,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.3062,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1242,7.9361,8.6857,0.0,0.0,36.8263,4.932,9.542,39.7,4.93,9.54,21.44,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-none.xml,80.07,76.703,62.0659,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,53.1278,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.0819,8.0209,8.6071,0.0,0.0,36.7633,4.956,9.454,39.63,4.96,9.45,22.35,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.81,8757.27,5561.74,56.73,1.0,56.73,80.07,80.07,0.0,51.06,1.0,51.06,80.07,80.07,0.0,75.98,80.733,61.9852,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,53.1008,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.0549,7.9747,8.6056,0.0,0.0,36.7159,4.956,9.454,39.58,4.96,9.45,22.35,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-oil.xml,78.76,78.465,62.4353,79.2707,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.516,0.0,0.0,30.12,8.66,10.49,47.97,5.32,11.52,29.2,0.0,0.0,0.8049,0.4271,0.9897,1.2821,0.2625,1.087,22.8345,8.1971,8.2127,0.0,0.0,36.3709,5.039,9.02,39.21,5.04,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.57,9303.35,5561.74,57.54,1.0,57.54,78.76,78.76,0.0,52.0,1.0,52.0,78.76,78.76,0.0,74.83,82.481,62.3576,83.3279,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.49,0.0,0.0,34.2,8.59,10.49,54.47,5.31,11.52,29.2,0.0,0.0,0.805,0.4247,0.9895,1.2821,0.2625,1.087,22.8083,8.1531,8.2112,0.0,0.0,36.3236,5.04,9.02,39.16,5.04,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-propane.xml,78.76,78.465,62.4353,79.2707,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.516,0.0,0.0,30.12,8.66,10.49,47.97,5.32,11.52,29.2,0.0,0.0,0.8049,0.4271,0.9897,1.2821,0.2625,1.087,22.8345,8.1971,8.2127,0.0,0.0,36.3709,5.039,9.02,39.21,5.04,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.01,9215.25,5561.74,57.54,1.0,57.54,78.76,78.76,0.0,52.0,1.0,52.0,78.76,78.76,0.0,74.83,82.481,62.3576,83.3279,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.49,0.0,0.0,34.2,8.59,10.49,54.47,5.31,11.52,29.2,0.0,0.0,0.805,0.4247,0.9895,1.2821,0.2625,1.087,22.8083,8.1531,8.2112,0.0,0.0,36.3236,5.04,9.02,39.16,5.04,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-wood.xml,78.76,78.465,62.4353,79.2707,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.516,0.0,0.0,30.12,8.66,10.49,47.97,5.32,11.52,29.2,0.0,0.0,0.8049,0.4271,0.9897,1.2821,0.2625,1.087,22.8345,8.1971,8.2127,0.0,0.0,36.3709,5.039,9.02,39.21,5.04,9.02,23.19,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.54,1.0,57.54,78.76,78.76,0.0,52.0,1.0,52.0,78.76,78.76,0.0,74.83,82.481,62.3576,83.3279,0.21565,0.9923,1.0,1.0181,1.0103,1.0,50.49,0.0,0.0,34.2,8.59,10.49,54.47,5.31,11.52,29.2,0.0,0.0,0.805,0.4247,0.9895,1.2821,0.2625,1.087,22.8083,8.1531,8.2112,0.0,0.0,36.3236,5.04,9.02,39.16,5.04,9.02,23.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-cathedral.xml,71.83,79.69,57.7805,80.4441,0.19881,0.9929,1.0,1.0167,1.0095,1.0,49.4442,0.0,0.0,33.38,8.6,10.49,53.16,5.17,11.52,27.23,0.0,0.0,0.805,0.4365,0.9896,1.2821,0.2625,1.087,20.9751,7.4704,8.212,0.0,0.0,33.4053,4.493,9.02,36.01,4.49,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.89,8068.0,5754.36,56.19,1.0,56.19,71.83,71.83,0.0,51.47,1.0,51.47,71.83,71.83,0.0,67.02,85.439,57.8041,86.2475,0.19881,0.9929,1.0,1.0167,1.0095,1.0,49.4208,0.0,0.0,39.2,8.53,10.49,62.43,5.09,11.52,27.22,0.0,0.0,0.8051,0.4397,0.9893,1.2821,0.2625,1.087,20.9527,7.5246,8.2098,0.0,0.0,33.3673,4.493,9.02,35.97,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-conditioned.xml,74.51,92.421,67.0688,90.0174,0.21378,0.974,1.0,1.0,0.974,1.0,57.0634,0.0,0.0,38.4,10.9,10.49,61.16,6.38,11.52,32.63,0.0,0.0,0.805,0.4485,0.9897,1.2821,0.2625,1.087,24.7895,8.9342,8.1271,0.0,0.0,39.4821,5.23,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.71,9396.05,6666.53,57.68,1.0,57.68,74.51,74.51,0.0,51.64,1.0,51.64,74.51,74.51,0.0,68.45,100.667,67.112,98.049,0.21378,0.974,1.0,1.0,0.974,1.0,57.0634,0.0,0.0,46.73,10.83,10.49,74.42,6.31,11.52,32.62,0.0,0.0,0.805,0.4507,0.9894,1.2821,0.2625,1.087,24.7906,8.9785,8.125,0.0,0.0,39.4821,5.23,8.926,42.56,5.23,8.93,25.22,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-flat.xml,71.42,76.724,55.3175,77.4485,0.1984,0.9929,1.0,1.0166,1.0094,1.0,47.7672,0.0,0.0,30.34,8.67,10.49,48.32,5.17,11.52,27.23,0.0,0.0,0.805,0.4398,0.9897,1.2821,0.2625,1.087,19.3919,6.5899,8.2127,0.0,0.0,30.8822,3.934,9.02,33.29,3.93,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,136.01,7631.22,5558.26,56.71,1.0,56.71,71.42,71.42,0.0,51.05,1.0,51.05,71.42,71.42,0.0,67.81,80.735,55.2613,81.4974,0.1984,0.9929,1.0,1.0166,1.0094,1.0,47.744,0.0,0.0,34.43,8.59,10.49,54.83,5.15,11.52,27.22,0.0,0.0,0.805,0.4382,0.9895,1.2821,0.2625,1.087,19.3664,6.5667,8.2112,0.0,0.0,30.8423,3.934,9.02,33.25,3.93,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-radiant-barrier.xml,74.85,63.072,50.08,66.911,0.22894,1.0409,1.0,1.0192,1.0609,1.0,39.642,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8003,0.4431,0.9612,1.2821,0.2625,1.087,4.8359,23.9105,5.9396,0.0,0.0,7.7474,14.1681,6.717,8.35,14.17,6.72,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,82.06,6596.94,7577.96,47.26,1.0,47.26,74.85,74.85,0.0,44.31,1.0,44.31,74.85,74.85,0.0,71.67,63.661,48.4038,67.5358,0.22894,1.0409,1.0,1.0192,1.0609,1.0,38.5894,0.0,0.0,10.42,26.51,7.52,16.69,15.85,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,4.296,23.0888,5.938,0.0,0.0,6.882,13.8071,6.716,7.42,13.81,6.72,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-unvented-insulated-roof.xml,74.0,76.703,57.2625,77.3859,0.18712,0.9933,1.0,1.0157,1.0089,1.0,49.2948,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,21.153,6.7747,8.2129,0.0,0.0,33.691,4.186,9.021,36.32,4.19,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.13,8087.69,5561.74,56.73,1.0,56.73,74.0,74.0,0.0,51.06,1.0,51.06,74.0,74.0,0.0,70.22,80.733,57.1957,81.4518,0.18712,0.9933,1.0,1.0157,1.0089,1.0,49.2708,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,21.131,6.7373,8.2114,0.0,0.0,33.652,4.187,9.021,36.28,4.19,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-vented.xml,76.44,77.039,59.5149,77.8534,0.22199,0.9921,1.0,1.0186,1.0106,1.0,51.2378,0.0,0.0,31.1,8.23,10.49,49.53,5.11,11.82,27.23,0.0,0.0,0.8049,0.4226,0.9644,1.2821,0.2625,1.087,23.1973,7.0462,8.1484,0.0,0.0,36.9478,4.377,9.184,39.83,4.38,9.18,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.93,8618.39,5613.41,57.49,1.0,57.49,76.44,76.44,0.0,51.96,1.0,51.96,76.44,76.44,0.0,72.55,81.086,59.4459,81.9432,0.22199,0.9921,1.0,1.0186,1.0106,1.0,51.2164,0.0,0.0,35.21,8.17,10.49,56.07,5.1,11.82,27.22,0.0,0.0,0.805,0.4202,0.9644,1.2821,0.2625,1.087,23.175,7.0055,8.1484,0.0,0.0,36.907,4.377,9.184,39.79,4.38,9.18,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-battery.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,78.65,40.542,34.5901,43.9792,0.2134,1.0657,1.0,1.0179,1.0848,1.0,31.6606,0.0,0.0,8.48,5.13,10.49,13.56,3.5,11.51,16.45,0.0,0.0,0.8016,0.3845,0.9907,1.2821,0.2625,1.087,9.0125,3.5209,8.7207,0.0,0.0,14.4142,2.404,9.568,15.54,2.4,9.57,12.92,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.24,4325.07,3109.14,67.83,1.0,67.83,78.65,78.65,0.0,58.91,1.0,58.91,78.65,78.65,0.0,71.3,41.506,32.1032,45.025,0.2134,1.0657,1.0,1.0179,1.0848,1.0,29.7884,0.0,0.0,9.49,5.08,10.49,15.18,3.48,11.51,16.44,0.0,0.0,0.8017,0.3831,0.9905,1.2821,0.2625,1.087,6.9722,3.4905,8.7165,0.0,0.0,11.149,2.392,9.565,12.02,2.39,9.57,12.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-location-portland-or.xml,73.85,33.864,26.8142,36.3104,0.18291,1.0561,1.0,1.0153,1.0722,1.0,26.081,0.0,0.0,3.99,3.45,9.97,6.39,2.4,10.99,16.45,0.0,0.0,0.8004,0.3775,0.9866,1.2821,0.2625,1.087,2.3418,2.827,8.2704,0.0,0.0,3.7513,1.966,9.112,4.04,1.97,9.11,12.95,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.36,2577.1,2689.55,62.7,1.0,62.7,73.85,73.85,0.0,51.46,1.0,51.46,73.85,73.85,0.0,69.93,34.206,25.6492,36.6771,0.18291,1.0561,1.0,1.0153,1.0722,1.0,25.1802,0.0,0.0,4.45,3.34,9.97,7.13,2.35,10.99,16.45,0.0,0.0,0.8002,0.3723,0.9863,1.2821,0.2625,1.087,1.2934,3.111,8.2609,0.0,0.0,2.0723,2.194,9.104,2.23,2.19,9.1,12.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,72.98,38.8,30.818,42.2294,0.2221,1.0685,1.0,1.0186,1.0884,1.0,28.965,0.0,0.0,5.97,5.87,10.49,9.77,3.84,11.5,16.47,0.0,0.0,0.764,0.4012,0.9917,1.25,0.2625,1.087,3.2855,5.4253,8.7152,0.0,0.0,5.3759,3.55,9.552,5.94,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.92,3003.04,3068.35,59.94,1.0,59.94,72.98,72.98,0.0,51.26,1.0,51.26,72.98,72.98,0.0,67.88,39.642,29.2867,43.1458,0.2221,1.0685,1.0,1.0186,1.0884,1.0,27.7284,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3985,0.9914,1.25,0.2625,1.087,2.003,5.5828,8.7049,0.0,0.0,3.2722,3.678,9.544,3.62,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,73.46,38.8,31.0226,42.2294,0.2221,1.0685,1.0,1.0186,1.0884,1.0,29.209,0.0,0.0,5.97,5.87,10.49,9.77,3.84,11.5,16.47,0.0,0.0,0.764,0.4012,0.9917,1.25,0.2625,1.087,3.4901,5.4253,8.7152,0.0,0.0,5.7105,3.55,9.552,6.31,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,91.29,3048.73,3068.35,60.08,1.0,60.08,73.46,73.46,0.0,51.36,1.0,51.36,73.46,73.46,0.0,68.2,39.642,29.4251,43.1458,0.2221,1.0685,1.0,1.0186,1.0884,1.0,27.8902,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3985,0.9914,1.25,0.2625,1.087,2.1414,5.5828,8.7049,0.0,0.0,3.4983,3.678,9.544,3.87,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,73.05,38.8,30.849,42.2294,0.2221,1.0685,1.0,1.0186,1.0884,1.0,29.1242,0.0,0.0,5.97,5.87,10.49,9.77,3.84,11.5,16.47,0.0,0.0,0.764,0.4012,0.9917,1.25,0.2625,1.087,3.3165,5.4253,8.7152,0.0,0.0,5.4266,3.55,9.552,6.0,3.55,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.8,2998.77,3068.35,60.08,1.0,60.08,73.05,73.05,0.0,51.36,1.0,51.36,73.05,73.05,0.0,67.92,39.642,29.3066,43.1458,0.2221,1.0685,1.0,1.0186,1.0884,1.0,27.834,0.0,0.0,6.91,5.78,10.49,11.3,3.81,11.5,16.46,0.0,0.0,0.7652,0.3985,0.9914,1.25,0.2625,1.087,2.0229,5.5828,8.7049,0.0,0.0,3.3048,3.678,9.544,3.65,3.68,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,71.96,38.797,30.3441,42.1653,0.21832,1.0673,1.0,1.0183,1.0868,1.0,28.7542,0.0,0.0,5.970000000000001,5.87,10.49,9.3,3.84,11.5,16.47,0.0,0.0,1.1056,0.4012,0.9917,1.6932,0.2625,1.087,2.8117,5.4253,8.7152,0.0,0.0,4.5283,3.55,9.552,4.97,3.55,9.55,12.97,0.42,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,85.3,2844.39,3068.35,59.05,1.0,59.05,71.96,73.0,0.0,50.8,1.0,50.8,71.96,73.0,0.0,67.33,39.64,29.0065,43.0815,0.21832,1.0673,1.0,1.0183,1.0868,1.0,27.5982,0.0,0.0,6.91,5.78,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.132,0.3985,0.9914,1.6932,0.2625,1.087,1.7227999999999999,5.5828,8.7049,0.0,0.0,2.7545,3.678,9.544,3.0300000000000002,3.68,9.54,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.66,38.799,31.4263,42.0944,0.21377,1.0658,1.0,1.0179,1.0849,1.0,29.0758,0.0,0.0,5.97,5.87,10.49,9.51,3.84,11.5,16.47,0.0,0.0,0.8046,0.4012,0.9917,1.2821,0.2625,1.087,5.176,4.1431,8.7152,0.0,0.0,8.2476,2.711,9.552,8.25,2.71,9.55,12.97,0.42,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.43,3276.59,3068.35,64.39,1.0,64.39,74.66,74.66,0.0,52.75,1.0,52.75,74.66,74.66,0.0,67.63,39.641,29.0853,43.0079,0.21377,1.0658,1.0,1.0179,1.0849,1.0,27.4104,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3985,0.9914,1.2821,0.2625,1.087,3.1253,4.2592,8.7049,0.0,0.0,4.9797,2.806,9.544,4.98,2.81,9.54,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,76.41,38.799,32.1648,42.0944,0.21377,1.0658,1.0,1.0179,1.0849,1.0,29.5584,0.0,0.0,5.97,5.87,10.49,9.51,3.84,11.5,16.47,0.0,0.0,0.8046,0.4012,0.9917,1.2821,0.2625,1.087,5.1754,4.8812,8.7152,0.0,0.0,8.2466,3.194,9.552,8.25,3.19,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.5,3312.25,3068.35,64.88,1.0,64.88,76.41,76.41,0.0,53.2,1.0,53.2,76.41,76.41,0.0,69.44,39.641,29.8634,43.0079,0.21377,1.0658,1.0,1.0179,1.0849,1.0,27.924,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3985,0.9914,1.2821,0.2625,1.087,3.1247,5.0378,8.7049,0.0,0.0,4.9787,3.319,9.544,4.98,3.32,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.18,38.799,31.6479,42.0944,0.21377,1.0658,1.0,1.0179,1.0849,1.0,29.2208,0.0,0.0,5.97,5.87,10.49,9.51,3.84,11.5,16.47,0.0,0.0,0.8046,0.4012,0.9917,1.2821,0.2625,1.087,5.176,4.3647,8.7152,0.0,0.0,8.2476,2.856,9.552,8.25,2.86,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.74,3287.02,3068.35,64.88,1.0,64.88,75.18,75.18,0.0,53.2,1.0,53.2,75.18,75.18,0.0,68.16,39.641,29.3145,43.0079,0.21377,1.0658,1.0,1.0179,1.0849,1.0,27.5624,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3985,0.9914,1.2821,0.2625,1.087,3.1253,4.4884,8.7049,0.0,0.0,4.9797,2.957,9.544,4.98,2.96,9.54,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,84.93,38.799,35.7501,42.0944,0.21377,1.0658,1.0,1.0179,1.0849,1.0,31.9044,0.0,0.0,5.97,5.87,10.49,9.51,3.84,11.5,16.47,0.0,0.0,0.8046,0.4012,0.9917,1.2821,0.2625,1.087,5.1754,8.4665,8.7152,0.0,0.0,8.2466,5.54,9.552,8.25,5.54,9.55,12.97,0.42,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,104.6,3482.02,3068.35,68.14,1.0,68.14,84.93,84.93,0.0,56.14,1.0,56.14,84.93,84.93,0.0,78.11,39.641,33.5943,43.0079,0.21377,1.0658,1.0,1.0179,1.0849,1.0,30.382,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3985,0.9914,1.2821,0.2625,1.087,3.1247,8.7688,8.7049,0.0,0.0,4.9787,5.7771,9.544,4.98,5.78,9.54,13.0,0.0,0.0,1.2821,0.7468,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,76.03,38.799,32.0059,42.0944,0.21377,1.0658,1.0,1.0179,1.0849,1.0,29.4554,0.0,0.0,5.97,5.87,10.49,9.51,3.84,11.5,16.47,0.0,0.0,0.8046,0.4012,0.9917,1.2821,0.2625,1.087,5.1754,4.7223,8.7152,0.0,0.0,8.2466,3.09,9.552,8.25,3.09,9.55,12.97,0.42,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.27,3304.76,3068.35,64.52,1.0,64.52,76.03,76.03,0.0,52.87,1.0,52.87,76.03,76.03,0.0,69.05,39.641,29.6979,43.0079,0.21377,1.0658,1.0,1.0179,1.0849,1.0,27.816,0.0,0.0,6.91,5.78,10.49,11.02,3.81,11.5,16.46,0.0,0.0,0.8046,0.3985,0.9914,1.2821,0.2625,1.087,3.1247,4.8724,8.7049,0.0,0.0,4.9787,3.21,9.544,4.98,3.21,9.54,13.0,0.0,0.0,1.2821,0.2849,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-generator.xml,68.24,38.799,29.7411,42.0885,0.2134,1.0657,1.0,1.0179,1.0848,0.9657,33.7336,1.1572,0.0,5.97,5.87,10.49,9.55,3.82,11.5,16.47,0.0,0.0,0.8015,0.4033,0.9917,1.2821,0.2625,1.087,3.2648,4.3691,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.52,4857.8,2975.15,58.21,1.0,58.21,70.66,70.66,0.0,49.6,1.0,49.6,70.66,70.66,0.0,63.19,39.641,28.176,43.0018,0.2134,1.0657,1.0,1.0179,1.0848,0.9644,32.5332,1.1572,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8017,0.4006,0.9914,1.2821,0.2625,1.087,1.9722,4.5029,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,79.25,38.805,33.341,42.073,0.21203,1.0653,1.0,1.0178,1.0842,1.0,30.062,0.0,0.0,5.97,5.88,10.49,5.25,2.97,11.5,16.47,0.0,0.0,0.504,0.5192,0.9917,0.4432,0.2625,1.087,3.8498,7.3839,8.7152,0.0,0.0,3.386,3.734,9.552,3.39,3.73,9.55,12.97,0.42,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,76.0,2451.5,2975.15,66.2,1.0,66.2,79.25,79.25,0.0,56.88,1.0,56.88,79.25,79.25,0.0,74.83,39.648,32.1685,42.987,0.21203,1.0653,1.0,1.0178,1.0842,1.0,28.814,0.0,0.0,6.91,5.78,10.49,5.92,2.94,11.5,16.46,0.0,0.0,0.5179,0.5169,0.9914,0.4432,0.2625,1.087,2.7588,7.7088,8.7049,0.0,0.0,2.361,3.915,9.544,2.36,3.92,9.54,13.0,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,70.13,38.635,29.3888,41.906,0.21311,1.0656,1.0,1.0179,1.0847,1.0,24.2808,0.0,0.0,5.61,6.06,10.48,8.98,3.9,18.18,16.47,0.0,0.0,0.8013,0.4076,1.9548,1.2821,0.2625,3.3898,3.1141,4.4915,8.3882,0.0,0.0,4.9822,2.893,14.5468,5.37,2.89,14.54,12.97,0.42,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026,131.48,4250.52,2980.5,51.66,1.0,51.66,70.13,70.13,0.0,44.54,1.0,44.54,70.13,70.13,0.0,65.08,39.449,27.8464,42.789,0.21311,1.0656,1.0,1.0179,1.0847,1.0,23.1032,0.0,0.0,6.54,5.96,10.48,10.46,3.86,18.2,16.47,0.0,0.0,0.8016,0.4047,1.9528,1.2821,0.2625,3.3898,1.8543,4.6335,8.3586,0.0,0.0,2.9656,3.006,14.5088,3.2,3.01,14.5,13.0,0.0,0.0,1.087,0.2625,3.3898,1.0943,0.403,3.809,0.0,2.3754,2.026 +base-bldgtype-mf-unit-shared-laundry-room.xml,67.3,38.635,28.2038,41.906,0.21311,1.0656,1.0,1.0179,1.0847,1.0,23.4672,0.0,0.0,5.61,6.06,10.49,8.98,3.9,18.19,16.47,0.0,0.0,0.8013,0.4076,0.9774,1.2821,0.2625,1.6949,3.4069,4.2912,7.1167,0.0,0.0,5.4507,2.764,12.3416,5.88,2.76,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.43,3990.09,2980.45,51.66,1.0,51.66,67.3,67.3,0.0,44.54,1.0,44.54,67.3,67.3,0.0,62.15,39.449,26.5927,42.789,0.21311,1.0656,1.0,1.0179,1.0847,1.0,22.2402,0.0,0.0,6.54,5.96,10.49,10.46,3.86,18.21,16.47,0.0,0.0,0.8016,0.4047,0.9764,1.2821,0.2625,1.6949,2.0852,4.41,7.1055,0.0,0.0,3.3348,2.861,12.3336,3.6,2.86,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,73.36,39.365,31.3264,42.7024,0.2134,1.0657,1.0,1.0179,1.0848,1.0,29.388,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8015,0.4053,0.9917,1.2821,0.2625,1.087,0.479,5.1665,8.6979,2.3159,0.1371,0.7662,3.347,9.533,0.83,3.35,9.53,13.04,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,89.32,2926.13,3020.01,58.21,1.0,58.21,73.36,73.36,0.0,49.6,1.0,49.6,73.36,73.36,0.0,71.69,40.181,31.2461,43.5876,0.2134,1.0657,1.0,1.0179,1.0848,1.0,29.3628,0.0,0.0,6.8,5.86,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8017,0.4024,0.9915,1.2821,0.2625,1.087,0.5633,5.0108,8.6974,2.3124,0.1371,0.9007,3.269,9.535,0.97,3.27,9.54,13.03,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,69.15,39.365,29.527,42.7024,0.2134,1.0657,1.0,1.0179,1.0848,1.0,28.2194,0.0,0.0,5.85,5.97,10.49,9.36,3.87,11.5,16.47,0.59,0.0,0.8015,0.4053,0.9917,1.2821,0.2625,1.087,1.7055,4.6216,8.7079,0.0,0.0,2.7281,2.994,9.544,2.94,2.99,9.54,13.0,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,79.85,2615.8,3020.01,58.21,1.0,58.21,69.15,69.15,0.0,49.6,1.0,49.6,69.15,69.15,0.0,67.92,40.181,29.6044,43.5876,0.2134,1.0657,1.0,1.0179,1.0848,1.0,28.2978,0.0,0.0,6.8,5.86,10.49,10.87,3.83,11.5,16.46,0.57,0.0,0.8017,0.4024,0.9915,1.2821,0.2625,1.087,1.8441,4.5648,8.7066,0.0,0.0,2.9489,2.978,9.545,3.18,2.98,9.55,12.99,1.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,13.09,38.799,29.7411,42.0885,0.2134,1.0657,1.0,1.0179,1.0848,0.1853,28.9388,24.448,0.872,5.97,5.87,10.49,9.55,3.82,11.5,16.47,0.0,0.0,0.8015,0.4033,0.9917,1.2821,0.2625,1.087,3.2648,4.3691,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,33.48,1080.57,2975.15,58.21,1.0,58.21,70.66,70.66,0.0,49.6,1.0,49.6,70.66,70.66,0.0,62.0,39.641,28.176,43.0018,0.2134,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8017,0.4006,0.9914,1.2821,0.2625,1.087,1.9722,4.5029,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv.xml,9.11,38.799,29.7411,42.0885,0.2134,1.0657,1.0,1.0179,1.0848,0.1289,28.0668,24.448,0.0,5.97,5.87,10.49,9.55,3.82,11.5,16.47,0.0,0.0,0.8015,0.4033,0.9917,1.2821,0.2625,1.087,3.2648,4.3691,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,38.22,1233.58,2975.15,58.21,1.0,58.21,70.66,70.66,0.0,49.6,1.0,49.6,70.66,70.66,0.0,62.0,39.641,28.176,43.0018,0.2134,1.0657,1.0,1.0179,1.0848,0.9462,26.8664,1.4444,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8017,0.4006,0.9914,1.2821,0.2625,1.087,1.9722,4.5029,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,68.88,38.655,28.8803,41.9277,0.21311,1.0656,1.0,1.0179,1.0847,1.0,24.5598,0.0,0.0,5.42,6.27,10.49,8.67,4.0,18.18,16.48,0.0,0.0,0.8014,0.4114,0.9777,1.2821,0.2625,1.6949,3.3202,4.4178,7.7513,0.0,0.0,5.3115,2.819,13.4377,5.73,2.82,13.44,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,125.92,4063.56,2975.15,52.5,1.0,52.5,68.88,68.88,0.0,45.31,1.0,45.31,68.88,68.88,0.0,63.79,39.45,27.2943,42.79,0.21311,1.0656,1.0,1.0179,1.0847,1.0,23.3522,0.0,0.0,6.34,6.15,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8016,0.4084,0.9768,1.2821,0.2625,1.6949,2.0154,4.5455,7.7393,0.0,0.0,3.2235,2.922,13.4287,3.48,2.92,13.43,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-water-heater.xml,67.37,38.655,28.248,41.9277,0.21311,1.0656,1.0,1.0179,1.0847,1.0,23.4638,0.0,0.0,5.42,6.27,10.49,8.67,4.0,18.18,16.48,0.0,0.0,0.8014,0.4114,0.9777,1.2821,0.2625,1.6949,3.3202,4.4178,7.1191,0.0,0.0,5.3115,2.819,12.3416,5.73,2.82,12.34,12.97,0.42,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,123.09,3972.02,2975.15,51.62,1.0,51.62,67.37,67.37,0.0,44.58,1.0,44.58,67.37,67.37,0.0,62.31,39.45,26.6626,42.79,0.21311,1.0656,1.0,1.0179,1.0847,1.0,22.2562,0.0,0.0,6.34,6.15,10.49,10.14,3.96,18.2,16.47,0.0,0.0,0.8016,0.4084,0.9768,1.2821,0.2625,1.6949,2.0154,4.5455,7.1076,0.0,0.0,3.2235,2.922,12.3326,3.48,2.92,12.33,12.99,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit.xml,70.66,38.799,29.7411,42.0885,0.2134,1.0657,1.0,1.0179,1.0848,1.0,28.0668,0.0,0.0,5.97,5.87,10.49,9.55,3.82,11.5,16.47,0.0,0.0,0.8015,0.4033,0.9917,1.2821,0.2625,1.087,3.2648,4.3691,8.7152,0.0,0.0,5.2225,2.844,9.552,5.63,2.84,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,90.13,2908.96,2975.15,58.21,1.0,58.21,70.66,70.66,0.0,49.6,1.0,49.6,70.66,70.66,0.0,65.52,39.641,28.176,43.0018,0.2134,1.0657,1.0,1.0179,1.0848,1.0,26.8664,0.0,0.0,6.91,5.78,10.49,11.06,3.79,11.5,16.46,0.0,0.0,0.8017,0.4006,0.9914,1.2821,0.2625,1.087,1.9722,4.5029,8.7049,0.0,0.0,3.1539,2.951,9.544,3.4,2.95,9.54,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-sfa-unit.xml,78.23,56.762,46.1164,58.9495,0.22161,1.0196,1.0,1.0186,1.0385,1.0,40.67,0.0,0.0,18.68,5.77,10.49,29.78,3.85,11.52,21.83,0.0,0.0,0.8042,0.3929,0.9898,1.2821,0.2625,1.087,15.6251,4.7982,8.4611,0.0,0.0,24.9083,3.206,9.292,26.85,3.21,9.29,17.02,0.21,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.52,6349.63,4230.63,56.44,1.0,56.44,78.23,78.23,0.0,50.87,1.0,50.87,78.23,78.23,0.0,72.7,59.408,44.8559,61.6975,0.22161,1.0196,1.0,1.0186,1.0385,1.0,39.7276,0.0,0.0,21.4,5.7,10.49,34.1,3.83,11.52,21.82,0.0,0.0,0.8045,0.3912,0.9896,1.2821,0.2625,1.087,14.5788,4.7955,8.4596,0.0,0.0,23.2331,3.218,9.292,25.05,3.22,9.29,17.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-combi-tankless.xml,64.47,76.242,49.6922,77.0795,0.23062,0.9918,1.0,1.0194,1.011,1.0,43.3958,0.0,0.0,29.83,8.69,10.49,48.84,5.37,18.31,27.23,0.0,0.0,0.7635,0.4254,0.9711,1.25,0.2625,1.6949,18.4288,7.5842,2.5552,0.0,0.0,30.1716,4.681,4.4598,33.36,4.68,10.29,21.12,0.01,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,147.38,8511.81,5712.65,55.39,1.0,55.39,64.47,64.47,0.0,49.89,1.0,49.89,64.47,64.47,0.0,61.24,80.244,49.6852,81.1255,0.23062,0.9918,1.0,1.0194,1.011,1.0,43.3724,0.0,0.0,33.91,8.63,10.49,55.35,5.35,18.32,27.22,0.0,0.0,0.7657,0.4237,0.9706,1.25,0.2625,1.6949,18.4589,7.5545,2.5539,0.0,0.0,30.1345,4.681,4.4598,33.32,4.68,10.29,21.12,0.0,0.0,1.087,0.2625,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-desuperheater.xml,83.39,76.703,64.638,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,52.3242,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.8601,8.3193,6.3347,0.0,0.0,45.9606,5.171,6.958,45.96,5.17,6.96,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.72,9393.71,5712.65,72.13,1.0,72.13,83.39,83.39,0.0,62.7,1.0,62.7,83.39,83.39,0.0,79.13,80.733,64.5619,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,52.2932,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.8216,8.2887,6.3336,0.0,0.0,45.8996,5.171,6.958,45.9,5.17,6.96,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-dwhr.xml,75.36,76.703,58.4166,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.2284,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,6.1444,0.0,0.0,36.9284,4.92,6.749,39.81,4.92,6.75,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.65,8467.2,5561.74,56.73,1.0,56.73,75.36,75.36,0.0,51.06,1.0,51.06,75.36,75.36,0.0,71.5,80.733,58.3367,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.2014,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,6.1433,0.0,0.0,36.8811,4.92,6.749,39.76,4.92,6.75,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-indirect-standbyloss.xml,68.27,76.189,52.5718,77.0082,0.22575,0.9919,1.0,1.019,1.0108,1.0,44.5002,0.0,0.0,29.75,8.72,10.49,48.71,5.38,18.65,27.23,0.0,0.0,0.7634,0.4256,0.9697,1.25,0.2625,1.7241,17.4923,8.0334,5.9191,0.0,0.0,28.6413,4.955,10.5237,31.67,4.96,14.07,21.12,0.01,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,152.65,8839.85,5729.18,55.39,1.0,55.39,68.27,68.27,0.0,49.89,1.0,49.89,68.27,68.27,0.0,64.85,80.191,52.5593,81.0532,0.22575,0.9919,1.0,1.019,1.0108,1.0,44.4768,0.0,0.0,33.82,8.66,10.49,55.22,5.36,18.66,27.22,0.0,0.0,0.7656,0.424,0.9692,1.25,0.2625,1.7241,17.5194,8.003,5.9159,0.0,0.0,28.6033,4.955,10.5237,31.63,4.96,14.07,21.12,0.0,0.0,1.087,0.2625,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-gas.xml,78.16,76.19,60.1677,76.9755,0.21652,0.9923,1.0,1.0182,1.0103,1.0,47.9358,0.0,0.0,29.75,8.73,10.49,47.38,5.35,18.65,27.23,0.0,0.0,0.8049,0.4282,0.9697,1.2821,0.2625,1.7241,22.685,8.2146,8.1421,0.0,0.0,36.1325,5.037,14.4761,38.95,5.04,14.23,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,175.73,9904.51,5578.79,54.45,1.0,54.45,78.16,78.16,0.0,48.58,1.0,48.58,78.16,78.16,0.0,74.16,80.191,60.0835,81.0178,0.21652,0.9923,1.0,1.0182,1.0103,1.0,47.9102,0.0,0.0,33.82,8.66,10.49,53.86,5.34,18.66,27.22,0.0,0.0,0.805,0.4257,0.9692,1.2821,0.2625,1.7241,22.6584,8.1674,8.1377,0.0,0.0,36.0852,5.037,14.4761,38.9,5.04,14.23,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-hpwh.xml,74.09,76.4,57.1763,77.1701,0.21173,0.9924,1.0,1.0178,1.0101,1.0,47.2328,0.0,0.0,30.08,8.61,10.49,47.91,5.29,12.41,27.23,0.0,0.0,0.8049,0.4268,0.9824,1.2821,0.2625,1.1628,25.9459,7.0557,3.0566,0.0,0.0,41.3271,4.34,3.618,44.55,4.34,3.38,21.11,0.01,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0,156.01,8848.57,5615.24,57.05,1.0,57.05,74.09,74.09,0.0,51.35,1.0,51.35,74.09,74.09,0.0,70.3,80.413,57.1038,81.2236,0.21173,0.9924,1.0,1.0178,1.0101,1.0,47.2048,0.0,0.0,34.16,8.54,10.49,54.41,5.28,12.42,27.22,0.0,0.0,0.805,0.4243,0.9821,1.2821,0.2625,1.1628,25.9213,7.0149,3.0557,0.0,0.0,41.2807,4.34,3.618,44.5,4.34,3.38,21.11,0.0,0.0,1.087,0.2625,0.4348,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-jacket-indirect.xml,67.19,76.189,51.7431,77.0082,0.22575,0.9919,1.0,1.019,1.0108,1.0,44.2276,0.0,0.0,29.75,8.72,10.49,48.71,5.38,18.65,27.23,0.0,0.0,0.7634,0.4256,0.9697,1.25,0.2625,1.7241,17.7624,7.907,4.9477,0.0,0.0,29.0836,4.877,8.7968,32.16,4.88,13.09,21.12,0.01,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013,151.32,8762.32,5729.18,55.39,1.0,55.39,67.19,67.19,0.0,49.89,1.0,49.89,67.19,67.19,0.0,63.82,80.191,51.7313,81.0532,0.22575,0.9919,1.0,1.019,1.0108,1.0,44.2046,0.0,0.0,33.82,8.66,10.49,55.22,5.36,18.66,27.22,0.0,0.0,0.7656,0.424,0.9692,1.25,0.2625,1.7241,17.7909,7.8754,4.9451,0.0,0.0,29.0465,4.876,8.7968,32.12,4.88,13.09,21.12,0.0,0.0,1.087,0.2625,1.2695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-low-flow-fixtures.xml,77.77,76.703,60.282,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.2784,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.0098,0.0,0.0,36.9284,4.92,8.798,39.81,4.92,8.8,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.57,8631.45,5561.74,56.73,1.0,56.73,77.77,77.77,0.0,51.06,1.0,51.06,77.77,77.77,0.0,73.79,80.733,60.2018,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.2514,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.0085,0.0,0.0,36.8811,4.92,8.798,39.76,4.92,8.8,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-multiple.xml,67.42,76.703,52.281,77.5474,0.23112,0.9918,1.0,1.0194,1.011,1.0,42.6222,0.0,0.0,30.56,8.43,10.5,49.99,5.24,11.5,27.23,0.0,0.0,0.7641,0.4224,5.9382,1.25,0.2625,6.522,17.8815,7.7996,5.4738,0.0,0.0,29.2509,4.848,6.0120000000000005,32.34,4.85,6.0200000000000005,21.12,0.01,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,131.86,7615.13,5712.47,61.75,1.0,61.75,67.42,67.42,0.0,56.11,1.0,56.11,67.42,67.42,0.0,64.04,80.733,52.2734,81.6218,0.23112,0.9918,1.0,1.0194,1.011,1.0,42.5988,0.0,0.0,34.66,8.36,10.5,56.54,5.22,11.5,27.22,0.0,0.0,0.7663,0.4208,5.9364,1.25,0.2625,6.522,17.9099,7.771,5.4725,0.0,0.0,29.2147,4.848,6.0120000000000005,32.3,4.85,6.0200000000000005,21.12,0.0,0.0,1.087,0.2625,6.9094,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 +base-dhw-none.xml,82.33,76.241,63.4321,77.0448,0.22138,0.9921,1.0,1.0186,1.0105,1.0,50.5308,0.0,0.0,29.83,8.69,10.49,47.52,5.34,18.31,27.23,0.0,0.0,0.8049,0.4278,0.9711,1.2821,0.2625,1.6949,22.3808,8.3372,10.4851,0.0,0.0,35.6483,5.116,18.3009,38.43,5.12,18.3,22.22,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,187.17,10519.77,5561.74,61.64,1.0,61.64,82.33,82.33,0.0,56.57,1.0,56.57,82.33,82.33,0.0,78.12,80.245,63.3465,81.091,0.22138,0.9921,1.0,1.0186,1.0105,1.0,50.5038,0.0,0.0,33.91,8.63,10.49,54.0,5.33,18.32,27.22,0.0,0.0,0.805,0.4253,0.9706,1.2821,0.2625,1.6949,22.3551,8.2885,10.4799,0.0,0.0,35.6019,5.116,18.3009,38.38,5.12,18.3,22.22,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-recirc-demand.xml,77.97,76.703,60.4395,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4504,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.1673,0.0,0.0,36.9284,4.92,8.971,39.81,4.92,8.97,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.82,8645.28,5561.74,56.73,1.0,56.73,77.97,77.97,0.0,51.06,1.0,51.06,77.97,77.97,0.0,73.98,80.733,60.3593,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4234,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.1659,0.0,0.0,36.8811,4.92,8.971,39.76,4.92,8.97,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-fraction.xml,71.29,76.703,55.2554,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,45.7176,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.3568,7.8995,2.8751,0.0,0.0,37.2011,4.881,3.158,40.1,4.88,3.16,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.23,8218.7,5561.74,56.73,1.0,56.73,71.29,71.29,0.0,51.06,1.0,51.06,71.29,71.29,0.0,67.63,80.733,55.177,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,45.692,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.3304,7.854,2.8746,0.0,0.0,37.1547,4.881,3.158,40.05,4.88,3.16,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-indirect-flat-plate.xml,69.47,76.703,53.8508,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,44.188,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.9439,8.2086,1.5723,0.0,0.0,36.5434,5.072,1.727,39.39,5.07,1.73,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.69,8019.69,5561.74,56.73,1.0,56.73,69.47,69.47,0.0,51.06,1.0,51.06,69.47,69.47,0.0,65.91,80.733,53.7709,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,44.161,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,22.9168,8.1629,1.5711,0.0,0.0,36.4961,5.073,1.726,39.34,5.07,1.73,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-elec-uef.xml,78.04,76.75,60.5344,77.5655,0.22311,0.992,1.0,1.0187,1.0106,1.0,51.556,0.0,0.0,30.64,8.4,10.49,48.79,5.19,11.38,27.23,0.0,0.0,0.8049,0.4246,0.9908,1.2821,0.2625,1.0753,23.1517,7.9699,8.2878,0.0,0.0,36.8746,4.928,8.9942,39.75,4.93,9.09,21.12,0.01,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0,154.08,8647.38,5553.17,56.98,1.0,56.98,78.04,78.04,0.0,51.26,1.0,51.26,78.04,78.04,0.0,74.05,80.783,60.4554,81.6413,0.22311,0.992,1.0,1.0187,1.0106,1.0,51.5294,0.0,0.0,34.74,8.34,10.49,55.32,5.19,11.38,27.22,0.0,0.0,0.805,0.4221,0.9906,1.2821,0.2625,1.0753,23.1262,7.9238,8.2863,0.0,0.0,36.8291,4.928,8.9942,39.7,4.93,9.09,21.12,0.0,0.0,1.087,0.2625,1.0523,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-gas-uef.xml,78.0,76.34,60.2003,77.1785,0.2306,0.9918,1.0,1.0194,1.011,1.0,48.107,0.0,0.0,29.99,8.64,10.49,47.77,5.31,17.66,27.23,0.0,0.0,0.8049,0.4272,0.9737,1.2821,0.2625,1.6393,22.6087,8.226,8.2396,0.0,0.0,36.01,5.055,13.8725,38.82,5.06,14.75,21.12,0.01,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013,177.46,9962.78,5553.17,54.45,1.0,54.45,78.0,78.0,0.0,48.58,1.0,48.58,78.0,78.0,0.0,74.0,80.35,60.1146,81.2325,0.2306,0.9918,1.0,1.0194,1.011,1.0,48.08,0.0,0.0,34.07,8.57,10.49,54.26,5.3,17.67,27.22,0.0,0.0,0.805,0.4246,0.9733,1.2821,0.2625,1.6393,22.5833,8.1755,8.2359,0.0,0.0,35.9646,5.055,13.8725,38.77,5.06,14.75,21.12,0.0,0.0,1.087,0.2625,1.6502,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-heat-pump-uef.xml,73.21,76.606,56.6701,77.403,0.21848,0.9922,1.0,1.0183,1.0104,1.0,46.5432,0.0,0.0,30.41,8.48,10.49,48.43,5.24,11.81,27.23,0.0,0.0,0.8049,0.4255,0.9872,1.2821,0.2625,1.1111,26.4714,6.8958,2.1869,0.0,0.0,42.1629,4.255,2.4615,45.45,4.26,2.41,21.11,0.01,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0,157.82,8895.96,5578.79,56.79,1.0,56.79,73.21,73.21,0.0,51.12,1.0,51.12,73.21,73.21,0.0,69.47,80.63,56.5972,81.4689,0.21848,0.9922,1.0,1.0183,1.0104,1.0,46.5158,0.0,0.0,34.5,8.42,10.49,54.95,5.23,11.81,27.22,0.0,0.0,0.805,0.423,0.987,1.2821,0.2625,1.1111,26.4446,6.8561,2.1865,0.0,0.0,42.1147,4.255,2.4615,45.4,4.26,2.41,21.11,0.0,0.0,1.087,0.2625,0.2543,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-oil.xml,78.78,76.19,60.6403,76.9755,0.21652,0.9923,1.0,1.0182,1.0103,1.0,48.2558,0.0,0.0,29.75,8.73,10.49,47.38,5.35,18.65,27.23,0.0,0.0,0.8049,0.4282,0.9697,1.2821,0.2625,1.7241,22.4334,8.3125,8.7675,0.0,0.0,35.7317,5.097,15.588,38.52,5.1,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,190.76,10751.62,5578.79,54.45,1.0,54.45,78.78,78.78,0.0,48.58,1.0,48.58,78.78,78.78,0.0,74.74,80.191,60.5558,81.0178,0.21652,0.9923,1.0,1.0182,1.0103,1.0,48.2292,0.0,0.0,33.82,8.66,10.49,53.86,5.34,18.66,27.22,0.0,0.0,0.805,0.4257,0.9692,1.2821,0.2625,1.7241,22.4074,8.2647,8.7628,0.0,0.0,35.6854,5.097,15.588,38.47,5.1,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-wood.xml,78.78,76.19,60.6403,76.9755,0.21652,0.9923,1.0,1.0182,1.0103,1.0,48.2558,0.0,0.0,29.75,8.73,10.49,47.38,5.35,18.65,27.23,0.0,0.0,0.8049,0.4282,0.9697,1.2821,0.2625,1.7241,22.4334,8.3125,8.7675,0.0,0.0,35.7317,5.097,15.588,38.52,5.1,15.32,21.12,0.01,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,54.45,1.0,54.45,78.78,78.78,0.0,48.58,1.0,48.58,78.78,78.78,0.0,74.74,80.191,60.5558,81.0178,0.21652,0.9923,1.0,1.0182,1.0103,1.0,48.2292,0.0,0.0,33.82,8.66,10.49,53.86,5.34,18.66,27.22,0.0,0.0,0.805,0.4257,0.9692,1.2821,0.2625,1.7241,22.4074,8.2647,8.7628,0.0,0.0,35.6854,5.097,15.588,38.47,5.1,15.32,21.12,0.0,0.0,1.087,0.2625,1.6949,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-electric-uef.xml,78.41,76.703,60.7798,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.7676,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.4488,7.8639,8.3431,0.0,0.0,37.3477,4.859,9.164,40.26,4.86,9.16,21.12,0.01,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0,155.15,8720.22,5561.74,56.87,1.0,56.87,78.41,78.41,0.0,51.19,1.0,51.19,78.41,78.41,0.0,74.4,80.733,60.7012,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.742,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.423,7.8186,8.3416,0.0,0.0,37.3022,4.859,9.164,40.21,4.86,9.16,21.12,0.0,0.0,1.087,0.2625,1.0855,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tankless-gas-uef.xml,71.81,76.241,55.3234,77.0448,0.22138,0.9921,1.0,1.0186,1.0105,1.0,46.4664,0.0,0.0,29.83,8.69,10.49,47.52,5.34,18.31,27.23,0.0,0.0,0.8049,0.4278,0.9711,1.2821,0.2625,1.6949,23.4477,7.9184,2.8333,0.0,0.0,37.3477,4.859,4.9453,40.26,4.86,9.66,21.12,0.01,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013,167.41,9408.95,5561.74,54.45,1.0,54.45,71.81,71.81,0.0,48.58,1.0,48.58,71.81,71.81,0.0,68.13,80.245,55.2448,81.091,0.22138,0.9921,1.0,1.0186,1.0105,1.0,46.4404,0.0,0.0,33.91,8.63,10.49,54.0,5.33,18.32,27.22,0.0,0.0,0.805,0.4253,0.9706,1.2821,0.2625,1.6949,23.4228,7.8721,2.8319,0.0,0.0,37.3022,4.859,4.9453,40.21,4.86,9.66,21.12,0.0,0.0,1.087,0.2625,1.1439,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-propane.xml,74.1,76.241,57.0918,77.0448,0.22138,0.9921,1.0,1.0186,1.0105,1.0,47.0796,0.0,0.0,29.83,8.69,10.49,47.52,5.34,18.31,27.23,0.0,0.0,0.8049,0.4278,0.9711,1.2821,0.2625,1.6949,23.4477,7.9184,4.6018,0.0,0.0,37.3477,4.859,8.032,40.26,4.86,11.19,21.12,0.01,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,177.5,9976.14,5561.74,54.45,1.0,54.45,74.1,74.1,0.0,48.58,1.0,48.58,74.1,74.1,0.0,70.31,80.245,57.0124,81.091,0.22138,0.9921,1.0,1.0186,1.0105,1.0,47.054,0.0,0.0,33.91,8.63,10.49,54.0,5.33,18.32,27.22,0.0,0.0,0.805,0.4253,0.9706,1.2821,0.2625,1.6949,23.4228,7.8721,4.5995,0.0,0.0,37.3022,4.859,8.032,40.21,4.86,11.19,21.12,0.0,0.0,1.087,0.2625,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-enclosure-2stories-garage.xml,77.08,92.002,69.4775,90.1419,0.22161,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,40.03,10.62,10.49,63.76,6.15,11.52,30.87,0.0,0.0,0.805,0.4533,0.9896,1.2821,0.2625,1.087,25.3056,12.2252,8.1737,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,9554.38,6612.98,56.81,1.0,56.81,77.08,77.08,0.0,51.6,1.0,51.6,77.08,77.08,0.0,70.54,100.547,69.4932,98.5141,0.22161,0.9798,1.0,1.0,0.9798,1.0,57.7014,0.0,0.0,48.62,10.58,10.49,77.43,6.12,11.52,30.86,0.0,0.0,0.805,0.4539,0.9892,1.2821,0.2625,1.087,25.3067,12.2426,8.1709,0.0,0.0,40.304,7.0811,8.978,43.45,7.08,8.98,23.77,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-2stories.xml,76.92,104.684,77.734,101.0581,0.22161,0.9654,1.0,1.0,0.9654,1.0,64.6744,0.0,0.0,46.45,12.42,10.49,73.98,7.19,11.52,35.33,0.0,0.0,0.8049,0.4536,0.9896,1.2821,0.2625,1.087,30.5553,11.8398,8.0699,0.0,0.0,48.6664,6.8531,8.864,52.46,6.85,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.68,11129.16,7501.69,56.53,1.0,56.53,76.92,76.92,0.0,51.21,1.0,51.21,76.92,76.92,0.0,70.53,114.291,77.8189,110.3323,0.22161,0.9654,1.0,1.0,0.9654,1.0,64.6744,0.0,0.0,56.1,12.38,10.49,89.35,7.11,11.52,35.32,0.0,0.0,0.805,0.4568,0.9893,1.2821,0.2625,1.087,30.5571,11.9249,8.0678,0.0,0.0,48.6664,6.8531,8.864,52.46,6.85,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-1.xml,82.71,69.211,56.0784,67.8012,0.2218,0.9921,0.9694,1.0186,0.9796,1.0,47.0172,0.0,0.0,29.82,7.9,6.15,47.49,4.92,7.18,25.34,0.0,0.0,0.805,0.4214,0.931,1.2821,0.2625,1.087,24.1973,7.5032,4.6918,0.0,0.0,38.5359,4.675,5.478,41.54,4.68,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,173.44,8482.18,4992.26,58.3,1.0,58.3,82.71,82.71,0.0,53.08,1.0,53.08,82.71,82.71,0.0,78.26,73.244,56.1505,71.7521,0.2218,0.9921,0.9694,1.0186,0.9796,1.0,47.0172,0.0,0.0,33.92,7.84,6.15,54.01,4.84,7.19,25.33,0.0,0.0,0.805,0.4254,0.9307,1.2821,0.2625,1.087,24.198,7.5759,4.6905,0.0,0.0,38.5359,4.675,5.478,41.54,4.68,5.48,19.69,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-2.xml,80.24,73.019,58.3012,72.6611,0.22171,0.9921,0.9847,1.0186,0.9951,1.0,49.2792,0.0,0.0,30.19,8.16,8.39,48.08,5.06,9.42,26.28,0.0,0.0,0.805,0.4234,0.9679,1.2821,0.2625,1.087,23.6747,7.7363,6.4882,0.0,0.0,37.7039,4.797,7.286,40.65,4.8,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.94,8564.13,5281.93,57.51,1.0,57.51,80.24,80.24,0.0,52.02,1.0,52.02,80.24,80.24,0.0,76.08,77.053,58.3342,76.6753,0.22171,0.9921,0.9847,1.0186,0.9951,1.0,49.2792,0.0,0.0,34.29,8.1,8.39,54.61,5.0,9.42,26.28,0.0,0.0,0.805,0.4252,0.9677,1.2821,0.2625,1.087,23.6753,7.77,6.4868,0.0,0.0,37.7039,4.797,7.286,40.65,4.8,7.29,20.4,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-4.xml,77.02,80.324,63.4703,82.4121,0.22153,0.9921,1.0153,1.0186,1.026,1.0,54.3268,0.0,0.0,30.93,8.7,12.53,49.28,5.35,13.56,28.17,0.0,0.0,0.8048,0.4266,1.0042,1.2821,0.2625,1.087,23.388,8.1897,9.8985,0.0,0.0,37.2577,5.04,10.714,40.17,5.04,10.71,21.83,0.16,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.9,8916.39,5836.28,55.93,1.0,55.93,77.02,77.02,0.0,50.1,1.0,50.1,77.02,77.02,0.0,72.27,84.353,62.5456,86.5458,0.22153,0.9921,1.0153,1.0186,1.026,1.0,53.632,0.0,0.0,35.03,8.63,12.53,55.79,5.33,13.56,28.17,0.0,0.0,0.805,0.4252,1.0041,1.2821,0.2625,1.087,22.6458,8.1707,9.8971,0.0,0.0,36.0657,5.045,10.714,38.88,5.05,10.71,21.83,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-5.xml,76.03,83.907,66.4357,87.3826,0.22142,0.9921,1.0306,1.0186,1.0414,1.0,57.1246,0.0,0.0,31.31,8.96,14.53,49.88,5.49,15.56,29.11,0.0,0.0,0.8047,0.4284,1.0148,1.2821,0.2625,1.087,23.5889,8.4181,11.5637,0.0,0.0,37.5833,5.159,12.386,40.52,5.16,12.39,22.55,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.47,9181.68,6102.43,55.14,1.0,55.14,76.03,76.03,0.0,49.17,1.0,49.17,76.03,76.03,0.0,70.61,87.935,64.6593,91.5775,0.22142,0.9921,1.0306,1.0186,1.0414,1.0,55.7798,0.0,0.0,35.41,8.9,14.53,56.4,5.47,15.56,29.11,0.0,0.0,0.8049,0.427,1.0147,1.2821,0.2625,1.087,22.1396,8.4114,11.5612,0.0,0.0,35.2652,5.172,12.385,38.02,5.17,12.39,22.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-ceilingtypes.xml,88.23,76.703,67.9273,76.9897,0.07876,0.9972,1.0,1.0066,1.0037,1.0,56.515,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,30.5309,8.0646,8.2129,0.0,0.0,48.6275,4.983,9.021,52.42,4.98,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.45,10520.07,5561.74,56.62,1.0,56.62,88.23,88.23,0.0,50.95,1.0,50.95,88.23,88.23,0.0,83.73,80.733,67.8496,81.0348,0.07876,0.9972,1.0,1.0066,1.0037,1.0,56.4884,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,30.5071,8.0181,8.2114,0.0,0.0,48.5839,4.983,9.021,52.38,4.98,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-floortypes.xml,99.42,56.882,59.8806,60.2302,0.22161,1.0395,1.0,1.0186,1.0589,1.0,49.6724,0.0,0.0,20.16,7.11,10.49,32.18,4.51,11.52,19.13,0.0,0.0,0.8031,0.4137,0.9898,1.2821,0.2625,1.087,29.1301,7.0872,8.3944,0.0,0.0,46.5032,4.498,9.218,50.13,4.5,9.22,14.95,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,218.44,9654.13,4173.93,54.97,1.0,54.97,99.42,99.42,0.0,49.58,1.0,49.58,99.42,99.42,0.0,93.74,58.454,58.0192,61.8947,0.22161,1.0395,1.0,1.0186,1.0589,1.0,48.2548,0.0,0.0,21.77,7.07,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8032,0.4129,0.9898,1.2821,0.2625,1.087,27.6242,7.0473,8.3937,0.0,0.0,44.0923,4.481,9.218,47.53,4.48,9.22,14.95,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-garage.xml,77.56,75.019,58.7984,75.8107,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.7922,0.0,0.0,30.44,6.97,10.49,48.48,4.5,11.73,27.12,0.0,0.0,0.805,0.4069,0.9721,1.2821,0.2625,1.087,24.5891,5.1136,8.1457,0.0,0.0,39.1621,3.299,9.108,42.22,3.3,9.11,20.94,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.74,8875.6,5498.42,57.35,1.0,57.35,77.56,77.56,0.0,51.5,1.0,51.5,77.56,77.56,0.0,73.47,79.118,58.7417,79.953,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.7598,0.0,0.0,34.58,6.93,10.49,55.07,4.49,11.73,27.12,0.0,0.0,0.805,0.4052,0.9721,1.2821,0.2625,1.087,24.5601,5.0919,8.1457,0.0,0.0,39.1129,3.299,9.108,42.17,3.3,9.11,20.94,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ach-house-pressure.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm-house-pressure.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm50.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ela.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-ach.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-cfm.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-overhangs.xml,77.89,76.703,60.3728,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4478,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.3795,7.6583,8.212,0.0,0.0,37.2373,4.732,9.02,40.14,4.73,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.52,8684.54,5561.74,56.73,1.0,56.73,77.89,77.89,0.0,51.06,1.0,51.06,77.89,77.89,0.0,73.9,80.733,60.2943,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4208,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.3525,7.6142,8.2105,0.0,0.0,37.19,4.732,9.02,40.09,4.73,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-skylights.xml,78.59,76.703,60.86,77.441,0.20213,0.9928,1.0,1.017,1.0096,1.0,51.5446,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.2933,9.2266,8.2101,0.0,0.0,35.5073,5.7011,9.018,38.28,5.7,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.19,8489.93,5561.74,56.73,1.0,56.73,78.59,78.59,0.0,51.06,1.0,51.06,78.59,78.59,0.0,74.57,80.733,60.7781,81.5098,0.20213,0.9928,1.0,1.017,1.0096,1.0,51.5226,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,22.2703,9.1751,8.2087,0.0,0.0,35.4664,5.7021,9.018,38.23,5.7,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-walltypes.xml,91.83,76.658,70.2619,76.5097,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.8434,0.0,0.0,30.53,8.42,10.49,48.62,5.2,11.52,27.23,0.0,0.0,0.8049,0.4248,0.9896,1.2821,0.2625,1.087,34.465,6.4692,8.2147,0.0,0.0,54.8944,3.998,9.023,59.18,4.0,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,205.42,11397.95,5559.23,56.85,1.0,56.85,91.83,91.83,0.0,51.17,1.0,51.17,91.83,91.83,0.0,87.2,80.688,70.2246,80.5319,-0.04088,1.0015,1.0,0.9966,0.9981,1.0,58.8156,0.0,0.0,34.62,8.36,10.49,55.14,5.17,11.52,27.22,0.0,0.0,0.805,0.4246,0.9894,1.2821,0.2625,1.087,34.4388,6.4656,8.2133,0.0,0.0,54.8453,3.998,9.023,59.13,4.0,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-ambient.xml,82.62,56.882,49.7651,60.2302,0.22161,1.0395,1.0,1.0186,1.0589,1.0,42.2514,0.0,0.0,20.16,7.11,10.49,32.18,4.51,11.52,19.13,0.0,0.0,0.8031,0.4137,0.9898,1.2821,0.2625,1.087,17.0526,9.0252,8.3853,0.0,0.0,27.2227,5.7281,9.208,29.35,5.73,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.93,6714.94,4173.93,55.15,1.0,55.15,82.62,82.62,0.0,49.78,1.0,49.78,82.62,82.62,0.0,77.47,58.454,47.9502,61.8947,0.22161,1.0395,1.0,1.0186,1.0589,1.0,40.8956,0.0,0.0,21.77,7.07,10.49,34.75,4.5,11.52,19.12,0.0,0.0,0.8032,0.4129,0.9898,1.2821,0.2625,1.087,15.546,9.0305,8.3837,0.0,0.0,24.8137,5.7421,9.207,26.75,5.74,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-basement-garage.xml,77.46,68.038,54.5326,70.4031,0.22161,1.0159,1.0,1.0186,1.0348,1.0,46.3804,0.0,0.0,27.7,7.09,10.49,44.11,4.42,11.52,22.76,0.0,0.0,0.8051,0.4215,0.9895,1.2821,0.2625,1.087,20.2176,8.0827,8.4243,0.0,0.0,32.1966,5.034,9.254,34.71,5.03,9.25,17.62,0.19,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.17,7659.12,4928.96,55.58,1.0,55.58,77.46,77.46,0.0,50.38,1.0,50.38,77.46,77.46,0.0,72.89,70.897,53.4701,73.3615,0.22161,1.0159,1.0,1.0186,1.0348,1.0,45.5592,0.0,0.0,30.61,7.04,10.49,48.74,4.38,11.52,22.76,0.0,0.0,0.8051,0.4223,0.9893,1.2821,0.2625,1.087,19.3227,8.1046,8.4228,0.0,0.0,30.7699,5.039,9.254,33.17,5.04,9.25,17.62,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,77.52,76.703,60.0861,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.1678,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.4197,8.3284,8.211,0.0,0.0,35.7086,5.146,9.019,38.5,5.15,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.79,8475.09,5561.74,56.73,1.0,56.73,77.52,77.52,0.0,51.06,1.0,51.06,77.52,77.52,0.0,73.55,80.733,60.0048,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.1412,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,22.3938,8.2804,8.2096,0.0,0.0,35.6631,5.146,9.019,38.45,5.15,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,78.07,74.911,59.0999,75.7016,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.7022,0.0,0.0,29.13,8.07,10.49,46.4,5.03,11.52,27.23,0.0,0.0,0.8049,0.4207,0.9896,1.2821,0.2625,1.087,22.5114,7.2546,8.212,0.0,0.0,35.8551,4.527,9.02,38.65,4.53,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.03,8444.95,5460.85,57.66,1.0,57.66,78.07,78.07,0.0,51.83,1.0,51.83,78.07,78.07,0.0,73.99,78.936,59.0235,79.769,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.6756,0.0,0.0,33.22,8.01,10.49,52.91,5.03,11.52,27.22,0.0,0.0,0.805,0.4182,0.9894,1.2821,0.2625,1.087,22.4852,7.2117,8.2105,0.0,0.0,35.8087,4.527,9.02,38.6,4.53,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-multiple.xml,76.06,55.639,44.8072,58.914,0.22161,1.0395,1.0,1.0186,1.0589,1.0,39.0132,0.0,0.0,19.82,6.53,10.49,31.65,4.24,11.67,18.8,0.0,0.0,0.8028,0.4041,0.9769,1.2821,0.2625,1.087,13.7849,7.6998,8.2394,0.0,0.0,22.0142,5.003,9.168,23.73,5.0,9.17,14.77,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,133.72,5815.88,4107.39,54.56,1.0,54.56,76.06,76.06,0.0,49.0,1.0,49.0,76.06,76.06,0.0,71.08,57.23,43.0756,60.5987,0.22161,1.0395,1.0,1.0186,1.0589,1.0,37.7006,0.0,0.0,21.44,6.5,10.49,34.23,4.23,11.67,18.8,0.0,0.0,0.8029,0.4033,0.9769,1.2821,0.2625,1.087,12.3843,7.6901,8.2412,0.0,0.0,19.7749,5.006,9.17,21.32,5.01,9.17,14.76,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-slab.xml,68.08,57.802,41.6693,61.2044,0.22161,1.0395,1.0,1.0186,1.0589,1.0,36.8148,0.0,0.0,21.61,6.58,10.49,34.46,4.26,11.52,19.12,0.0,0.0,0.8042,0.4056,0.9896,1.2821,0.2625,1.087,11.206,6.7752,8.3831,0.0,0.0,17.864,4.386,9.208,19.26,4.39,9.21,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,115.45,5139.9,4204.42,54.27,1.0,54.27,68.08,68.08,0.0,49.11,1.0,49.11,68.08,68.08,0.0,63.81,59.385,40.126,62.8805,0.22161,1.0395,1.0,1.0186,1.0589,1.0,35.6428,0.0,0.0,23.23,6.55,10.49,37.03,4.25,11.52,19.12,0.0,0.0,0.8043,0.4047,0.9895,1.2821,0.2625,1.087,9.9944,6.7582,8.3815,0.0,0.0,15.9309,4.384,9.207,17.17,4.38,9.21,14.99,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,73.45,55.742,43.3552,59.0231,0.22161,1.0395,1.0,1.0186,1.0589,1.0,37.9774,0.0,0.0,19.74,6.7,10.49,31.52,4.33,11.67,18.81,0.0,0.0,0.8028,0.4068,0.9773,1.2821,0.2625,1.087,13.0441,7.0341,8.26,0.0,0.0,20.8315,4.54,9.187,22.46,4.54,9.19,14.7,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,128.61,5593.37,4107.48,54.0,1.0,54.0,73.45,73.45,0.0,48.51,1.0,48.51,73.45,73.45,0.0,68.59,57.333,41.6394,60.7077,0.22161,1.0395,1.0,1.0186,1.0589,1.0,36.6768,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8029,0.406,0.9773,1.2821,0.2625,1.087,11.6612,7.0214,8.2618,0.0,0.0,18.62,4.54,9.189,20.07,4.54,9.19,14.7,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,80.67,55.742,47.6145,59.0231,0.22161,1.0395,1.0,1.0186,1.0589,1.0,41.0662,0.0,0.0,19.74,6.7,10.49,31.52,4.33,11.67,18.81,0.0,0.0,0.8028,0.4068,0.9773,1.2821,0.2625,1.087,17.6619,6.5135,8.2052,0.0,0.0,28.206,4.204,9.126,30.41,4.2,9.13,14.92,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,155.08,6744.88,4107.48,54.0,1.0,54.0,80.67,80.67,0.0,48.51,1.0,48.51,80.67,80.67,0.0,75.65,57.333,45.9226,60.7077,0.22161,1.0395,1.0,1.0186,1.0589,1.0,39.7854,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8029,0.406,0.9773,1.2821,0.2625,1.087,16.3238,6.4786,8.2052,0.0,0.0,26.0651,4.189,9.126,28.1,4.19,9.13,14.92,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement.xml,76.29,55.742,45.0275,59.0231,0.22161,1.0395,1.0,1.0186,1.0589,1.0,39.1158,0.0,0.0,19.74,6.7,10.49,31.52,4.33,11.67,18.81,0.0,0.0,0.8028,0.4068,0.9773,1.2821,0.2625,1.087,13.9235,7.8134,8.2555,0.0,0.0,22.2359,5.043,9.182,23.97,5.04,9.18,14.72,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,134.53,5850.98,4107.48,54.0,1.0,54.0,76.29,76.29,0.0,48.51,1.0,48.51,76.29,76.29,0.0,71.28,57.333,43.2751,60.7077,0.22161,1.0395,1.0,1.0186,1.0589,1.0,37.7916,0.0,0.0,21.35,6.68,10.49,34.1,4.32,11.67,18.81,0.0,0.0,0.8029,0.406,0.9773,1.2821,0.2625,1.087,12.5007,7.804,8.2564,0.0,0.0,19.9604,5.046,9.183,21.52,5.05,9.18,14.71,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unvented-crawlspace.xml,74.09,55.443,43.4935,58.7065,0.22161,1.0395,1.0,1.0186,1.0589,1.0,38.0676,0.0,0.0,18.38,7.45,10.49,29.35,4.68,11.77,19.13,0.0,0.0,0.8028,0.4173,0.9685,1.2821,0.2625,1.087,11.9917,7.914,8.2739,0.0,0.0,19.1515,4.979,9.286,20.65,4.98,9.29,15.0,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,124.23,5391.23,4098.42,55.86,1.0,55.86,74.09,74.09,0.0,50.41,1.0,50.41,74.09,74.09,0.0,69.35,56.989,41.8474,60.3435,0.22161,1.0395,1.0,1.0186,1.0589,1.0,36.8216,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8029,0.4165,0.9685,1.2821,0.2625,1.087,10.6555,7.9143,8.2756,0.0,0.0,17.0152,4.989,9.288,18.34,4.99,9.29,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace-above-grade.xml,76.44,55.374,44.8193,58.6334,0.22161,1.0395,1.0,1.0186,1.0589,1.0,39.0464,0.0,0.0,18.41,7.34,10.49,29.41,4.63,11.79,19.13,0.0,0.0,0.8027,0.416,0.9672,1.2821,0.2625,1.087,13.1702,8.0124,8.3256,0.0,0.0,21.0346,5.056,9.356,22.68,5.06,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.4,5699.34,4096.36,56.0,1.0,56.0,76.44,76.44,0.0,50.56,1.0,50.56,76.44,76.44,0.0,71.5,56.926,43.0985,60.2768,0.22161,1.0395,1.0,1.0186,1.0589,1.0,37.7482,0.0,0.0,20.01,7.3,10.49,31.95,4.62,11.79,19.13,0.0,0.0,0.8028,0.4152,0.9672,1.2821,0.2625,1.087,11.7668,8.0062,8.3265,0.0,0.0,18.7907,5.063,9.357,20.26,5.06,9.36,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace.xml,76.08,55.443,44.6635,58.7065,0.22161,1.0395,1.0,1.0186,1.0589,1.0,38.9342,0.0,0.0,18.38,7.45,10.49,29.35,4.68,11.77,19.13,0.0,0.0,0.8028,0.4173,0.9685,1.2821,0.2625,1.087,13.2369,7.7741,8.3425,0.0,0.0,21.1404,4.891,9.363,22.79,4.89,9.36,14.99,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,131.46,5705.01,4098.42,55.86,1.0,55.86,76.08,76.08,0.0,50.41,1.0,50.41,76.08,76.08,0.0,71.16,56.989,42.9383,60.3435,0.22161,1.0395,1.0,1.0186,1.0589,1.0,37.631,0.0,0.0,19.97,7.41,10.49,31.89,4.67,11.77,19.13,0.0,0.0,0.8029,0.4165,0.9685,1.2821,0.2625,1.087,11.8277,7.7683,8.3442,0.0,0.0,18.8872,4.897,9.365,20.36,4.9,9.37,15.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-walkout-basement.xml,79.55,81.334,64.192,80.6912,0.22161,0.9921,1.0,1.0,0.9921,1.0,54.0084,0.0,0.0,34.15,9.47,10.49,54.4,5.75,11.52,27.23,0.0,0.0,0.8049,0.4326,0.9896,1.2821,0.2625,1.087,26.3833,8.4748,8.2129,0.0,0.0,42.0228,5.143,9.021,45.3,5.14,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.82,9464.32,5858.99,56.46,1.0,56.46,79.55,79.55,0.0,51.26,1.0,51.26,79.55,79.55,0.0,73.55,87.915,64.1495,87.2202,0.22161,0.9921,1.0,1.0,0.9921,1.0,53.9814,0.0,0.0,40.78,9.43,10.49,64.95,5.73,11.52,27.22,0.0,0.0,0.805,0.4322,0.9893,1.2821,0.2625,1.087,26.3571,8.4667,8.2107,0.0,0.0,41.9755,5.143,9.021,45.25,5.14,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,84.61,76.675,65.5576,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.9222,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5565,7.6644,8.2127,0.0,0.0,45.4787,3.907,9.02,45.48,3.91,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.95,9384.21,5629.6,70.68,1.0,70.68,84.61,84.61,0.0,61.27,1.0,61.27,84.61,84.61,0.0,80.3,80.709,65.4911,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.8912,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5189,7.6436,8.2105,0.0,0.0,45.4177,3.907,9.02,45.42,3.91,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.74,76.703,66.4551,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,57.711,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,29.49,7.6291,8.212,0.0,0.0,22.8272,4.742,9.02,22.83,4.74,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.79,4894.6,5712.65,56.21,1.0,56.21,85.74,85.74,0.0,50.29,1.0,50.29,85.74,85.74,0.0,81.66,80.734,66.6181,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,57.679,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,29.6901,7.5995,8.2105,0.0,0.0,22.8012,4.741,9.02,22.8,4.74,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.06,76.713,65.1591,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.297,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.758,7.0651,8.212,0.0,0.0,21.4582,3.695,9.02,21.46,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.31,4682.28,5561.74,53.34,1.0,53.34,84.06,84.06,0.0,47.33,1.0,47.33,84.06,84.06,0.0,80.16,80.743,65.4047,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.27,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0287,7.0475,8.2105,0.0,0.0,21.4382,3.695,9.02,21.44,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.04,76.713,65.1474,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.293,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.7674,7.0441,8.212,0.0,0.0,21.4652,3.684,9.02,21.47,3.68,9.02,21.12,0.01,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.28,4680.36,5561.74,53.34,1.0,53.34,84.04,84.04,0.0,47.33,1.0,47.33,84.04,84.04,0.0,80.15,80.743,65.3924,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.265,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,29.0355,7.0284,8.2105,0.0,0.0,21.4432,3.685,9.02,21.44,3.69,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/base_results/sample_files2.csv b/workflow/tests/base_results/sample_files2.csv index 9f79aa3b0..dc281871e 100644 --- a/workflow/tests/base_results/sample_files2.csv +++ b/workflow/tests/base_results/sample_files2.csv @@ -1,98 +1,99 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -base-hvac-air-to-air-heat-pump-1-speed.xml,83.8,76.713,64.9594,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.148,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.5583,7.0651,8.212,0.0,0.0,21.3092,3.695,9.02,21.31,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.04,4667.09,5561.74,53.34,1.0,53.34,83.8,83.8,0.0,47.33,1.0,47.33,83.8,83.8,0.0,79.91,80.743,65.2016,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,55.12,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8256,7.0475,8.2105,0.0,0.0,21.2882,3.695,9.02,21.29,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,72.23,76.713,55.9928,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,48.904,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,21.6014,5.0555,8.212,0.0,0.0,16.1181,2.644,9.02,16.12,2.64,9.02,21.12,0.01,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.43,4126.75,5561.74,53.34,1.0,53.34,72.23,72.23,0.0,47.33,1.0,47.33,72.23,72.23,0.0,68.84,80.743,56.1707,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,48.88,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.7993,5.0429,8.2105,0.0,0.0,16.0991,2.644,9.02,16.1,2.64,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,71.73,76.713,55.6003,77.5178,0.2203,0.9921,1.0,1.0185,1.0105,1.0,48.787,0.0,0.0,30.56,8.44,10.49,22.81,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.2983,3.9661,8.212,0.0,0.0,16.6381,2.007,9.02,16.64,2.01,9.02,21.12,0.01,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.54,4125.75,5551.6,53.41,1.0,53.41,71.73,71.73,0.0,47.4,1.0,47.4,71.73,71.73,0.0,68.37,80.742,55.7842,81.589,0.2203,0.9921,1.0,1.0185,1.0105,1.0,48.761,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5021,3.9536,8.2105,0.0,0.0,16.6181,2.007,9.02,16.62,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-elec-only.xml,99.31,76.705,76.9699,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,65.856,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,40.0086,7.6254,8.212,0.0,0.0,30.9693,4.744,9.02,30.97,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.25,5614.01,5713.06,56.21,1.0,56.21,99.31,99.31,0.0,50.29,1.0,50.29,99.31,99.31,0.0,94.64,80.736,77.2041,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,65.812,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,40.2751,7.6004,8.2105,0.0,0.0,30.9303,4.745,9.02,30.93,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-gas-only.xml,71.17,76.705,55.1928,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.2084,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2315,7.6254,8.212,0.0,0.0,29.8234,4.744,9.02,32.98,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,132.77,7668.49,5713.06,57.31,1.0,57.31,71.17,71.17,0.0,51.95,1.0,51.95,71.17,71.17,0.0,67.61,80.735,55.1887,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.186,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2597,7.6004,8.2105,0.0,0.0,29.7854,4.745,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-oil-only.xml,71.19,76.705,55.2039,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.3382,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2425,7.6254,8.212,0.0,0.0,29.8415,4.744,9.02,33.0,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.03,9243.07,5713.06,57.31,1.0,57.31,71.19,71.19,0.0,51.95,1.0,51.95,71.19,71.19,0.0,67.63,80.735,55.2004,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.3162,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2714,7.6004,8.2105,0.0,0.0,29.8044,4.745,9.02,32.95,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-propane-only.xml,71.17,76.705,55.1928,77.5497,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.2084,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.422,0.9896,1.25,0.2625,1.087,18.2315,7.6254,8.212,0.0,0.0,29.8234,4.744,9.02,32.98,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.06,8667.54,5713.06,57.31,1.0,57.31,71.17,71.17,0.0,51.95,1.0,51.95,71.17,71.17,0.0,67.61,80.735,55.1887,81.6241,0.23119,0.9918,1.0,1.0194,1.011,1.0,48.186,0.0,0.0,34.66,8.37,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4205,0.9894,1.25,0.2625,1.087,18.2597,7.6004,8.2105,0.0,0.0,29.7854,4.745,9.02,32.93,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,84.93,76.705,65.8357,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9552,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,7.9549,8.212,0.0,0.0,45.4587,4.949,9.02,45.46,4.95,9.02,21.12,0.01,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.99,9467.78,5713.06,72.13,1.0,72.13,84.93,84.93,0.0,62.7,1.0,62.7,84.93,84.93,0.0,80.6,80.735,65.7621,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9242,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,7.9272,8.2105,0.0,0.0,45.3977,4.949,9.02,45.4,4.95,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed.xml,84.96,76.705,65.855,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9672,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,7.9742,8.212,0.0,0.0,45.4587,4.961,9.02,45.46,4.96,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.0,9468.64,5713.06,72.13,1.0,72.13,84.96,84.96,0.0,62.7,1.0,62.7,84.96,84.96,0.0,80.63,80.735,65.7813,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,53.9362,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,7.9464,8.2105,0.0,0.0,45.3977,4.961,9.02,45.4,4.96,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-2-speed.xml,82.65,76.705,64.0644,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.8542,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,6.1836,8.212,0.0,0.0,45.4587,3.847,9.02,45.46,3.85,9.02,21.12,0.01,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.6,9387.86,5713.06,72.13,1.0,72.13,82.65,82.65,0.0,62.7,1.0,62.7,82.65,82.65,0.0,78.44,80.735,63.9976,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,52.8236,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,6.162,8.2105,0.0,0.0,45.3987,3.847,9.02,45.4,3.85,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-var-speed.xml,81.59,76.7,63.2448,77.5106,0.22193,0.9921,1.0,1.0186,1.0106,1.0,52.2482,0.0,0.0,30.56,8.42,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4345,0.9896,1.2821,0.2625,1.087,28.5449,5.3639,8.212,0.0,0.0,45.4587,3.241,9.02,45.46,3.24,9.02,21.12,0.01,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.13,9343.02,5702.23,72.17,1.0,72.17,81.59,81.59,0.0,62.73,1.0,62.73,81.59,81.59,0.0,77.44,80.73,63.1772,81.5832,0.22193,0.9921,1.0,1.0186,1.0106,1.0,52.2176,0.0,0.0,34.66,8.36,10.49,55.2,5.07,11.52,27.22,0.0,0.0,0.805,0.4327,0.9894,1.2821,0.2625,1.087,28.507,5.3417,8.2105,0.0,0.0,45.3987,3.241,9.02,45.4,3.24,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.17,76.705,66.7872,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.922,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,29.4771,7.9742,8.212,0.0,0.0,22.8172,4.961,9.02,22.82,4.96,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.0,4906.9,5713.06,55.03,1.0,55.03,86.17,86.17,0.0,49.0,1.0,49.0,86.17,86.17,0.0,82.07,80.736,66.9533,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,57.89,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,29.6783,7.9464,8.2105,0.0,0.0,22.7922,4.961,9.02,22.79,4.96,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-dse.xml,78.24,76.706,60.6479,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4882,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.5633,8.7487,8.212,0.0,0.0,35.946,5.409,9.02,38.75,5.41,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.95,8540.13,5561.74,56.71,1.0,56.71,78.24,78.24,0.0,51.05,1.0,51.05,78.24,78.24,0.0,74.26,80.735,60.5827,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.46,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.5385,8.7157,8.2105,0.0,0.0,35.8987,5.409,9.02,38.7,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.72,76.712,62.573,77.5157,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.084,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.502,0.9896,1.7253,0.2625,1.087,26.172,7.0651,8.212,0.0,0.0,27.1415,3.695,9.02,28.589999999999996,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,109.57,6157.9,5561.74,53.34,1.0,53.34,80.72,80.72,0.0,47.33,1.0,47.33,80.72,80.72,0.0,76.95,80.743,62.7796,81.589,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0594,0.0,0.0,34.66,8.37,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.403599999999997,7.0475,8.2105,0.0,0.0,27.1156,3.695,9.02,28.57,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,79.99,76.712,62.0013,77.5152,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.8552,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.502,0.9896,1.7253,0.2625,1.087,25.6002,7.0651,8.212,0.0,0.0,29.7292,3.695,9.02,31.72,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,120.22,6756.15,5561.74,53.34,1.0,53.34,79.99,79.99,0.0,47.33,1.0,47.33,79.99,79.99,0.0,76.22,80.743,62.1839,81.5884,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.8326,0.0,0.0,34.66,8.37,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8079,7.0475,8.2105,0.0,0.0,29.7027,3.695,9.02,31.689999999999998,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-area-fractions.xml,84.25,104.691,85.1448,101.0637,0.22168,0.9654,1.0,1.0,0.9654,1.0,69.1914,0.0,0.0,46.45,12.42,10.49,73.99,7.22,11.52,35.33,0.0,0.0,0.8049,0.4515,0.9897,1.2821,0.2625,1.087,37.3555,12.4496,8.0706,0.0,0.0,59.4982,7.2391,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.49,12925.65,7501.69,56.51,1.0,56.51,84.25,84.25,0.0,51.2,1.0,51.2,84.25,84.25,0.0,77.25,114.298,85.2354,110.3379,0.22168,0.9654,1.0,1.0,0.9654,1.0,69.1914,0.0,0.0,56.1,12.39,10.49,89.35,7.15,11.52,35.32,0.0,0.0,0.805,0.4548,0.9893,1.2821,0.2625,1.087,37.3583,12.5403,8.0678,0.0,0.0,59.4982,7.2391,8.864,64.14,7.24,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-buried.xml,75.28,76.706,58.3506,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.054,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,21.6311,7.3836,8.212,0.0,0.0,34.4609,4.565,9.02,37.15,4.57,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.51,8234.31,5561.74,56.72,1.0,56.72,75.28,75.28,0.0,51.05,1.0,51.05,75.28,75.28,0.0,71.45,80.735,58.2956,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.03,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.6113,7.3558,8.2105,0.0,0.0,34.422,4.565,9.02,37.11,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-leakage-cfm50.xml,76.33,76.706,59.1645,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5546,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.2395,7.589,8.212,0.0,0.0,35.4303,4.692,9.02,38.2,4.69,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.49,8402.06,5561.74,56.72,1.0,56.72,76.33,76.33,0.0,51.05,1.0,51.05,76.33,76.33,0.0,72.44,80.735,59.1053,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.527,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,22.2164,7.5604,8.2105,0.0,0.0,35.3857,4.692,9.02,38.15,4.69,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-elec-resistance-only.xml,95.31,76.705,73.8681,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.455,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,36.9068,7.6254,8.212,0.0,0.0,28.5683,4.744,9.02,28.57,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.64,5405.86,5713.06,56.21,1.0,56.21,95.31,95.31,0.0,50.29,1.0,50.29,95.31,95.31,0.0,90.81,80.736,74.079,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.411,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.15,7.6004,8.2105,0.0,0.0,28.5303,4.745,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only-ducted.xml,76.14,76.705,59.0237,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.7172,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,1.1428,8.212,0.0,0.0,45.4587,0.711,9.02,45.46,0.71,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.49,9150.26,5713.06,72.13,1.0,72.13,76.14,76.14,0.0,62.7,1.0,62.7,76.14,76.14,0.0,72.28,80.735,58.9738,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6862,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,1.1389,8.2105,0.0,0.0,45.3977,0.711,9.02,45.4,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only.xml,75.98,76.705,58.8973,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6386,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5455,1.0159,8.212,0.0,0.0,45.4597,0.632,9.02,45.46,0.63,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.39,9144.81,5713.06,72.13,1.0,72.13,75.98,75.98,0.0,62.7,1.0,62.7,75.98,75.98,0.0,72.13,80.735,58.8479,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.6076,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,1.0123,8.2105,0.0,0.0,45.3987,0.632,9.02,45.4,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-fireplace-wood-only.xml,76.31,76.705,59.1513,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1716,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1899,7.6254,8.212,0.0,0.0,35.3382,4.744,9.02,35.71,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.31,76.31,0.0,52.34,1.0,52.34,76.31,76.31,0.0,72.42,80.735,59.0895,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1458,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1606,7.6004,8.2105,0.0,0.0,35.2917,4.745,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-floor-furnace-propane-only.xml,76.31,76.705,59.1513,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1716,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1899,7.6254,8.212,0.0,0.0,35.3382,4.744,9.02,35.71,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.88,9172.91,5713.06,57.9,1.0,57.9,76.31,76.31,0.0,52.34,1.0,52.34,76.31,76.31,0.0,72.42,80.735,59.0895,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1458,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1606,7.6004,8.2105,0.0,0.0,35.2917,4.745,9.02,35.66,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-elec-only.xml,111.63,76.705,86.5222,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,73.251,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,49.5608,7.6254,8.212,0.0,0.0,38.3633,4.744,9.02,38.36,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,108.94,6288.68,5713.06,56.21,1.0,56.21,111.63,111.63,0.0,50.29,1.0,50.29,111.63,111.63,0.0,106.42,80.736,86.8204,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,73.197,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,49.8914,7.6004,8.2105,0.0,0.0,38.3153,4.745,9.02,38.32,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-only.xml,78.33,76.705,60.7189,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9186,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,23.7575,7.6254,8.212,0.0,0.0,37.8346,4.744,9.02,40.79,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.79,8763.8,5713.06,57.9,1.0,57.9,78.33,78.33,0.0,52.34,1.0,52.34,78.33,78.33,0.0,74.34,80.735,60.6566,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8916,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,23.7277,7.6004,8.2105,0.0,0.0,37.7873,4.745,9.02,40.74,4.75,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.57,76.675,64.7545,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.5112,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,6.8739,8.2127,0.0,0.0,45.4587,3.504,9.02,45.46,3.5,9.02,21.12,0.01,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.45,9355.64,5629.6,70.68,1.0,70.68,83.57,83.57,0.0,61.27,1.0,61.27,83.57,83.57,0.0,79.32,80.709,64.6901,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.4802,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,6.8552,8.2105,0.0,0.0,45.3977,3.504,9.02,45.4,3.5,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.14,76.705,55.1396,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,48.959,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.1782,7.6254,8.212,0.0,0.0,14.0711,4.744,9.02,14.07,4.74,9.02,21.12,0.01,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.86,4090.44,5713.06,56.21,1.0,56.21,71.14,71.14,0.0,50.29,1.0,50.29,71.14,71.14,0.0,67.7,80.736,55.2279,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,48.935,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.2989,7.6004,8.2105,0.0,0.0,14.0531,4.745,9.02,14.05,4.75,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump.xml,68.3,76.713,52.9462,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.379,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.4266,6.1837,8.212,0.0,0.0,13.0031,3.234,9.02,13.0,3.23,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.93,3873.7,5561.74,53.34,1.0,53.34,68.3,68.3,0.0,47.33,1.0,47.33,68.3,68.3,0.0,65.05,80.743,53.0775,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.355,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5827,6.1663,8.2105,0.0,0.0,12.9851,3.233,9.02,12.99,3.23,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.31,76.713,63.8018,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,54.437,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.0852,6.3806,8.212,0.0,0.0,20.9562,3.337,9.02,20.96,3.34,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,82.02,4609.47,5561.74,53.34,1.0,53.34,82.31,82.31,0.0,47.33,1.0,47.33,82.31,82.31,0.0,78.49,80.743,64.0422,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,54.409,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.349,6.3647,8.2105,0.0,0.0,20.9362,3.337,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.08,76.706,59.7453,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.8502,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1519,7.2574,8.212,0.0,0.0,36.8838,4.487,9.02,39.76,4.49,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.54,8629.61,5561.74,56.72,1.0,56.72,77.08,77.08,0.0,51.05,1.0,51.05,77.08,77.08,0.0,73.16,80.735,59.6881,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.8242,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.1278,7.2317,8.2105,0.0,0.0,36.8375,4.488,9.02,39.71,4.49,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,66.87,76.713,51.8325,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,45.71,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.0299,5.4666,8.212,0.0,0.0,12.7071,2.859,9.02,12.71,2.86,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.97,3819.82,5561.74,53.34,1.0,53.34,66.87,66.87,0.0,47.33,1.0,47.33,66.87,66.87,0.0,63.69,80.743,51.9661,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,45.687,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1846,5.453,8.2105,0.0,0.0,12.6911,2.859,9.02,12.69,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.59,76.705,62.4667,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8602,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,4.5858,8.212,0.0,0.0,45.4587,2.853,9.02,45.46,2.85,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.35,9315.7,5713.06,72.13,1.0,72.13,80.59,80.59,0.0,62.7,1.0,62.7,80.59,80.59,0.0,76.49,80.735,62.4048,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.8282,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,4.5699,8.2105,0.0,0.0,45.3977,2.853,9.02,45.4,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.94,76.713,51.8884,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.143,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,18.8392,3.7133,8.212,0.0,0.0,14.0571,1.942,9.02,14.06,1.94,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.14,3885.64,5561.74,53.34,1.0,53.34,66.94,66.94,0.0,47.33,1.0,47.33,66.94,66.94,0.0,63.79,80.743,52.0451,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.12,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.0126,3.704,8.2105,0.0,0.0,14.0411,1.942,9.02,14.04,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,80.85,76.705,62.6692,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9862,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5449,4.7884,8.212,0.0,0.0,45.4587,2.979,9.02,45.46,2.98,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.51,9324.65,5713.06,72.13,1.0,72.13,80.85,80.85,0.0,62.7,1.0,62.7,80.85,80.85,0.0,76.73,80.735,62.6066,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.9542,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.5064,4.7717,8.2105,0.0,0.0,45.3977,2.979,9.02,45.4,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,80.04,76.705,62.0462,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.5976,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,28.5455,4.1647,8.212,0.0,0.0,45.4597,2.591,9.02,45.46,2.59,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.03,9297.07,5713.06,72.13,1.0,72.13,80.04,80.04,0.0,62.7,1.0,62.7,80.04,80.04,0.0,75.97,80.735,61.9841,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,51.5666,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,28.507,4.1486,8.2105,0.0,0.0,45.3987,2.59,9.02,45.4,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.74,76.675,61.7825,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.9952,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5439,3.9019,8.2127,0.0,0.0,45.4587,1.989,9.02,45.46,1.99,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.46,9242.43,5629.6,70.68,1.0,70.68,79.74,79.74,0.0,61.27,1.0,61.27,79.74,79.74,0.0,75.68,80.709,61.7262,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.9642,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5064,3.8913,8.2105,0.0,0.0,45.3977,1.989,9.02,45.4,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,71.98,76.705,55.7868,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,49.459,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,18.8254,7.6254,8.212,0.0,0.0,14.5721,4.744,9.02,14.57,4.74,9.02,21.12,0.01,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.89,4150.17,5713.06,56.21,1.0,56.21,71.98,71.98,0.0,50.29,1.0,50.29,71.98,71.98,0.0,68.5,80.736,55.879,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,49.436,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,18.95,7.6004,8.2105,0.0,0.0,14.5531,4.745,9.02,14.55,4.75,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,67.29,76.713,52.163,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.329,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,19.0335,3.7936,8.212,0.0,0.0,14.2021,1.984,9.02,14.2,1.98,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.43,3901.99,5561.74,53.34,1.0,53.34,67.29,67.29,0.0,47.33,1.0,47.33,67.29,67.29,0.0,64.12,80.743,52.3189,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,46.306,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2062,3.7841,8.2105,0.0,0.0,14.1841,1.984,9.02,14.18,1.98,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,62.2,76.713,48.2163,77.518,0.22037,0.9921,1.0,1.0185,1.0105,1.0,43.504,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,15.6241,3.2563,8.212,0.0,0.0,11.6581,1.703,9.02,11.66,1.7,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,64.99,3652.46,5561.74,53.34,1.0,53.34,62.2,62.2,0.0,47.33,1.0,47.33,62.2,62.2,0.0,59.25,80.743,48.3408,81.5903,0.22037,0.9921,1.0,1.0185,1.0105,1.0,43.482,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7642,3.2481,8.2105,0.0,0.0,11.6421,1.703,9.02,11.64,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-multiple.xml,95.45,76.6672,73.9189,77.4405,0.21186,0.9924,1.0,1.0178,1.0101,1.0,67.2124,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0658,2.1173,0.9896,7.7555,1.5750000000000002,1.087,37.7078,6.8751,8.212,0.0,0.0,43.7555,5.338,9.02,44.79,5.34,9.02,21.12,0.01,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,137.51,8586.44,6181.94,55.45,1.0,55.45,95.45,95.45,0.0,50.6,1.0,50.6,95.45,95.45,0.0,91.72,80.6852,74.7545,81.499,0.21186,0.9924,1.0,1.0178,1.0101,1.0,67.169,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1716,2.1097,0.9894,7.7555,1.5750000000000002,1.087,38.574600000000004,6.8505,8.2105,0.0,0.0,43.7029,5.339,9.02,44.71,5.34,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 -base-hvac-none.xml,91.9,66.748,64.3338,70.0006,0.18435,1.0328,1.0,1.0155,1.0487,1.0,45.185,0.0,0.0,0.0,42.2,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,44.7852,4.0346,0.0,0.0,0.0,24.9272,4.747,0.0,24.93,4.75,15.2,0.32,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.66,1.0,69.66,91.9,91.9,0.0,62.72,1.0,62.72,91.9,91.9,0.0,89.65,66.747,62.7564,69.9996,0.18435,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.2,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5238,4.0346,0.0,0.0,0.0,24.2412,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-programmable-thermostat.xml,75.43,76.706,58.4726,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.1466,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,22.1015,7.0423,8.2138,0.0,0.0,35.2104,4.354,9.022,37.96,4.35,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.47,8344.84,5561.74,56.72,1.0,56.72,75.43,75.43,0.0,51.05,1.0,51.05,75.43,75.43,0.0,71.21,80.735,58.0954,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,49.9078,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,21.9124,6.8627,8.2124,0.0,0.0,34.9015,4.259,9.022,37.63,4.26,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-electricity.xml,94.15,76.714,72.9836,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,61.821,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.2855,5.3622,8.212,0.0,0.0,28.5673,3.111,9.02,28.57,3.11,9.02,21.12,0.01,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.25,5273.33,5596.38,53.24,1.0,53.24,94.15,94.15,0.0,47.22,1.0,47.22,94.15,94.15,0.0,89.85,80.743,73.3078,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,61.777,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6305,5.3488,8.2105,0.0,0.0,28.5293,3.111,9.02,28.53,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,72.39,76.7,56.1092,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,47.5376,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,22.1899,4.5833,8.212,0.0,0.0,35.3382,3.111,9.02,35.71,3.11,9.02,21.12,0.01,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.59,7951.28,5596.38,56.66,1.0,56.66,72.39,72.39,0.0,51.0,1.0,51.0,72.39,72.39,0.0,68.71,80.73,56.0559,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,47.5124,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,22.1599,4.5674,8.2105,0.0,0.0,35.2907,3.111,9.02,35.66,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac.xml,80.59,76.7,62.4648,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.1186,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,4.5833,8.212,0.0,0.0,45.4597,3.111,9.02,45.46,3.11,9.02,21.12,0.01,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.53,9323.31,5747.12,72.08,1.0,72.08,80.59,80.59,0.0,62.65,1.0,62.65,80.59,80.59,0.0,76.49,80.73,62.4029,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.0876,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,4.5674,8.2105,0.0,0.0,45.3987,3.111,9.02,45.4,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-pthp.xml,65.95,76.714,51.1245,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.536,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.585,5.2036,8.212,0.0,0.0,12.3751,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.33,3807.7,5596.38,53.24,1.0,53.24,65.95,65.95,0.0,47.22,1.0,47.22,65.95,65.95,0.0,62.82,80.743,51.2542,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.515,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.735,5.1906,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only-ceer.xml,82.13,76.7,63.6625,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.9306,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,5.7811,8.212,0.0,0.0,45.4597,3.924,9.02,45.46,3.92,9.02,21.12,0.01,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.53,9381.64,5747.12,72.08,1.0,72.08,82.13,82.13,0.0,62.65,1.0,62.65,82.13,82.13,0.0,77.95,80.73,63.5965,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.8996,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,5.761,8.2105,0.0,0.0,45.3987,3.924,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only.xml,82.12,76.7,63.6507,77.5114,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.9236,0.0,0.0,30.56,8.42,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3868,0.9896,1.2821,0.2625,1.087,28.5455,5.7693,8.212,0.0,0.0,45.4597,3.916,9.02,45.46,3.92,9.02,21.12,0.01,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.52,9381.11,5747.12,72.08,1.0,72.08,82.12,82.12,0.0,62.65,1.0,62.65,82.12,82.12,0.0,77.94,80.73,63.5848,81.584,0.22213,0.9921,1.0,1.0186,1.0106,1.0,52.8926,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3854,0.9894,1.2821,0.2625,1.087,28.507,5.7492,8.2105,0.0,0.0,45.3987,3.916,9.02,45.4,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-heating.xml,95.94,76.714,74.3711,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,62.627,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.2855,6.7497,8.212,0.0,0.0,28.5673,3.916,9.02,28.57,3.92,9.02,21.12,0.01,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.27,5331.14,5596.38,53.24,1.0,53.24,95.94,95.94,0.0,47.22,1.0,47.22,95.94,95.94,0.0,91.54,80.743,74.6918,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,62.582,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6305,6.7328,8.2105,0.0,0.0,28.5293,3.916,9.02,28.53,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,65.95,76.714,51.1245,77.52,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.536,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.585,5.2036,8.212,0.0,0.0,12.3751,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.33,3807.7,5596.38,53.24,1.0,53.24,65.95,65.95,0.0,47.22,1.0,47.22,65.95,65.95,0.0,62.82,80.743,51.2542,81.5913,0.22064,0.9921,1.0,1.0185,1.0105,1.0,45.515,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.735,5.1906,8.2105,0.0,0.0,12.3591,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-space-heater-gas-only.xml,68.19,76.705,52.8596,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,46.3148,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,15.8982,7.6254,8.212,0.0,0.0,25.3184,4.744,9.02,28.57,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.79,7031.78,5713.06,57.9,1.0,57.9,68.19,68.19,0.0,52.34,1.0,52.34,68.19,68.19,0.0,64.72,80.735,52.8059,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,46.2926,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,15.8769,7.6004,8.2105,0.0,0.0,25.2847,4.745,9.02,28.53,4.75,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-stove-wood-pellets-only.xml,76.29,76.705,59.1345,77.5162,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.2246,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.422,0.9896,1.2821,0.2625,1.087,22.1731,7.6254,8.212,0.0,0.0,35.3115,4.744,9.02,35.68,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.29,76.29,0.0,52.34,1.0,52.34,76.29,76.29,0.0,72.4,80.735,59.0727,81.5888,0.22207,0.9921,1.0,1.0186,1.0106,1.0,49.1998,0.0,0.0,34.66,8.37,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4205,0.9894,1.2821,0.2625,1.087,22.1438,7.6004,8.2105,0.0,0.0,35.2649,4.745,9.02,35.64,4.75,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-undersized.xml,73.25,76.706,56.7812,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9554,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,20.4741,6.9711,8.212,0.0,0.0,32.6177,4.31,9.02,35.16,4.31,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,141.05,7927.91,5561.74,56.72,1.0,56.72,73.25,73.25,0.0,51.05,1.0,51.05,73.25,73.25,0.0,69.53,80.735,56.7285,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9298,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,20.4535,6.9465,8.2105,0.0,0.0,32.5779,4.311,9.02,35.12,4.31,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-wall-furnace-elec-only.xml,96.28,76.705,74.62,77.5066,0.21945,0.9922,1.0,1.0184,1.0104,1.0,64.038,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.422,0.9896,0.4432,0.2625,1.087,37.6586,7.6254,8.212,0.0,0.0,29.1503,4.744,9.02,29.15,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.56,5458.51,5713.06,56.21,1.0,56.21,96.28,96.28,0.0,50.29,1.0,50.29,96.28,96.28,0.0,91.73,80.736,74.8355,81.5797,0.21945,0.9922,1.0,1.0184,1.0104,1.0,63.993,0.0,0.0,34.66,8.37,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4205,0.9894,0.4432,0.2625,1.087,37.9065,7.6004,8.2105,0.0,0.0,29.1113,4.745,9.02,29.11,4.75,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans.xml,77.58,77.13,60.4656,77.9359,0.21942,0.9922,1.0,1.0184,1.0104,1.0,51.7024,0.0,0.0,30.55,8.12,10.49,48.66,5.05,11.52,27.98,0.0,0.0,0.8047,0.4219,0.9899,1.2821,0.2625,1.087,23.1042,7.4934,8.213,0.0,0.0,36.8087,4.663,9.018,39.68,4.66,9.02,21.65,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.62,8660.53,5615.97,56.73,1.0,56.73,77.58,77.58,0.0,51.12,1.0,51.12,77.58,77.58,0.0,73.67,81.143,60.4047,81.9908,0.21942,0.9922,1.0,1.0184,1.0104,1.0,51.6754,0.0,0.0,34.64,8.04,10.49,55.18,5.02,11.52,27.97,0.0,0.0,0.8049,0.4202,0.9897,1.2821,0.2625,1.087,23.08,7.4649,8.2109,0.0,0.0,36.7623,4.664,9.018,39.63,4.66,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-baltimore-md.xml,70.86,60.303,45.8505,64.7074,0.27314,1.0489,1.0,1.023,1.073,1.0,39.0758,0.0,0.0,20.97,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.801,0.4194,0.9661,1.2821,0.2625,1.087,11.9865,10.9705,7.5636,0.0,0.0,19.1859,6.8681,8.51,20.68,6.87,8.51,15.01,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.44,9324.12,11673.86,51.47,1.0,51.47,70.86,70.86,0.0,49.06,1.0,49.06,70.86,70.86,0.0,66.95,61.054,43.8591,65.5133,0.27314,1.0489,1.0,1.023,1.073,1.0,37.6598,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4155,0.9661,1.2821,0.2625,1.087,10.6427,10.6321,7.5653,0.0,0.0,17.0329,6.7181,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-capetown-zaf.xml,78.2,36.331,29.7351,38.0233,0.1764,1.0313,1.0,1.0148,1.0466,1.0,27.1984,0.0,0.0,4.32,4.48,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8009,0.4831,0.9591,1.2821,0.2625,1.087,0.6879,7.0269,6.6293,0.0,0.0,1.1011,3.819,7.513,1.19,3.82,7.51,15.07,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.33,1.0,50.33,78.2,78.2,0.0,48.06,1.0,48.06,78.2,78.2,0.0,77.17,36.62,29.5776,38.3257,0.1764,1.0313,1.0,1.0148,1.0466,1.0,26.9616,0.0,0.0,4.75,4.35,8.36,7.61,2.37,9.47,19.17,0.0,0.0,0.8008,0.4806,0.959,1.2821,0.2625,1.087,0.4682,7.3978,6.6286,0.0,0.0,0.7495,4.041,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-dallas-tx.xml,68.73,63.068,46.5282,67.6928,0.27419,1.0491,1.0,1.0231,1.0733,1.0,37.3576,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8002,0.4431,0.9612,1.2821,0.2625,1.087,3.0322,22.152,5.9369,0.0,0.0,4.8579,13.1261,6.714,5.24,13.13,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.42,5970.93,7577.46,47.26,1.0,47.26,68.73,68.73,0.0,44.31,1.0,44.31,68.73,68.73,0.0,65.87,63.657,45.0065,68.325,0.27419,1.0491,1.0,1.0231,1.0733,1.0,36.3958,0.0,0.0,10.41,26.51,7.52,16.68,15.85,8.5,19.22,0.0,0.0,0.8003,0.4391,0.961,1.2821,0.2625,1.087,2.5599,21.4162,5.9354,0.0,0.0,4.101,12.8061,6.713,4.42,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,75.46,79.013,63.7077,84.4246,0.25668,1.0459,1.0,1.0216,1.0685,1.0,54.1566,0.0,0.0,45.93,1.75,13.08,73.17,1.97,14.52,18.26,0.0,0.0,0.8047,0.2328,0.9791,1.2821,0.2625,1.087,36.7573,2.0328,10.2876,0.0,0.0,58.5622,2.292,11.421,63.13,2.29,11.42,14.31,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,168.78,11371.7,6305.71,54.11,1.0,54.11,75.46,75.46,0.0,58.76,1.0,58.76,75.46,75.46,0.0,67.45,83.952,60.5013,89.7019,0.25668,1.0459,1.0,1.0216,1.0685,1.0,51.8846,0.0,0.0,51.02,1.6,13.08,81.28,1.91,14.52,18.26,0.0,0.0,0.8047,0.2195,0.9791,1.2821,0.2625,1.087,33.9367,1.9701,10.2885,0.0,0.0,54.067,2.356,11.422,58.29,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-helena-mt.xml,77.53,92.35,72.357,93.3324,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.268,0.0,0.0,49.58,3.69,11.89,78.97,2.67,12.94,27.19,0.0,0.0,0.8049,0.3634,0.9988,1.2821,0.2625,1.087,38.5757,3.3482,9.3421,0.0,0.0,61.4415,2.419,10.167,66.24,2.42,10.17,21.08,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,200.69,11832.58,5833.99,58.05,1.0,58.05,77.53,77.53,0.0,51.12,1.0,51.12,77.53,77.53,0.0,72.21,98.963,72.2247,100.0158,0.22338,0.992,1.0,1.0188,1.0106,1.0,61.2334,0.0,0.0,56.4,3.49,11.89,89.83,2.59,12.95,27.18,0.0,0.0,0.8049,0.3542,0.9985,1.2821,0.2625,1.087,38.5357,3.264,9.34,0.0,0.0,61.3766,2.419,10.167,66.17,2.42,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,83.81,76.713,64.9715,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.156,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.5704,7.0651,8.212,0.0,0.0,21.3182,3.695,9.02,21.32,3.7,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.06,4667.84,5561.74,53.34,1.0,53.34,83.81,83.81,0.0,47.33,1.0,47.33,83.81,83.81,0.0,79.93,80.743,65.2138,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,55.129,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.8378,7.0475,8.2105,0.0,0.0,21.2972,3.695,9.02,21.3,3.7,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,72.24,76.713,55.9995,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,48.91,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,21.6081,5.0555,8.212,0.0,0.0,16.1231,2.644,9.02,16.12,2.64,9.02,21.12,0.01,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.44,4127.3,5561.74,53.34,1.0,53.34,72.24,72.24,0.0,47.33,1.0,47.33,72.24,72.24,0.0,68.85,80.743,56.1789,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,48.886,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,21.8074,5.0429,8.2105,0.0,0.0,16.1051,2.644,9.02,16.11,2.64,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,71.74,76.713,55.6097,77.5177,0.22029,0.9921,1.0,1.0185,1.0105,1.0,48.794,0.0,0.0,30.56,8.44,10.49,22.81,4.27,11.52,27.23,0.0,0.0,0.594,0.5188,0.9896,0.4432,0.2625,1.087,22.3076,3.9661,8.212,0.0,0.0,16.6451,2.007,9.02,16.65,2.01,9.02,21.12,0.01,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.56,4126.4,5551.6,53.41,1.0,53.41,71.74,71.74,0.0,47.4,1.0,47.4,71.74,71.74,0.0,68.38,80.742,55.7937,81.589,0.22029,0.9921,1.0,1.0185,1.0105,1.0,48.768,0.0,0.0,34.66,8.37,10.49,25.6,4.25,11.52,27.22,0.0,0.0,0.6002,0.5172,0.9894,0.4432,0.2625,1.087,22.5115,3.9536,8.2105,0.0,0.0,16.6251,2.007,9.02,16.63,2.01,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-elec-only.xml,99.34,76.703,76.9904,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,65.866,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,40.0254,7.6291,8.212,0.0,0.0,30.9823,4.742,9.02,30.98,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.27,5614.93,5712.65,56.21,1.0,56.21,99.34,99.34,0.0,50.29,1.0,50.29,99.34,99.34,0.0,94.66,80.734,77.2201,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,65.821,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,40.2921,7.5995,8.2105,0.0,0.0,30.9433,4.741,9.02,30.94,4.74,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-gas-only.xml,71.19,76.703,55.2037,77.5475,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.2106,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.4224,0.9896,1.25,0.2625,1.087,18.2386,7.6291,8.212,0.0,0.0,29.8352,4.742,9.02,32.99,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,132.81,7670.28,5712.65,57.31,1.0,57.31,71.19,71.19,0.0,51.96,1.0,51.96,71.19,71.19,0.0,67.62,80.733,55.195,81.6218,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.1872,0.0,0.0,34.66,8.36,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4208,0.9894,1.25,0.2625,1.087,18.267,7.5995,8.2105,0.0,0.0,29.7972,4.741,9.02,32.95,4.74,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-oil-only.xml,71.2,76.703,55.2153,77.5475,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.3408,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.4224,0.9896,1.25,0.2625,1.087,18.2502,7.6291,8.212,0.0,0.0,29.8542,4.742,9.02,33.01,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.08,9245.52,5712.65,57.31,1.0,57.31,71.2,71.2,0.0,51.96,1.0,51.96,71.2,71.2,0.0,67.64,80.733,55.2066,81.6218,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.3174,0.0,0.0,34.66,8.36,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4208,0.9894,1.25,0.2625,1.087,18.2786,7.5995,8.2105,0.0,0.0,29.8162,4.741,9.02,32.97,4.74,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-propane-only.xml,71.19,76.703,55.2037,77.5475,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.2106,0.0,0.0,30.56,8.43,10.49,49.99,5.24,11.52,27.23,0.0,0.0,0.7641,0.4224,0.9896,1.25,0.2625,1.087,18.2386,7.6291,8.212,0.0,0.0,29.8352,4.742,9.02,32.99,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.11,8669.75,5712.65,57.31,1.0,57.31,71.19,71.19,0.0,51.96,1.0,51.96,71.19,71.19,0.0,67.62,80.733,55.195,81.6218,0.23114,0.9918,1.0,1.0194,1.011,1.0,48.1872,0.0,0.0,34.66,8.36,10.49,56.54,5.22,11.52,27.22,0.0,0.0,0.7663,0.4208,0.9894,1.25,0.2625,1.087,18.267,7.5995,8.2105,0.0,0.0,29.7972,4.741,9.02,32.95,4.74,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,84.99,76.703,65.8829,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,53.9812,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,7.9895,8.212,0.0,0.0,45.4787,4.966,9.02,45.48,4.97,9.02,21.12,0.01,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.07,9471.92,5712.65,72.13,1.0,72.13,84.99,84.99,0.0,62.7,1.0,62.7,84.99,84.99,0.0,80.66,80.733,65.8076,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,53.9502,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,7.9601,8.2105,0.0,0.0,45.4177,4.966,9.02,45.42,4.97,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed.xml,85.02,76.703,65.9022,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,53.9932,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,8.0088,8.212,0.0,0.0,45.4787,4.978,9.02,45.48,4.98,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.09,9472.78,5712.65,72.13,1.0,72.13,85.02,85.02,0.0,62.7,1.0,62.7,85.02,85.02,0.0,80.68,80.733,65.8268,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,53.9622,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,7.9794,8.2105,0.0,0.0,45.4177,4.978,9.02,45.42,4.98,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-2-speed.xml,82.71,76.703,64.1132,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,52.8812,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,6.2198,8.212,0.0,0.0,45.4787,3.866,9.02,45.48,3.87,9.02,21.12,0.01,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.69,9392.14,5712.65,72.13,1.0,72.13,82.71,82.71,0.0,62.7,1.0,62.7,82.71,82.71,0.0,78.5,80.733,64.0444,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,52.8502,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,6.1969,8.2105,0.0,0.0,45.4177,3.866,9.02,45.42,3.87,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-var-speed.xml,81.52,76.702,63.1909,77.5128,0.22197,0.9921,1.0,1.0186,1.0106,1.0,52.2172,0.0,0.0,30.56,8.43,10.49,48.67,5.09,11.52,27.23,0.0,0.0,0.805,0.4344,0.9896,1.2821,0.2625,1.087,28.5574,5.2975,8.212,0.0,0.0,45.4787,3.202,9.02,45.48,3.2,9.02,21.12,0.01,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.13,9343.15,5702.42,72.16,1.0,72.16,81.52,81.52,0.0,62.73,1.0,62.73,81.52,81.52,0.0,77.4,80.731,63.1454,81.5844,0.22197,0.9921,1.0,1.0186,1.0106,1.0,52.2002,0.0,0.0,34.66,8.36,10.49,55.2,5.08,11.52,27.22,0.0,0.0,0.805,0.4325,0.9894,1.2821,0.2625,1.087,28.5189,5.298,8.2105,0.0,0.0,45.4177,3.216,9.02,45.42,3.22,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,86.23,76.703,66.8347,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,57.947,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,29.49,8.0088,8.212,0.0,0.0,22.8272,4.978,9.02,22.83,4.98,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,85.04,4908.91,5712.65,55.03,1.0,55.03,86.23,86.23,0.0,49.0,1.0,49.0,86.23,86.23,0.0,82.13,80.734,66.998,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,57.916,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,29.6901,7.9794,8.2105,0.0,0.0,22.8012,4.978,9.02,22.8,4.98,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-dse.xml,78.27,76.703,60.6687,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.495,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.5787,8.754,8.212,0.0,0.0,35.9618,5.409,9.02,38.77,5.41,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.99,8542.62,5561.74,56.72,1.0,56.72,78.27,78.27,0.0,51.05,1.0,51.05,78.27,78.27,0.0,74.26,80.733,60.5832,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4664,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,22.5511,8.7036,8.2105,0.0,0.0,35.9136,5.409,9.02,38.72,5.41,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,80.74,76.712,62.5842,77.5157,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.091,0.0,0.0,30.560000000000002,8.44,10.49,32.65,4.41,11.52,27.23,0.0,0.0,1.4233,0.502,0.9896,1.7253,0.2625,1.087,26.1832,7.0651,8.212,0.0,0.0,27.152,3.695,9.02,28.61,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,109.59,6159.07,5561.74,53.34,1.0,53.34,80.74,80.74,0.0,47.33,1.0,47.33,80.74,80.74,0.0,76.96,80.743,62.7909,81.589,0.22003,0.9922,1.0,1.0185,1.0105,1.0,53.0664,0.0,0.0,34.66,8.37,10.49,36.43,4.39,11.52,27.22,0.0,0.0,1.4325,0.5007,0.9894,1.7253,0.2625,1.087,26.4149,7.0475,8.2105,0.0,0.0,27.126199999999997,3.695,9.02,28.589999999999996,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.0,76.712,62.0108,77.5152,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.862,0.0,0.0,30.560000000000002,8.44,10.49,36.39,4.41,11.52,27.23,0.0,0.0,1.4231,0.502,0.9896,1.7253,0.2625,1.087,25.6097,7.0651,8.212,0.0,0.0,29.7396,3.695,9.02,31.73,3.7,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,120.24,6757.48,5561.74,53.34,1.0,53.34,80.0,80.0,0.0,47.33,1.0,47.33,80.0,80.0,0.0,76.23,80.743,62.1935,81.5884,0.21986,0.9922,1.0,1.0185,1.0105,1.0,52.8394,0.0,0.0,34.66,8.37,10.49,40.61,4.39,11.52,27.22,0.0,0.0,1.4344000000000001,0.5007,0.9894,1.7253,0.2625,1.087,25.8175,7.0475,8.2105,0.0,0.0,29.713099999999997,3.695,9.02,31.700000000000003,3.7,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-area-fractions.xml,84.37,104.684,85.26,101.0581,0.22161,0.9654,1.0,1.0,0.9654,1.0,69.2338,0.0,0.0,46.45,12.42,10.49,73.98,7.19,11.52,35.33,0.0,0.0,0.8049,0.4536,0.9896,1.2821,0.2625,1.087,37.3694,12.5516,8.0699,0.0,0.0,59.5195,7.2651,8.864,64.16,7.27,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,178.55,12930.23,7501.69,56.53,1.0,56.53,84.37,84.37,0.0,51.21,1.0,51.21,84.37,84.37,0.0,77.36,114.291,85.3503,110.3323,0.22161,0.9654,1.0,1.0,0.9654,1.0,69.2338,0.0,0.0,56.1,12.38,10.49,89.35,7.11,11.52,35.32,0.0,0.0,0.805,0.4568,0.9893,1.2821,0.2625,1.087,37.3716,12.6419,8.0678,0.0,0.0,59.5195,7.2651,8.864,64.16,7.27,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-buried.xml,75.3,76.703,58.3703,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.0604,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,21.6463,7.3881,8.212,0.0,0.0,34.4767,4.565,9.02,37.17,4.57,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.55,8236.7,5561.74,56.73,1.0,56.73,75.3,75.3,0.0,51.06,1.0,51.06,75.3,75.3,0.0,71.46,80.733,58.2984,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.0374,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,21.6243,7.3455,8.2105,0.0,0.0,34.4377,4.565,9.02,37.13,4.57,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-leakage-cfm50.xml,76.38,76.703,59.2077,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.5838,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.27,7.6017,8.212,0.0,0.0,35.4702,4.697,9.02,38.24,4.7,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.6,8408.18,5561.74,56.73,1.0,56.73,76.38,76.38,0.0,51.06,1.0,51.06,76.38,76.38,0.0,72.48,80.733,59.1327,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.5558,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,22.2447,7.5595,8.2105,0.0,0.0,35.4256,4.698,9.02,38.19,4.7,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-elec-resistance-only.xml,95.33,76.703,73.8886,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,63.465,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,36.9235,7.6291,8.212,0.0,0.0,28.5813,4.742,9.02,28.58,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.67,5406.76,5712.65,56.21,1.0,56.21,95.33,95.33,0.0,50.29,1.0,50.29,95.33,95.33,0.0,90.83,80.734,74.0936,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,63.42,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,37.1656,7.5995,8.2105,0.0,0.0,28.5423,4.741,9.02,28.54,4.74,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only-ducted.xml,76.16,76.703,59.0373,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.7262,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,1.1439,8.212,0.0,0.0,45.4787,0.711,9.02,45.48,0.71,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.55,9153.19,5712.65,72.13,1.0,72.13,76.16,76.16,0.0,62.7,1.0,62.7,76.16,76.16,0.0,72.3,80.733,58.9871,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.6952,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,1.1397,8.2105,0.0,0.0,45.4177,0.711,9.02,45.42,0.71,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only.xml,76.0,76.703,58.9102,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.6472,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,1.0168,8.212,0.0,0.0,45.4787,0.632,9.02,45.48,0.63,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.46,9147.74,5712.65,72.13,1.0,72.13,76.0,76.0,0.0,62.7,1.0,62.7,76.0,76.0,0.0,72.14,80.733,58.8605,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.6162,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,1.0131,8.2105,0.0,0.0,45.4177,0.632,9.02,45.42,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-fireplace-wood-only.xml,76.33,76.703,59.1649,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.174,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,22.1999,7.6291,8.212,0.0,0.0,35.354,4.742,9.02,35.73,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.33,76.33,0.0,52.35,1.0,52.35,76.33,76.33,0.0,72.44,80.733,59.0979,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.1488,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,22.1699,7.5995,8.2105,0.0,0.0,35.3065,4.741,9.02,35.68,4.74,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-floor-furnace-propane-only.xml,76.33,76.703,59.1649,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.174,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,22.1999,7.6291,8.212,0.0,0.0,35.354,4.742,9.02,35.73,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,158.94,9175.49,5712.65,57.9,1.0,57.9,76.33,76.33,0.0,52.35,1.0,52.35,76.33,76.33,0.0,72.44,80.733,59.0979,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.1488,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,22.1699,7.5995,8.2105,0.0,0.0,35.3065,4.741,9.02,35.68,4.74,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-elec-only.xml,111.67,76.703,86.5478,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,73.264,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,49.5828,7.6291,8.212,0.0,0.0,38.3803,4.742,9.02,38.38,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,108.97,6289.92,5712.65,56.21,1.0,56.21,111.67,111.67,0.0,50.29,1.0,50.29,111.67,111.67,0.0,106.45,80.734,86.8403,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,73.209,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,49.9123,7.5995,8.2105,0.0,0.0,38.3313,4.741,9.02,38.33,4.74,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-only.xml,78.35,76.703,60.7331,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.9224,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,23.768,7.6291,8.212,0.0,0.0,37.8513,4.742,9.02,40.81,4.74,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.85,8766.13,5712.65,57.9,1.0,57.9,78.35,78.35,0.0,52.35,1.0,52.35,78.35,78.35,0.0,74.36,80.733,60.6661,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.8954,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,23.7381,7.5995,8.2105,0.0,0.0,37.804,4.741,9.02,40.75,4.74,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.71,76.675,64.8612,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.5672,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5565,6.968,8.2127,0.0,0.0,45.4787,3.552,9.02,45.48,3.55,9.02,21.12,0.01,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.56,9361.95,5629.6,70.68,1.0,70.68,83.71,83.71,0.0,61.27,1.0,61.27,83.71,83.71,0.0,79.45,80.709,64.7966,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,52.5352,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5189,6.9491,8.2105,0.0,0.0,45.4177,3.552,9.02,45.42,3.55,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.16,76.703,55.1523,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,48.962,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,18.1872,7.6291,8.212,0.0,0.0,14.0781,4.742,9.02,14.08,4.74,9.02,21.12,0.01,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.87,4090.77,5712.65,56.21,1.0,56.21,71.16,71.16,0.0,50.29,1.0,50.29,71.16,71.16,0.0,67.71,80.734,55.2348,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,48.937,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,18.3068,7.5995,8.2105,0.0,0.0,14.0591,4.741,9.02,14.06,4.74,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump.xml,68.31,76.713,52.9529,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.385,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.4333,6.1837,8.212,0.0,0.0,13.0081,3.234,9.02,13.01,3.23,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.93,3874.21,5561.74,53.34,1.0,53.34,68.31,68.31,0.0,47.33,1.0,47.33,68.31,68.31,0.0,65.06,80.743,53.0857,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.361,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.5908,6.1663,8.2105,0.0,0.0,12.9911,3.233,9.02,12.99,3.23,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.32,76.713,63.8152,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,54.445,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,28.0986,6.3806,8.212,0.0,0.0,20.9662,3.337,9.02,20.97,3.34,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,82.03,4610.22,5561.74,53.34,1.0,53.34,82.32,82.32,0.0,47.33,1.0,47.33,82.32,82.32,0.0,78.5,80.743,64.0517,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,54.418,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,28.3584,6.3647,8.2105,0.0,0.0,20.9432,3.337,9.02,20.94,3.34,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.21,76.703,59.8452,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.9198,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.2199,7.2893,8.212,0.0,0.0,36.9831,4.504,9.02,39.87,4.5,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.82,8645.48,5561.74,56.73,1.0,56.73,77.21,77.21,0.0,51.06,1.0,51.06,77.21,77.21,0.0,73.26,80.733,59.7694,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.8928,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1935,7.2474,8.2105,0.0,0.0,36.9367,4.504,9.02,39.82,4.5,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,66.88,76.713,51.8406,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,45.715,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,17.038,5.4666,8.212,0.0,0.0,12.7131,2.859,9.02,12.71,2.86,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.98,3820.32,5561.74,53.34,1.0,53.34,66.88,66.88,0.0,47.33,1.0,47.33,66.88,66.88,0.0,63.7,80.743,51.9729,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,45.692,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,17.1914,5.453,8.2105,0.0,0.0,12.6961,2.859,9.02,12.7,2.86,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.61,76.703,62.4834,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.8682,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,4.59,8.212,0.0,0.0,45.4787,2.853,9.02,45.48,2.85,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.42,9318.62,5712.65,72.13,1.0,72.13,80.61,80.61,0.0,62.7,1.0,62.7,80.61,80.61,0.0,76.51,80.733,62.4206,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.8372,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,4.5732,8.2105,0.0,0.0,45.4177,2.853,9.02,45.42,2.85,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.95,76.713,51.8964,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.15,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,18.8472,3.7133,8.212,0.0,0.0,14.0631,1.942,9.02,14.06,1.94,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.15,3886.2,5561.74,53.34,1.0,53.34,66.95,66.95,0.0,47.33,1.0,47.33,66.95,66.95,0.0,63.8,80.743,52.0532,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.127,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.0207,3.704,8.2105,0.0,0.0,14.0471,1.942,9.02,14.05,1.94,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,80.87,76.703,62.6861,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.9942,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,4.7927,8.212,0.0,0.0,45.4787,2.979,9.02,45.48,2.98,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9327.58,5712.65,72.13,1.0,72.13,80.87,80.87,0.0,62.7,1.0,62.7,80.87,80.87,0.0,76.76,80.733,62.6226,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.9632,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,4.7751,8.2105,0.0,0.0,45.4177,2.979,9.02,45.42,2.98,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,80.07,76.703,62.0619,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.6062,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,28.5574,4.1685,8.212,0.0,0.0,45.4787,2.591,9.02,45.48,2.59,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.09,9300.0,5712.65,72.13,1.0,72.13,80.07,80.07,0.0,62.7,1.0,62.7,80.07,80.07,0.0,75.99,80.733,61.999,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,51.5742,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,28.5189,4.1516,8.2105,0.0,0.0,45.4177,2.59,9.02,45.42,2.59,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.75,76.675,61.795,77.4838,0.22151,0.9921,1.0,1.0186,1.0105,1.0,51.0042,0.0,0.0,30.56,8.4,10.49,48.67,4.28,11.52,27.23,0.0,0.0,0.805,0.515,0.9897,1.2821,0.2625,1.087,28.5565,3.9019,8.2127,0.0,0.0,45.4787,1.989,9.02,45.48,1.99,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.51,9245.35,5629.6,70.68,1.0,70.68,79.75,79.75,0.0,61.27,1.0,61.27,79.75,79.75,0.0,75.7,80.709,61.7387,81.5604,0.22151,0.9921,1.0,1.0186,1.0105,1.0,50.9732,0.0,0.0,34.66,8.34,10.49,55.2,4.26,11.52,27.22,0.0,0.0,0.805,0.5136,0.9894,1.2821,0.2625,1.087,28.5189,3.8913,8.2105,0.0,0.0,45.4177,1.989,9.02,45.42,1.99,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.0,76.703,55.7995,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,49.463,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,18.8345,7.6291,8.212,0.0,0.0,14.5791,4.742,9.02,14.58,4.74,9.02,21.12,0.01,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.9,4150.54,5712.65,56.21,1.0,56.21,72.0,72.0,0.0,50.29,1.0,50.29,72.0,72.0,0.0,68.51,80.734,55.8871,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,49.438,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,18.9591,7.5995,8.2105,0.0,0.0,14.5601,4.741,9.02,14.56,4.74,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,67.3,76.713,52.1711,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.335,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,19.0416,3.7936,8.212,0.0,0.0,14.2081,1.984,9.02,14.21,1.98,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,69.44,3902.56,5561.74,53.34,1.0,53.34,67.3,67.3,0.0,47.33,1.0,47.33,67.3,67.3,0.0,64.14,80.743,52.3297,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,46.312,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,19.2171,3.7841,8.2105,0.0,0.0,14.1921,1.984,9.02,14.19,1.98,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,62.21,76.713,48.223,77.518,0.22036,0.9921,1.0,1.0185,1.0105,1.0,43.509,0.0,0.0,30.56,8.44,10.49,22.81,4.41,11.52,27.23,0.0,0.0,0.594,0.502,0.9896,0.4432,0.2625,1.087,15.6308,3.2563,8.212,0.0,0.0,11.6631,1.703,9.02,11.66,1.7,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,65.0,3652.97,5561.74,53.34,1.0,53.34,62.21,62.21,0.0,47.33,1.0,47.33,62.21,62.21,0.0,59.26,80.743,48.3476,81.5903,0.22036,0.9921,1.0,1.0185,1.0105,1.0,43.487,0.0,0.0,34.66,8.37,10.49,25.6,4.39,11.52,27.22,0.0,0.0,0.6002,0.5007,0.9894,0.4432,0.2625,1.087,15.7709,3.2481,8.2105,0.0,0.0,11.6471,1.703,9.02,11.65,1.7,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-multiple.xml,95.59,76.6672,74.0263,77.4403,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.283,0.0,0.0,30.5,8.43,10.49,36.47,7.15,11.52,27.23,0.0,0.0,6.0658,2.1174,0.9896,7.7555,1.5750000000000002,1.087,37.7513,6.9389,8.212,0.0,0.0,43.8081,5.371,9.02,44.83,5.37,9.02,21.12,0.01,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,137.66,8596.03,6182.02,55.45,1.0,55.45,95.59,95.59,0.0,50.6,1.0,50.6,95.59,95.59,0.0,91.86,80.6852,74.8645,81.4988,0.21182,0.9924,1.0,1.0178,1.0101,1.0,67.24,0.0,0.0,34.6,8.370000000000001,10.49,40.68,7.12,11.52,27.22,0.0,0.0,6.1716999999999995,2.1094,0.9894,7.7555,1.5750000000000002,1.087,38.6219,6.9129,8.2105,0.0,0.0,43.7583,5.372,9.02,44.79,5.38,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 +base-hvac-none.xml,91.9,66.748,64.3338,70.0006,0.18435,1.0328,1.0,1.0155,1.0487,1.0,45.185,0.0,0.0,0.0,42.2,5.18,0.0,23.49,6.1,19.36,0.0,0.0,0.0,0.4717,0.9238,1.2821,0.2625,1.087,0.0,44.7852,4.0346,0.0,0.0,0.0,24.9272,4.747,0.0,24.93,4.75,15.2,0.32,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,69.66,1.0,69.66,91.9,91.9,0.0,62.73,1.0,62.73,91.9,91.9,0.0,89.66,66.747,62.7582,69.9996,0.18435,1.0328,1.0,1.0155,1.0487,1.0,44.184,0.0,0.0,0.0,42.2,5.18,0.0,23.51,6.1,19.36,0.0,0.0,0.0,0.4714,0.9238,1.2821,0.2625,1.087,0.0,43.5256,4.0346,0.0,0.0,0.0,24.2422,4.747,0.0,24.24,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-programmable-thermostat.xml,75.55,76.703,58.5578,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.2134,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,22.1646,7.0644,8.2138,0.0,0.0,35.3023,4.365,9.022,38.06,4.37,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.72,8358.84,5561.74,56.73,1.0,56.73,75.55,75.55,0.0,51.06,1.0,51.06,75.55,75.55,0.0,71.29,80.733,58.1644,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.975,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,21.9732,6.8708,8.2124,0.0,0.0,34.9934,4.27,9.022,37.72,4.27,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-electricity.xml,94.17,76.714,73.001,77.52,0.22062,0.9921,1.0,1.0185,1.0105,1.0,61.834,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.3029,5.3622,8.212,0.0,0.0,28.5803,3.111,9.02,28.58,3.11,9.02,21.12,0.01,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.27,5274.46,5596.38,53.24,1.0,53.24,94.17,94.17,0.0,47.22,1.0,47.22,94.17,94.17,0.0,89.87,80.743,73.3254,81.5913,0.22062,0.9921,1.0,1.0185,1.0105,1.0,61.79,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6481,5.3488,8.2105,0.0,0.0,28.5423,3.111,9.02,28.54,3.11,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,72.4,76.701,56.1157,77.5125,0.22217,0.9921,1.0,1.0187,1.0106,1.0,47.544,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3865,0.9896,1.2821,0.2625,1.087,22.1999,4.5798,8.212,0.0,0.0,35.354,3.111,9.02,35.73,3.11,9.02,21.12,0.01,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,140.63,7953.6,5596.38,56.66,1.0,56.66,72.4,72.4,0.0,51.0,1.0,51.0,72.4,72.4,0.0,68.72,80.732,56.0637,81.5862,0.22217,0.9921,1.0,1.0187,1.0106,1.0,47.5188,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3853,0.9894,1.2821,0.2625,1.087,22.1699,4.5653,8.2105,0.0,0.0,35.3065,3.111,9.02,35.68,3.11,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac.xml,80.6,76.701,62.4732,77.5125,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.1262,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3865,0.9896,1.2821,0.2625,1.087,28.5574,4.5798,8.212,0.0,0.0,45.4787,3.111,9.02,45.48,3.11,9.02,21.12,0.01,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.57,9326.23,5747.41,72.07,1.0,72.07,80.6,80.6,0.0,62.64,1.0,62.64,80.6,80.6,0.0,76.5,80.732,62.4127,81.5862,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.0952,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3853,0.9894,1.2821,0.2625,1.087,28.5189,4.5653,8.2105,0.0,0.0,45.4177,3.111,9.02,45.42,3.11,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-pthp.xml,65.96,76.714,51.1312,77.52,0.22062,0.9921,1.0,1.0185,1.0105,1.0,45.542,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.5917,5.2036,8.212,0.0,0.0,12.3801,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.34,3808.16,5596.38,53.24,1.0,53.24,65.96,65.96,0.0,47.22,1.0,47.22,65.96,65.96,0.0,62.83,80.743,51.261,81.5913,0.22062,0.9921,1.0,1.0185,1.0105,1.0,45.52,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.7418,5.1906,8.2105,0.0,0.0,12.3641,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only-ceer.xml,82.14,76.701,63.6701,77.5125,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.9392,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3865,0.9896,1.2821,0.2625,1.087,28.5574,5.7767,8.212,0.0,0.0,45.4787,3.924,9.02,45.48,3.92,9.02,21.12,0.01,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9384.56,5747.41,72.07,1.0,72.07,82.14,82.14,0.0,62.64,1.0,62.64,82.14,82.14,0.0,77.96,80.732,63.6058,81.5862,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.9082,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3853,0.9894,1.2821,0.2625,1.087,28.5189,5.7583,8.2105,0.0,0.0,45.4177,3.924,9.02,45.42,3.92,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only.xml,82.13,76.701,63.6583,77.5125,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.9312,0.0,0.0,30.56,8.43,10.49,48.67,5.72,11.52,27.23,0.0,0.0,0.805,0.3865,0.9896,1.2821,0.2625,1.087,28.5574,5.7649,8.212,0.0,0.0,45.4787,3.916,9.02,45.48,3.92,9.02,21.12,0.01,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.56,9384.03,5747.41,72.07,1.0,72.07,82.13,82.13,0.0,62.64,1.0,62.64,82.13,82.13,0.0,77.95,80.732,63.5941,81.5862,0.22217,0.9921,1.0,1.0187,1.0106,1.0,52.9002,0.0,0.0,34.66,8.36,10.49,55.2,5.7,11.52,27.22,0.0,0.0,0.805,0.3853,0.9894,1.2821,0.2625,1.087,28.5189,5.7466,8.2105,0.0,0.0,45.4177,3.916,9.02,45.42,3.92,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-heating.xml,95.96,76.714,74.3886,77.52,0.22062,0.9921,1.0,1.0185,1.0105,1.0,62.639,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,38.3029,6.7497,8.212,0.0,0.0,28.5803,3.916,9.02,28.58,3.92,9.02,21.12,0.01,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.29,5332.26,5596.38,53.24,1.0,53.24,95.96,95.96,0.0,47.22,1.0,47.22,95.96,95.96,0.0,91.57,80.743,74.7094,81.5913,0.22062,0.9921,1.0,1.0185,1.0105,1.0,62.595,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,38.6481,6.7328,8.2105,0.0,0.0,28.5423,3.916,9.02,28.54,3.92,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,65.96,76.714,51.1312,77.52,0.22062,0.9921,1.0,1.0185,1.0105,1.0,45.542,0.0,0.0,30.56,8.44,10.49,22.81,4.9,11.52,27.23,0.0,0.0,0.594,0.4525,0.9896,0.4432,0.2625,1.087,16.5917,5.2036,8.212,0.0,0.0,12.3801,3.019,9.02,12.38,3.02,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.34,3808.16,5596.38,53.24,1.0,53.24,65.96,65.96,0.0,47.22,1.0,47.22,65.96,65.96,0.0,62.83,80.743,51.261,81.5913,0.22062,0.9921,1.0,1.0185,1.0105,1.0,45.52,0.0,0.0,34.66,8.37,10.49,25.6,4.87,11.52,27.22,0.0,0.0,0.6002,0.4514,0.9894,0.4432,0.2625,1.087,16.7418,5.1906,8.2105,0.0,0.0,12.3641,3.019,9.02,12.36,3.02,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-space-heater-gas-only.xml,68.21,76.703,52.8705,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,46.316,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,15.9054,7.6291,8.212,0.0,0.0,25.3299,4.742,9.02,28.58,4.74,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.83,7033.41,5712.65,57.9,1.0,57.9,68.21,68.21,0.0,52.35,1.0,52.35,68.21,68.21,0.0,64.73,80.733,52.8122,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,46.2948,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,15.8842,7.5995,8.2105,0.0,0.0,25.2963,4.741,9.02,28.54,4.74,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-stove-wood-pellets-only.xml,76.31,76.703,59.1481,77.514,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.228,0.0,0.0,30.56,8.43,10.49,48.67,5.24,11.52,27.23,0.0,0.0,0.805,0.4224,0.9896,1.2821,0.2625,1.087,22.1831,7.6291,8.212,0.0,0.0,35.3273,4.742,9.02,35.7,4.74,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.9,1.0,57.9,76.31,76.31,0.0,52.35,1.0,52.35,76.31,76.31,0.0,72.42,80.733,59.0817,81.5866,0.22202,0.9921,1.0,1.0186,1.0106,1.0,49.2022,0.0,0.0,34.66,8.36,10.49,55.2,5.22,11.52,27.22,0.0,0.0,0.805,0.4208,0.9894,1.2821,0.2625,1.087,22.1537,7.5995,8.2105,0.0,0.0,35.2808,4.741,9.02,35.65,4.74,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-undersized.xml,73.3,76.703,56.8195,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,48.9896,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,20.492,6.9915,8.212,0.0,0.0,32.6381,4.32,9.02,35.19,4.32,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,141.1,7930.17,5561.74,56.73,1.0,56.73,73.3,73.3,0.0,51.06,1.0,51.06,73.3,73.3,0.0,69.56,80.733,56.7497,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,48.9666,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,20.4699,6.9513,8.2105,0.0,0.0,32.5992,4.32,9.02,35.14,4.32,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-wall-furnace-elec-only.xml,96.3,76.703,74.6405,77.5043,0.21939,0.9922,1.0,1.0184,1.0104,1.0,64.048,0.0,0.0,30.56,8.43,10.49,23.66,5.24,11.52,27.23,0.0,0.0,0.5726,0.4224,0.9896,0.4432,0.2625,1.087,37.6754,7.6291,8.212,0.0,0.0,29.1633,4.742,9.02,29.16,4.74,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.58,5459.43,5712.65,56.21,1.0,56.21,96.3,96.3,0.0,50.29,1.0,50.29,96.3,96.3,0.0,91.76,80.734,74.8515,81.5774,0.21939,0.9922,1.0,1.0184,1.0104,1.0,64.002,0.0,0.0,34.66,8.36,10.49,26.62,5.22,11.52,27.22,0.0,0.0,0.5772,0.4208,0.9894,0.4432,0.2625,1.087,37.9235,7.5995,8.2105,0.0,0.0,29.1243,4.741,9.02,29.12,4.74,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans-label-energy-use.xml,78.0,77.128,60.7865,77.9335,0.21932,0.9922,1.0,1.0184,1.0104,1.0,51.9764,0.0,0.0,30.55,8.12,10.49,48.65,5.05,11.52,27.98,0.0,0.0,0.8049,0.4221,0.9898,1.2821,0.2625,1.087,23.1699,7.5923,8.2123,0.0,0.0,36.9043,4.722,9.018,39.78,4.72,9.02,21.81,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.18,8692.61,5615.97,56.74,1.0,56.74,78.0,78.0,0.0,51.12,1.0,51.12,78.0,78.0,0.0,74.04,81.141,60.7054,81.9884,0.21932,0.9922,1.0,1.0184,1.0104,1.0,51.9504,0.0,0.0,34.64,8.04,10.49,55.17,5.03,11.52,27.97,0.0,0.0,0.805,0.4194,0.9897,1.2821,0.2625,1.087,23.1432,7.5454,8.2109,0.0,0.0,36.8569,4.723,9.018,39.73,4.72,9.02,21.81,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans.xml,77.71,77.128,60.5631,77.9335,0.21932,0.9922,1.0,1.0184,1.0104,1.0,51.7782,0.0,0.0,30.55,8.12,10.49,48.65,5.05,11.52,27.98,0.0,0.0,0.8049,0.4221,0.9898,1.2821,0.2625,1.087,23.1711,7.5248,8.2123,0.0,0.0,36.9061,4.68,9.018,39.79,4.68,9.02,21.65,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.88,8675.54,5615.97,56.74,1.0,56.74,77.71,77.71,0.0,51.12,1.0,51.12,77.71,77.71,0.0,73.77,81.141,60.4825,81.9884,0.21932,0.9922,1.0,1.0184,1.0104,1.0,51.7512,0.0,0.0,34.64,8.04,10.49,55.17,5.03,11.52,27.97,0.0,0.0,0.805,0.4194,0.9897,1.2821,0.2625,1.087,23.1443,7.4783,8.2109,0.0,0.0,36.8588,4.681,9.018,39.74,4.68,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-baltimore-md.xml,70.86,60.303,45.8505,64.7085,0.2732,1.0489,1.0,1.023,1.0731,1.0,39.0758,0.0,0.0,20.97,10.59,9.61,33.56,6.63,10.81,19.15,0.0,0.0,0.801,0.4194,0.9661,1.2821,0.2625,1.087,11.9865,10.9705,7.5636,0.0,0.0,19.1859,6.8681,8.51,20.68,6.87,8.51,15.01,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.4,9324.12,11679.35,51.47,1.0,51.47,70.86,70.86,0.0,49.06,1.0,49.06,70.86,70.86,0.0,66.95,61.054,43.8591,65.5144,0.2732,1.0489,1.0,1.023,1.0731,1.0,37.6598,0.0,0.0,21.75,10.56,9.61,34.81,6.67,10.81,19.14,0.0,0.0,0.8011,0.4155,0.9661,1.2821,0.2625,1.087,10.6427,10.6321,7.5653,0.0,0.0,17.0329,6.7181,8.512,18.36,6.72,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-capetown-zaf.xml,78.2,36.331,29.7351,38.0237,0.17645,1.0313,1.0,1.0148,1.0466,1.0,27.1984,0.0,0.0,4.32,4.48,8.36,6.92,2.44,9.47,19.17,0.0,0.0,0.8009,0.4831,0.9591,1.2821,0.2625,1.087,0.6879,7.0269,6.6293,0.0,0.0,1.1011,3.819,7.513,1.19,3.82,7.51,15.07,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,50.33,1.0,50.33,78.2,78.2,0.0,48.06,1.0,48.06,78.2,78.2,0.0,77.17,36.62,29.5776,38.3262,0.17645,1.0313,1.0,1.0148,1.0466,1.0,26.9616,0.0,0.0,4.75,4.35,8.36,7.61,2.37,9.47,19.17,0.0,0.0,0.8008,0.4806,0.959,1.2821,0.2625,1.087,0.4682,7.3978,6.6286,0.0,0.0,0.7495,4.041,7.513,0.81,4.04,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-dallas-tx.xml,68.74,63.072,46.5334,67.6968,0.27418,1.0491,1.0,1.0231,1.0733,1.0,37.361,0.0,0.0,9.9,26.44,7.52,15.86,15.66,8.5,19.22,0.0,0.0,0.8003,0.4431,0.9612,1.2821,0.2625,1.087,3.0358,22.1537,5.9369,0.0,0.0,4.8635,13.1271,6.714,5.24,13.13,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,73.42,5971.88,7577.96,47.26,1.0,47.26,68.74,68.74,0.0,44.31,1.0,44.31,68.74,68.74,0.0,65.87,63.661,45.0081,68.329,0.27418,1.0491,1.0,1.0231,1.0733,1.0,36.3978,0.0,0.0,10.42,26.51,7.52,16.69,15.85,8.5,19.22,0.0,0.0,0.8003,0.439,0.961,1.2821,0.2625,1.087,2.5629,21.4149,5.9354,0.0,0.0,4.1056,12.8061,6.713,4.43,12.81,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,75.46,79.015,63.7096,84.4297,0.25682,1.0459,1.0,1.0216,1.0685,1.0,54.1578,0.0,0.0,45.93,1.75,13.08,73.18,1.97,14.52,18.26,0.0,0.0,0.8047,0.2328,0.9791,1.2821,0.2625,1.087,36.7592,2.0328,10.2876,0.0,0.0,58.565,2.292,11.421,63.14,2.29,11.42,14.31,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,168.78,11372.15,6305.84,54.11,1.0,54.11,75.46,75.46,0.0,58.76,1.0,58.76,75.46,75.46,0.0,67.44,83.954,60.497,89.7072,0.25682,1.0459,1.0,1.0216,1.0685,1.0,51.88,0.0,0.0,51.02,1.6,13.08,81.29,1.91,14.52,18.26,0.0,0.0,0.8047,0.2195,0.9791,1.2821,0.2625,1.087,33.9333,1.9693,10.2885,0.0,0.0,54.0614,2.355,11.422,58.28,2.36,11.42,14.31,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-helena-mt.xml,77.54,92.33,72.3557,93.3092,0.2227,0.9921,1.0,1.0187,1.0106,1.0,61.255,0.0,0.0,49.56,3.69,11.89,78.94,2.65,12.94,27.19,0.0,0.0,0.8049,0.3653,0.9988,1.2821,0.2625,1.087,38.5748,3.3477,9.3421,0.0,0.0,61.4415,2.406,10.167,66.24,2.41,10.17,21.08,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,200.72,11831.85,5832.77,58.06,1.0,58.06,77.54,77.54,0.0,51.14,1.0,51.14,77.54,77.54,0.0,72.23,98.943,72.2229,99.9924,0.2227,0.9921,1.0,1.0187,1.0106,1.0,61.2214,0.0,0.0,56.38,3.49,11.89,89.8,2.57,12.95,27.18,0.0,0.0,0.8049,0.3559,0.9985,1.2821,0.2625,1.087,38.5349,3.263,9.34,0.0,0.0,61.3766,2.407,10.167,66.17,2.41,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-honolulu-hi.xml,80.94,66.75,56.6482,69.9903,0.18367,1.0326,1.0,1.0154,1.0485,1.0,40.728,0.0,0.0,0.0,42.21,5.18,0.0,23.29,6.1,19.36,0.0,0.0,0.0,0.4758,0.9238,1.2821,0.2625,1.087,0.0,37.0996,4.0346,0.0,0.0,0.0,20.4692,4.747,0.0,20.47,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,62.72,1.0,62.72,80.94,80.94,0.0,41.45,1.0,41.45,80.94,80.94,0.0,79.06,66.75,55.3341,69.9903,0.18367,1.0326,1.0,1.0154,1.0485,1.0,39.875,0.0,0.0,0.0,42.21,5.18,0.0,23.3,6.1,19.36,0.0,0.0,0.0,0.4755,0.9238,1.2821,0.2625,1.087,0.0,36.1015,4.0346,0.0,0.0,0.0,19.9322,4.747,0.0,19.93,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-miami-fl.xml,77.74,65.358,53.5603,68.9004,0.20451,1.0364,1.0,1.0172,1.0542,1.0,40.1232,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4508,0.9264,1.2821,0.2625,1.087,0.0018,33.9001,4.1565,0.0,0.0,0.0028,19.7442,4.877,0.0,19.74,4.88,15.18,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.03,5928.43,7300.71,63.51,1.0,63.51,77.74,77.74,0.0,43.47,1.0,43.47,77.74,77.74,0.0,75.57,65.357,52.0678,68.8994,0.20451,1.0364,1.0,1.0172,1.0542,1.0,39.12,0.0,0.0,0.06,40.62,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.793,0.4508,0.9264,1.2821,0.2625,1.087,0.0,32.7253,4.1565,0.0,0.0,0.0,19.0592,4.877,0.0,19.06,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-phoenix-az.xml,70.82,77.854,59.3386,83.7928,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.961,0.0,0.0,1.43,51.54,5.6,2.29,29.19,6.55,19.29,0.0,0.0,0.8003,0.4636,0.9289,1.2821,0.2625,1.087,0.1048,39.3992,4.3635,0.0,0.0,0.1679,22.3142,5.106,0.18,22.31,5.11,15.15,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,71.37,4815.06,6268.5,49.1,1.0,49.1,70.82,70.82,0.0,44.74,1.0,44.74,70.82,70.82,0.0,69.61,77.931,58.3817,83.8756,0.28483,1.0511,1.0,1.024,1.0763,1.0,42.2858,0.0,0.0,1.46,51.59,5.6,2.33,29.23,6.55,19.28,0.0,0.0,0.8003,0.4634,0.9289,1.2821,0.2625,1.087,0.0591,38.8011,4.3635,0.0,0.0,0.0946,21.9822,5.106,0.1,21.98,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-portland-or.xml,77.63,46.214,37.6741,48.5325,0.18967,1.0337,1.0,1.0159,1.0502,1.0,34.3636,0.0,0.0,13.7,3.43,9.97,21.93,2.46,11.25,19.11,0.0,0.0,0.8007,0.3657,0.9636,1.2821,0.2625,1.087,10.6606,3.8113,7.9182,0.0,0.0,17.0691,2.736,8.932,18.4,2.74,8.93,14.97,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.06,4441.13,2895.35,66.27,1.0,66.27,77.63,77.63,0.0,50.06,1.0,50.06,77.63,77.63,0.0,73.35,46.983,36.1906,49.3401,0.18967,1.0337,1.0,1.0159,1.0502,1.0,33.2614,0.0,0.0,14.54,3.36,9.97,23.28,2.43,11.25,19.11,0.0,0.0,0.8007,0.3628,0.9636,1.2821,0.2625,1.087,9.4187,3.8788,7.9191,0.0,0.0,15.0812,2.807,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-balanced.xml,81.81,78.061,64.5327,78.8851,0.22168,0.9921,1.0,1.0186,1.0106,1.0,54.7522,0.0,0.0,30.16,8.6,10.49,48.06,5.3,11.52,27.23,1.58,0.0,0.8047,0.4265,0.9897,1.2821,0.2625,1.087,25.3971,8.016,8.2136,0.0,0.0,40.4617,4.934,9.021,43.62,4.93,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.24,9364.85,5677.07,56.72,1.0,56.72,81.81,81.81,0.0,51.05,1.0,51.05,81.81,81.81,0.0,77.77,82.076,64.5071,82.9424,0.22168,0.9921,1.0,1.0186,1.0106,1.0,54.7522,0.0,0.0,34.25,8.54,10.49,54.55,5.28,11.52,27.22,1.58,0.0,0.8049,0.4249,0.9895,1.2821,0.2625,1.087,25.4028,7.9861,8.2122,0.0,0.0,40.4617,4.934,9.021,43.62,4.93,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,78.55,77.62,61.6153,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.644,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.3529,8.1594,8.212,0.0,0.0,35.6121,5.03,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.06,8608.94,5639.55,56.72,1.0,56.72,78.55,78.55,0.0,51.05,1.0,51.05,78.55,78.55,0.0,74.67,81.621,61.589,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,52.644,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.3581,8.1294,8.2105,0.0,0.0,35.6121,5.03,9.02,38.39,5.03,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.66,77.62,59.3481,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.693,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,21.6018,7.9193,8.212,0.0,0.0,34.4155,4.882,9.02,37.1,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.71,8304.25,5639.55,56.72,1.0,56.72,75.66,75.66,0.0,51.05,1.0,51.05,75.66,75.66,0.0,71.58,81.621,59.0442,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.4986,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,21.3255,7.8902,8.2105,0.0,0.0,33.9674,4.882,9.02,36.62,4.88,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis.xml,79.4,77.62,62.283,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.1036,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,23.0557,8.1594,8.212,0.0,0.0,36.7317,5.03,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.09,8781.81,5639.55,56.72,1.0,56.72,79.4,79.4,0.0,51.05,1.0,51.05,79.4,79.4,0.0,75.48,81.621,62.2569,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,53.1036,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,23.061,8.1294,8.2105,0.0,0.0,36.7317,5.03,9.02,39.6,5.03,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv-atre-asre.xml,70.98,78.642,56.4065,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9858,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9852,8.2923,8.2099,0.0,0.0,27.0604,5.094,9.017,29.17,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7266.94,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3791,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9858,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9892,8.2624,8.2085,0.0,0.0,27.0604,5.094,9.017,29.17,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv.xml,70.98,78.642,56.4082,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.987,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.987,8.2923,8.2099,0.0,0.0,27.0632,5.094,9.017,29.18,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.42,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3808,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.987,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.991,8.2624,8.2085,0.0,0.0,27.0632,5.094,9.017,29.18,5.09,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-exhaust.xml,77.8,77.62,61.022,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.987,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.8787,7.9193,8.212,0.0,0.0,36.4497,4.882,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.92,8658.3,5639.55,56.72,1.0,56.72,77.8,77.8,0.0,51.05,1.0,51.05,77.8,77.8,0.0,73.95,81.621,60.9967,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.987,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.884,7.8902,8.2105,0.0,0.0,36.4497,4.882,9.02,39.29,4.88,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv-asre.xml,70.98,78.642,56.4085,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.988,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9841,8.2955,8.2099,0.0,0.0,27.0585,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7266.97,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.5,82.651,56.3812,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.988,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9881,8.2656,8.2085,0.0,0.0,27.0585,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv.xml,70.98,78.642,56.4109,79.4722,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9896,0.0,0.0,29.99,8.68,10.49,47.78,5.33,11.52,27.23,2.26,0.0,0.8047,0.4274,0.9897,1.2821,0.2625,1.087,16.9864,8.2955,8.2099,0.0,0.0,27.0623,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.58,7267.45,5726.43,56.72,1.0,56.72,70.98,70.98,0.0,51.05,1.0,51.05,70.98,70.98,0.0,67.51,82.651,56.3835,83.5235,0.22168,0.9921,1.0,1.0186,1.0106,1.0,48.9896,0.0,0.0,34.07,8.61,10.49,54.27,5.31,11.52,27.22,2.26,0.0,0.8049,0.4258,0.9895,1.2821,0.2625,1.087,16.9904,8.2656,8.2085,0.0,0.0,27.0623,5.096,9.017,29.17,5.1,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-multiple.xml,81.94,78.274,64.8142,79.1007,0.22179,0.9921,1.0,1.0186,1.0106,1.0,55.6142,0.0,0.0,30.1,8.64,10.49,47.96,6.2,11.52,27.23,1.83,0.0,1.6094,0.7309,0.9897,2.5642,0.525,1.087,25.375500000000002,8.6292,8.2145,0.0,0.0,40.428200000000004,6.199,9.022,43.58,5.78,9.02,21.11,1.49,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,162.83,9447.68,5741.7,57.45,1.0,57.45,81.94,81.94,0.0,51.79,1.0,51.79,81.94,81.94,0.0,77.27,82.245,64.2223,83.1137,0.22179,0.9921,1.0,1.0186,1.0106,1.0,55.2108,0.0,0.0,34.2,8.56,10.49,54.47,6.18,11.52,27.22,1.78,0.0,1.6098,0.7278,0.9895,2.5642,0.525,1.087,24.9028,8.5434,8.2131,0.0,0.0,39.6667,6.164,9.022,42.76,5.75,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 -base-mechvent-supply.xml,77.54,77.62,60.8185,78.4394,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,30.29,8.55,10.49,48.26,5.27,11.52,27.23,1.07,0.0,0.8047,0.4259,0.9896,1.2821,0.2625,1.087,22.5136,8.0799,8.212,0.0,0.0,35.8681,4.981,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.44,8573.52,5639.55,56.72,1.0,56.72,77.54,77.54,0.0,51.05,1.0,51.05,77.54,77.54,0.0,73.7,81.621,60.7925,82.4826,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.8288,0.0,0.0,34.39,8.48,10.49,54.78,5.25,11.52,27.22,1.04,0.0,0.8049,0.4243,0.9894,1.2821,0.2625,1.087,22.5188,8.0502,8.2105,0.0,0.0,35.8681,4.981,9.02,38.67,4.98,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-whole-house-fan.xml,76.2,76.706,59.0697,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.6118,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.195,6.5522,8.2165,0.0,0.0,36.9525,4.051,9.025,39.84,3.4,9.03,21.1,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.97,8597.82,5561.74,56.72,1.0,56.72,76.2,76.2,0.0,51.05,1.0,51.05,76.2,76.2,0.0,72.33,80.735,59.0114,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,50.5848,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.1704,6.5259,8.2151,0.0,0.0,36.9052,4.05,9.025,39.79,3.4,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-misc-generators.xml,76.04,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.9761,58.2236,1.389,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,193.35,10867.18,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,72.17,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9761,58.1966,1.389,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv-battery.xml,39.05,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.5013,52.2516,26.886,0.828,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,119.13,6695.48,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,68.56,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9273,51.3966,3.7347,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv.xml,37.17,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,0.4772,51.4236,26.886,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.28,6816.69,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,68.56,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,0.9273,51.3966,3.7347,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-co2-2019ABCD.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.48,8626.1,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.62,8633.97,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014.xml,77.97,79.846,62.2571,,,,,,,1.0,52.8762,0.0,0.0,31.91,8.42,11.44,50.77,4.34,12.37,28.08,0.0,0.0,0.8058,0.5097,1.0049,1.2821,0.2625,1.087,22.3565,7.7289,10.6197,0.0,0.0,35.5685,3.981,11.487,38.34,3.98,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014A.xml,75.43,78.76,59.4082,,,,,,,1.0,49.932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.3338,7.7436,7.7788,0.0,0.0,35.5323,3.986,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AE.xml,74.55,78.76,59.4082,79.684,0.2462,0.9912,1.0,1.0207,1.0117,1.0,49.932,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.3338,7.7436,7.7788,0.0,0.0,35.5323,3.986,8.553,38.31,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AEG.xml,73.9,78.76,58.8974,79.6995,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.5775,7.6581,7.7788,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019.xml,75.22,77.425,58.8473,78.2333,0.21924,0.9922,1.0,1.0184,1.0104,1.0,49.3916,0.0,0.0,30.51,8.46,10.38,48.53,4.38,11.41,28.08,0.0,0.0,0.8058,0.5067,0.9887,1.2821,0.2625,1.087,22.5768,7.608,7.7795,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019A.xml,76.77,76.708,59.5087,77.5167,0.22139,0.9921,1.0,1.0186,1.0105,1.0,50.09,0.0,0.0,30.56,8.43,10.49,48.62,4.37,11.52,27.23,0.0,0.0,0.8058,0.5065,0.9896,1.2821,0.2625,1.087,22.5723,7.6064,8.212,0.0,0.0,35.9117,3.943,9.02,38.71,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019AB.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABC.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABCD.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022.xml,77.85,76.706,60.3493,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.089,7.9303,8.212,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.9,78.76,58.8974,79.6995,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,31.86,8.44,10.38,50.69,4.34,11.41,28.08,0.0,0.0,0.8058,0.51,0.9886,1.2821,0.2625,1.087,22.5775,7.6581,7.7788,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.42,81.454,58.8698,82.4256,0.25032,0.9911,1.0,1.021,1.0119,1.0,49.3916,0.0,0.0,34.6,8.4,10.38,55.05,4.34,11.41,28.08,0.0,0.0,0.8059,0.5082,0.9885,1.2821,0.2625,1.087,22.5782,7.6305,7.7781,0.0,0.0,35.9201,3.942,8.553,38.72,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base.xml,77.9,76.706,60.385,77.5158,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.4236,0.0,0.0,30.56,8.43,10.49,48.69,5.21,11.52,27.23,0.0,0.0,0.8047,0.4246,0.9896,1.2821,0.2625,1.087,23.1187,7.9303,8.212,0.0,0.0,36.831,4.903,9.02,39.71,4.9,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.62,8633.97,5561.74,56.72,1.0,56.72,77.9,77.9,0.0,51.05,1.0,51.05,77.9,77.9,0.0,73.94,80.735,60.323,81.5873,0.22168,0.9921,1.0,1.0186,1.0106,1.0,51.3966,0.0,0.0,34.66,8.37,10.49,55.2,5.19,11.52,27.22,0.0,0.0,0.8049,0.423,0.9894,1.2821,0.2625,1.087,23.0941,7.9004,8.2105,0.0,0.0,36.7837,4.903,9.02,39.65,4.9,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-phoenix-az.xml,70.81,77.855,59.3314,83.7936,0.28482,1.0511,1.0,1.024,1.0763,1.0,42.9656,0.0,0.0,1.43,51.54,5.6,2.29,29.2,6.55,19.29,0.0,0.0,0.8007,0.4634,0.9289,1.2821,0.2625,1.087,0.1043,39.3926,4.3635,0.0,0.0,0.167,22.3192,5.106,0.18,22.32,5.11,15.15,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,71.35,4815.39,6270.48,49.18,1.0,49.18,70.81,70.81,0.0,44.82,1.0,44.82,70.81,70.81,0.0,69.59,77.931,58.3697,83.8754,0.28482,1.0511,1.0,1.024,1.0763,1.0,42.2888,0.0,0.0,1.46,51.59,5.6,2.34,29.24,6.55,19.28,0.0,0.0,0.8,0.4632,0.9289,1.2821,0.2625,1.087,0.059,38.7891,4.3635,0.0,0.0,0.0946,21.9852,5.106,0.1,21.99,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-portland-or.xml,77.61,46.217,37.6708,48.5373,0.1898,1.0338,1.0,1.0159,1.0502,1.0,34.3654,0.0,0.0,13.7,3.43,9.97,21.94,2.47,11.25,19.11,0.0,0.0,0.8006,0.3653,0.9636,1.2821,0.2625,1.087,10.6603,3.8083,7.9182,0.0,0.0,17.0709,2.737,8.932,18.4,2.74,8.93,14.97,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,146.07,4441.47,2895.35,66.17,1.0,66.17,77.61,77.61,0.0,50.04,1.0,50.04,77.61,77.61,0.0,73.32,46.986,36.1812,49.3449,0.1898,1.0338,1.0,1.0159,1.0502,1.0,33.2596,0.0,0.0,14.54,3.37,9.97,23.29,2.44,11.25,19.11,0.0,0.0,0.8006,0.3622,0.9636,1.2821,0.2625,1.087,9.4167,3.8714,7.9191,0.0,0.0,15.0793,2.806,8.933,16.26,2.81,8.93,14.97,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-balanced.xml,81.93,78.058,64.6245,78.8818,0.22161,0.9921,1.0,1.0186,1.0106,1.0,54.8214,0.0,0.0,30.16,8.6,10.49,48.04,5.29,11.52,27.23,1.58,0.0,0.8049,0.4268,0.9897,1.2821,0.2625,1.087,25.4565,8.0484,8.2136,0.0,0.0,40.547,4.951,9.021,43.71,4.95,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.47,9378.34,5677.07,56.73,1.0,56.73,81.93,81.93,0.0,51.06,1.0,51.06,81.93,81.93,0.0,77.87,82.073,64.5809,82.9391,0.22161,0.9921,1.0,1.0186,1.0106,1.0,54.8214,0.0,0.0,34.25,8.54,10.49,54.54,5.28,11.52,27.22,1.58,0.0,0.805,0.4243,0.9895,1.2821,0.2625,1.087,25.461,8.0017,8.2122,0.0,0.0,40.547,4.951,9.021,43.71,4.95,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,78.67,77.618,61.7051,78.4371,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.7056,0.0,0.0,30.29,8.55,10.49,48.25,5.26,11.52,27.23,1.07,0.0,0.8049,0.4262,0.9896,1.2821,0.2625,1.087,22.4097,8.1944,8.212,0.0,0.0,35.6937,5.048,9.02,38.48,5.05,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.29,8622.02,5639.55,56.73,1.0,56.73,78.67,78.67,0.0,51.06,1.0,51.06,78.67,78.67,0.0,74.76,81.618,61.6588,82.4793,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.7056,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.805,0.4237,0.9894,1.2821,0.2625,1.087,22.413,8.1463,8.2105,0.0,0.0,35.6937,5.048,9.02,38.48,5.05,9.02,21.12,1.77,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,75.78,77.618,59.4414,78.4371,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.7584,0.0,0.0,30.29,8.55,10.49,48.25,5.26,11.52,27.23,1.07,0.0,0.8049,0.4262,0.9896,1.2821,0.2625,1.087,21.6596,7.9558,8.212,0.0,0.0,34.4989,4.901,9.02,37.19,4.9,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,145.95,8317.71,5639.55,56.73,1.0,56.73,75.78,75.78,0.0,51.06,1.0,51.06,75.78,75.78,0.0,71.68,81.618,59.1208,82.4793,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.5648,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.805,0.4237,0.9894,1.2821,0.2625,1.087,21.3826,7.9106,8.2105,0.0,0.0,34.0528,4.902,9.02,36.71,4.9,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis.xml,79.52,77.618,62.3709,78.4371,0.22161,0.9921,1.0,1.0186,1.0106,1.0,53.1644,0.0,0.0,30.29,8.55,10.49,48.25,5.26,11.52,27.23,1.07,0.0,0.8049,0.4262,0.9896,1.2821,0.2625,1.087,23.1121,8.1928,8.212,0.0,0.0,36.8124,5.047,9.02,39.69,5.05,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,154.31,8794.48,5639.55,56.73,1.0,56.73,79.52,79.52,0.0,51.06,1.0,51.06,79.52,79.52,0.0,75.56,81.618,62.3247,82.4793,0.22161,0.9921,1.0,1.0186,1.0106,1.0,53.1644,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.805,0.4237,0.9894,1.2821,0.2625,1.087,23.1155,8.1446,8.2105,0.0,0.0,36.8124,5.047,9.02,39.69,5.05,9.02,21.12,1.74,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv-atre-asre.xml,71.08,78.639,56.4893,79.4689,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0454,0.0,0.0,29.99,8.68,10.49,47.77,5.33,11.52,27.23,2.26,0.0,0.8049,0.4275,0.9897,1.2821,0.2625,1.087,17.0338,8.3266,8.2099,0.0,0.0,27.1309,5.113,9.017,29.25,5.11,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.78,7278.58,5726.43,56.73,1.0,56.73,71.08,71.08,0.0,51.06,1.0,51.06,71.08,71.08,0.0,67.58,82.648,56.4444,83.5202,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0454,0.0,0.0,34.07,8.61,10.49,54.27,5.32,11.52,27.22,2.26,0.0,0.805,0.4252,0.9895,1.2821,0.2625,1.087,17.036,8.2809,8.2085,0.0,0.0,27.1309,5.113,9.017,29.25,5.11,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv.xml,71.09,78.639,56.491,79.4689,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0466,0.0,0.0,29.99,8.68,10.49,47.77,5.33,11.52,27.23,2.26,0.0,0.8049,0.4275,0.9897,1.2821,0.2625,1.087,17.0355,8.3266,8.2099,0.0,0.0,27.1337,5.113,9.017,29.25,5.11,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.79,7279.06,5726.43,56.73,1.0,56.73,71.09,71.09,0.0,51.06,1.0,51.06,71.09,71.09,0.0,67.58,82.648,56.4462,83.5202,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0466,0.0,0.0,34.07,8.61,10.49,54.27,5.32,11.52,27.22,2.26,0.0,0.805,0.4252,0.9895,1.2821,0.2625,1.087,17.0377,8.2809,8.2085,0.0,0.0,27.1337,5.113,9.017,29.25,5.11,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-exhaust.xml,77.92,77.618,61.1144,78.4371,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.0526,0.0,0.0,30.29,8.55,10.49,48.25,5.26,11.52,27.23,1.07,0.0,0.8049,0.4262,0.9896,1.2821,0.2625,1.087,22.9362,7.9542,8.212,0.0,0.0,36.5323,4.9,9.02,39.38,4.9,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,152.16,8671.68,5639.55,56.73,1.0,56.73,77.92,77.92,0.0,51.06,1.0,51.06,77.92,77.92,0.0,74.04,81.618,61.0695,82.4793,0.22161,0.9921,1.0,1.0186,1.0106,1.0,52.0526,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.805,0.4237,0.9894,1.2821,0.2625,1.087,22.9396,7.9074,8.2105,0.0,0.0,36.5323,4.9,9.02,39.38,4.9,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv-asre.xml,71.09,78.639,56.493,79.4689,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0476,0.0,0.0,29.99,8.68,10.49,47.77,5.33,11.52,27.23,2.26,0.0,0.8049,0.4275,0.9897,1.2821,0.2625,1.087,17.0326,8.3315,8.2099,0.0,0.0,27.129,5.116,9.017,29.25,5.12,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.78,7278.61,5726.43,56.73,1.0,56.73,71.09,71.09,0.0,51.06,1.0,51.06,71.09,71.09,0.0,67.59,82.648,56.4481,83.5202,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0476,0.0,0.0,34.07,8.61,10.49,54.27,5.32,11.52,27.22,2.26,0.0,0.805,0.4252,0.9895,1.2821,0.2625,1.087,17.0348,8.2858,8.2085,0.0,0.0,27.129,5.116,9.017,29.25,5.12,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv.xml,71.09,78.639,56.4953,79.4689,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0492,0.0,0.0,29.99,8.68,10.49,47.77,5.33,11.52,27.23,2.26,0.0,0.8049,0.4275,0.9897,1.2821,0.2625,1.087,17.0349,8.3315,8.2099,0.0,0.0,27.1327,5.116,9.017,29.25,5.12,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,125.79,7279.09,5726.43,56.73,1.0,56.73,71.09,71.09,0.0,51.06,1.0,51.06,71.09,71.09,0.0,67.59,82.648,56.4505,83.5202,0.22161,0.9921,1.0,1.0186,1.0106,1.0,49.0492,0.0,0.0,34.07,8.61,10.49,54.27,5.32,11.52,27.22,2.26,0.0,0.805,0.4252,0.9895,1.2821,0.2625,1.087,17.0372,8.2858,8.2085,0.0,0.0,27.1328,5.116,9.017,29.25,5.12,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-multiple.xml,82.09,78.271,64.9348,79.0975,0.22173,0.9921,1.0,1.0186,1.0106,1.0,55.7014,0.0,0.0,30.1,8.62,10.49,47.95,6.2,11.52,27.23,1.83,0.0,1.6099,0.7311,0.9897,2.5642,0.525,1.087,25.4587,8.6666,8.2145,0.0,0.0,40.5497,6.224,9.022,43.72,5.8,9.02,21.11,1.49,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,163.17,9467.7,5741.7,57.46,1.0,57.46,82.09,82.09,0.0,51.79,1.0,51.79,82.09,82.09,0.0,77.44,82.243,64.3588,83.1114,0.22173,0.9921,1.0,1.0186,1.0106,1.0,55.2956,0.0,0.0,34.2,8.56,10.49,54.46,6.16,11.52,27.22,1.78,0.0,1.6099999999999999,0.73,0.9895,2.5642,0.525,1.087,24.9803,8.6026,8.2131,0.0,0.0,39.7826,6.188000000000001,9.022,42.89,5.78,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 +base-mechvent-supply.xml,77.66,77.618,60.9109,78.4371,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.8954,0.0,0.0,30.29,8.55,10.49,48.25,5.26,11.52,27.23,1.07,0.0,0.8049,0.4262,0.9896,1.2821,0.2625,1.087,22.5711,8.1149,8.212,0.0,0.0,35.9507,4.999,9.02,38.76,5.0,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.67,8586.78,5639.55,56.73,1.0,56.73,77.66,77.66,0.0,51.06,1.0,51.06,77.66,77.66,0.0,73.79,81.618,60.8651,82.4793,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.8954,0.0,0.0,34.39,8.48,10.49,54.77,5.25,11.52,27.22,1.04,0.0,0.805,0.4237,0.9894,1.2821,0.2625,1.087,22.5744,8.0672,8.2105,0.0,0.0,35.9507,4.999,9.02,38.76,5.0,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-whole-house-fan.xml,76.32,76.703,59.1594,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.6836,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.2613,6.5756,8.2165,0.0,0.0,37.049,4.063,9.025,39.94,3.42,9.03,21.1,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.24,8612.62,5561.74,56.73,1.0,56.73,76.32,76.32,0.0,51.06,1.0,51.06,76.32,76.32,0.0,72.42,80.733,59.0867,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,50.656,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.2355,6.5361,8.2151,0.0,0.0,37.0035,4.062,9.025,39.89,3.42,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-misc-generators.xml,76.17,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,0.9762,58.2994,1.389,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,193.62,10882.3,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,72.27,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,0.9762,58.2724,1.389,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv-battery.xml,39.17,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,0.502,52.3274,26.886,0.828,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,119.4,6710.88,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,68.66,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,0.9273,51.4724,3.7408,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv.xml,37.29,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,0.4779,51.4994,26.886,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,121.55,6831.81,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,68.66,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,0.9273,51.4724,3.7408,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-co2-2019ABCD.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.75,8641.2,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.75,8641.2,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022C.xml,,,,,,,,,1.0106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153.89,8649.09,5561.74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014.xml,78.06,79.844,62.3275,,,,,,,1.0,52.8826,0.0,0.0,31.91,8.42,11.44,50.77,4.3,12.37,28.08,0.0,0.0,0.8058,0.5137,1.0049,1.2821,0.2625,1.087,22.3658,7.7899,10.6197,0.0,0.0,35.5833,3.981,11.487,38.36,3.98,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014A.xml,75.52,78.759,59.4776,,,,,,,1.0,49.9384,0.0,0.0,31.86,8.44,10.38,50.69,4.31,11.41,28.08,0.0,0.0,0.8058,0.514,0.9886,1.2821,0.2625,1.087,22.3431,7.8038,7.7788,0.0,0.0,35.5471,3.986,8.553,38.32,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AE.xml,74.65,78.759,59.4776,79.679,0.24516,0.9913,1.0,1.0206,1.0117,1.0,49.9384,0.0,0.0,31.86,8.44,10.38,50.69,4.31,11.41,28.08,0.0,0.0,0.8058,0.514,0.9886,1.2821,0.2625,1.087,22.3431,7.8038,7.7788,0.0,0.0,35.5471,3.986,8.553,38.32,3.99,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AEG.xml,73.99,78.759,58.9677,79.6945,0.24927,0.9911,1.0,1.021,1.0119,1.0,49.399,0.0,0.0,31.86,8.44,10.38,50.69,4.31,11.41,28.08,0.0,0.0,0.8058,0.514,0.9886,1.2821,0.2625,1.087,22.5874,7.7176,7.7797,0.0,0.0,35.9358,3.942,8.554,38.74,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019.xml,75.37,77.424,58.961,78.2281,0.2181,0.9922,1.0,1.0183,1.0104,1.0,49.399,0.0,0.0,30.51,8.46,10.38,48.53,4.33,11.41,28.08,0.0,0.0,0.8058,0.5135,0.9887,1.2821,0.2625,1.087,22.5867,7.7109,7.7804,0.0,0.0,35.9358,3.942,8.554,38.74,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019A.xml,76.92,76.707,59.6206,77.5116,0.22029,0.9921,1.0,1.0185,1.0105,1.0,50.0968,0.0,0.0,30.56,8.43,10.49,48.62,4.31,11.52,27.23,0.0,0.0,0.8058,0.5132,0.9896,1.2821,0.2625,1.087,22.5828,7.7078,8.212,0.0,0.0,35.9284,3.943,9.02,38.73,3.94,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019AB.xml,77.99,76.703,60.4484,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1559,7.9626,8.212,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABC.xml,77.99,76.703,60.4484,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1559,7.9626,8.212,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABCD.xml,77.99,76.703,60.4484,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1559,7.9626,8.212,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022.xml,77.99,76.703,60.4484,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1559,7.9626,8.212,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022C.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.99,78.759,58.9677,79.6945,0.24927,0.9911,1.0,1.021,1.0119,1.0,49.399,0.0,0.0,31.86,8.44,10.38,50.69,4.31,11.41,28.08,0.0,0.0,0.8058,0.514,0.9886,1.2821,0.2625,1.087,22.5874,7.7176,7.7797,0.0,0.0,35.9358,3.942,8.554,38.74,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.56,81.453,58.9777,82.4205,0.24927,0.9911,1.0,1.021,1.0119,1.0,49.399,0.0,0.0,34.6,8.4,10.38,55.05,4.28,11.41,28.08,0.0,0.0,0.8059,0.5147,0.9885,1.2821,0.2625,1.087,22.5881,7.7276,7.779,0.0,0.0,35.9358,3.942,8.554,38.74,3.94,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base.xml,78.03,76.703,60.4841,77.5125,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4994,0.0,0.0,30.56,8.43,10.49,48.68,5.21,11.52,27.23,0.0,0.0,0.8049,0.4249,0.9896,1.2821,0.2625,1.087,23.1856,7.9626,8.212,0.0,0.0,36.9284,4.92,9.02,39.81,4.92,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,153.89,8649.09,5561.74,56.73,1.0,56.73,78.03,78.03,0.0,51.06,1.0,51.06,78.03,78.03,0.0,74.04,80.733,60.4039,81.585,0.22161,0.9921,1.0,1.0186,1.0106,1.0,51.4724,0.0,0.0,34.66,8.36,10.49,55.2,5.2,11.52,27.22,0.0,0.0,0.805,0.4224,0.9894,1.2821,0.2625,1.087,23.1586,7.9167,8.2105,0.0,0.0,36.8811,4.92,9.02,39.76,4.92,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 From 4b0f06b08cfb24d6575353fd057656f0ff87693c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 6 Mar 2024 15:44:55 -0700 Subject: [PATCH 27/35] Squashed 'hpxml-measures/' changes from f88480c299..55a199a0ad 55a199a0ad Merge pull request #1586 from NREL/ansi_301_2022_airflow bfbebabe1f Update docs [ci skip] 37d501c322 Clarify garage location. git-subtree-dir: hpxml-measures git-subtree-split: 55a199a0ade2344536c0477833c9c5302ba1feb1 --- docs/source/workflow_inputs.rst | 44 ++++++++++++++++++++++++++++----- 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index eef8716a8..fff34491f 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -944,6 +944,14 @@ The presence of a flue or chimney with combustion air from conditioned space can HPXML Attics ************ +If the dwelling unit has an unvented attic, whether it is within the infiltration volume is entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="false"]]``. + + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false In accordance with ANSI/RESNET/ICC Standard 380 + ============================ ======= ===== =========== ======== ======= =============================================== + If the dwelling unit has a vented attic, attic ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate``. ================= ====== ===== =========== ======== ========== ========================== @@ -959,6 +967,22 @@ If the dwelling unit has a vented attic, attic ventilation information can be op HPXML Foundations ***************** +If the dwelling unit has an unconditioned basement, whether it is within the infiltration volume is entered in ``Enclosure/Foundations/Foundation/FoundationType/Basement[Conditioned='false']``. + + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false In accordance with ANSI/RESNET/ICC Standard 380 + ============================ ======= ===== =========== ======== ======= =============================================== + +If the dwelling unit has an unvented crawlspace, whether it is within the infiltration volume is entered in ``Enclosure/Foundations/Foundation/FoundationType/Crawlspace[Vented='false']``. + + ============================ ======= ===== =========== ======== ======= =============================================== + Element Type Units Constraints Required Default Notes + ============================ ======= ===== =========== ======== ======= =============================================== + ``WithinInfiltrationVolume`` boolean No false In accordance with ANSI/RESNET/ICC Standard 380 + ============================ ======= ===== =========== ======== ======= =============================================== + If the dwelling unit has a vented crawlspace, crawlspace ventilation information can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]/VentilationRate``. ================= ====== ===== =========== ======== ========== ========================== @@ -971,11 +995,15 @@ If the dwelling unit has a vented crawlspace, crawlspace ventilation information .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. -If the dwelling has a manufactured home belly-and-wing foundation, whether a -skirt is present can be optionally entered in -``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing/SkirtPresent``. -The default, if that value is missing, is to assume there is a skirt present and -the floors above that foundation do not have exposure to the wind. +If the dwelling has a manufactured home belly-and-wing foundation, whether a skirt is present can be optionally entered in ``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing``. + + ================= ======= ===== =========== ======== ========== ========================== + Element Type Units Constraints Required Default Notes + ================= ======= ===== =========== ======== ========== ========================== + ``SkirtPresent`` boolean No true Presence of skirt [#]_ + ================= ======= ===== =========== ======== ========== ========================== + + .. [#] When a skirt is present, it is assumed that the foundation does not have exposure to wind. HPXML Roofs *********** @@ -4723,7 +4751,7 @@ The various locations used in an HPXML file are defined as follows: crawlspace - vented EnergyPlus calculation Any crawlspace - unvented EnergyPlus calculation Any crawlspace - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any - garage Single-family garage (not shared parking) EnergyPlus calculation Any + garage Unconditioned garage (not shared parking garage) [#]_ EnergyPlus calculation Any manufactured home underbelly Underneath the belly, ambient environment Weather data Manufactured only manufactured home belly Within the belly Same as conditioned space Manufactured only other housing unit E.g., conditioned adjacent unit or conditioned corridor Same as conditioned space SFA/MF only @@ -4736,6 +4764,10 @@ The various locations used in an HPXML file are defined as follows: roof deck Ducts on roof deck (outside) Weather data Any ============================== ======================================================= ========================================================= ================= + .. [#] OpenStudio-HPXML does not model "conditioned" or "heated" garages. + Many conditioned garages are not conditioned 24/7, rather they are only conditioned for short periods when occupants are in them and turn on the space conditioning equipment, so it is best to assume an unconditioned garage. + However, if a garage was converted into livable space, then "conditioned space" should be used instead. + Validating & Debugging Errors ----------------------------- From dc218d07d254547468d5c91a192b83e8b5521c3a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 09:09:34 -0700 Subject: [PATCH 28/35] Squashed 'hpxml-measures/' changes from 55a199a0ad..39f10fcb07 39f10fcb07 Simplify AverageCeilingHeight default. 18ebd08c15 Merge pull request #1325 from NREL/geb-hvac-var-speed 333268bd3c Latest results. d9c0fd28fe Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 02d4d2b9e6 Merge pull request #1644 from NREL/cleanup_acca_hpxmls f9ce81a4d0 Update measures c587c454ff Clean up ACCA HPXML test files. 9485f91c65 Merge pull request #1643 from NREL/bugfix_tiny_infiltration fa573d8a26 Use zero. 51918f01c1 Handle tiny infiltration values. 4024fa48a4 Latest results. 8484518994 some more explanation in the docs f878dfc0c1 two var speed systems 3e790138e4 address comments d2c17943fa Revert "Allow daily temperature range to be provided for Manual J calc." 360791e809 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 621526332a Allow daily temperature range to be provided for Manual J calc. a69019133b A little cleanup while reviewing the PR. b5d60f8744 Latest results. 7c49fa9264 Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed d1b66641fa update_measures fd6a32f1bc Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 265df5d22e Latest results. d3e95f5682 fix indent cd19c07ec2 fix simulation error e1b97aa25d Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 794b7ba893 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 2ad08ac500 More description of the hvac_maximum_power_ratio schedule. Including calling it an "advanced research feature" 62055685ce Latest results. b8748a5a8c Minor cleanup in Changelog.md 7e4909c1f5 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed a0e14cd04f address two speed system warning 03d3488562 Minor tweaks to changelog and docs. [ci skip] 4f3209d580 Latest results. 7ac1ad9fab typo cc643f6e7b Adds a return before throwing warning. d382172ca9 The fix was not correct, try this. 08f10b4126 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 55599312b8 throw warning only if there's no var speed system 410d5a43c1 Latest results. 38cd6feab4 try directly using path name to exclude maximum power schedule files 18f988ac27 bugfixes fe8942c5f7 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed c1ad4e2baf Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed cccfc19518 address comments 98b0159e6f Update Changelog.md 294bf1e1f3 Latest results. 74dd169559 Update HPXMLtoOpenStudio/resources/hvac.rb abca3c47e1 Update HPXMLtoOpenStudio/resources/hvac.rb 4de04ab933 Update Changelog.md 7e666c1855 Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 221ba44740 remove old results 7d242cfa1e Latest results. 4205a7eb3d fix 10x test de3dbfd118 added cooling/heating checks for EMS statement creation ea3d6b73fe fix unit test, added a few additional test files, rename max capacity to max power ratio 99431da496 added unit test, disallowed multiplier da67f24464 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed c960918aa3 fix doc 846870b322 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 631d814db1 update measures ce0274e7b5 Approach improvements: 1. add setpoint sensors for cooling and heating individually 2. add plf curves 3. fix cooling power calculation based on total capacity 0423b3b1c8 Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed c9b0bd0f55 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 51c2075475 Latest results. acf292267b oops 504d5f1dae fix the cooling only test file, fix the current power calculations based on speed ratios d6bb23efd2 update measures e3bbf9163f Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 2d8537de20 approach improvement to use load sensors and new control specifications, and a few cleanups 850d07d5d6 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 44ed526c5e Latest results. c3bf29cb5a update measures c98e6256ab bugfixes and EMS cleanups 10a8f85da2 one more typo d84c7ee93b rename sensors ad0e8e5267 update measures and hpxmls 1fe138de81 fixed typos c0fac75589 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 158312a940 update hpxmls and some bugfixes 49f38db1e9 first cut ab0e612943 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 3fcdd58afd Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 28164b61fa Latest results. 13f5cc8b3b Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 9b1126d656 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 527309cd8f Latest results. fc01ecdd89 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 0699bff691 Latest results. 0c7544fe89 Fix duplicate code. aa642efdd1 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed b04fc664fc Latest results. 697a14e288 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 395e1ca255 changes based on last discussion with jeff 897b8fcd3e Latest results. 3b4ff8d4bb Merge branch 'os360' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 2c98b9daa5 Latest results. c3721bba30 Merge branch 'os360' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 6ae7e490f6 backup coil control 40b594c11b Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 5f3eac1d16 Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 1ff536181e Update variable schedule for HVAC GEB d94386206a Merge branch 'geb-hvac-var-speed' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 3232ee33cf doc 18a0997eca fix unit test 64c3f350c0 Latest results. 767d88b31f use varied ratio schedule, minor change to EMS program cda72506f8 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed f64e57e708 Adding variable schedule for testing out CTA signals for variable speed HVAC. 90d5489d64 Latest results. 9a3fe8778c fix EMS program 947036ff65 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed ef0e84b8c9 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 4d977c910c implementation first cut c5561f0a44 Merge branch 'os360' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 4d571fd884 Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 8d81e907d8 bugfix for method argument e182cbbcaf forgot to commit tasks.rb 05ae60558d var speed first cut 978f03ddfc Merge branch 'master' of https://github.com/NREL/OpenStudio-HPXML into geb-hvac-var-speed 23e12af59f first cut git-subtree-dir: hpxml-measures git-subtree-split: 39f10fcb07c2287c10f767739e1f8d3c027664e4 --- Changelog.md | 7 +- HPXMLtoOpenStudio/measure.rb | 17 +- HPXMLtoOpenStudio/measure.xml | 40 +- HPXMLtoOpenStudio/resources/airflow.rb | 6 +- HPXMLtoOpenStudio/resources/energyplus.rb | 1 + HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 10 +- .../hpxml_schematron/EPvalidator.xml | 3 +- HPXMLtoOpenStudio/resources/hvac.rb | 261 +- ...ble-system-maximum-power-ratios-varied.csv | 8761 +++++++++++++++++ HPXMLtoOpenStudio/resources/schedules.rb | 1 + HPXMLtoOpenStudio/tests/test_defaults.rb | 14 - HPXMLtoOpenStudio/tests/test_hvac.rb | 150 + HPXMLtoOpenStudio/tests/test_validation.rb | 18 +- HPXMLtoOpenStudio/tests/util.rb | 26 +- docs/source/workflow_inputs.rst | 49 +- tasks.rb | 26 + workflow/hpxml_inputs.json | 27 + ...speed-max-power-ratio-schedule-10-mins.xml | 560 ++ ...d-max-power-ratio-schedule-two-systems.xml | 631 ++ ...ump-var-speed-max-power-ratio-schedule.xml | 560 ++ ...nly-var-speed-max-power-ratio-schedule.xml | 539 + ...-ac-var-speed-max-power-ratio-schedule.xml | 555 ++ ...-heating-only-max-power-ratio-schedule.xml | 557 ++ ...t-pump-ducted-max-power-ratio-schedule.xml | 559 ++ .../tests/ACCA_Examples/Bell_Residence.xml | 9 +- .../tests/ACCA_Examples/Cobb_Residence.xml | 9 +- .../tests/ACCA_Examples/Long_Residence.xml | 11 +- .../tests/ACCA_Examples/Smith_Residence.xml | 15 +- .../tests/ACCA_Examples/Vatilo_Residence.xml | 9 +- .../tests/ACCA_Examples/Victor_Residence.xml | 9 +- .../tests/ACCA_Examples/Walker_Residence.xml | 9 +- .../tests/base_results/results_sizing.csv | 64 + .../results_workflow_simulations1.csv | 7 + .../results_workflow_simulations1_bills.csv | 7 + workflow/tests/util.rb | 5 +- 36 files changed, 13426 insertions(+), 108 deletions(-) create mode 100644 HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv create mode 100644 workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml create mode 100644 workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml create mode 100644 workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml create mode 100644 workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml create mode 100644 workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml create mode 100644 workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml create mode 100644 workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml diff --git a/Changelog.md b/Changelog.md index d0a3e3272..106f88140 100644 --- a/Changelog.md +++ b/Changelog.md @@ -17,10 +17,11 @@ __New Features__ - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - **Breaking change**: Modeling whole SFA/MF buildings is now specified using a `SoftwareInfo/extension/WholeSFAorMFBuildingSimulation=true` element instead of `building-id=ALL` argument. - Allows optional building site inputs (`GeoLocation/Latitude`, `GeoLocation/Longitude`, `Elevation`); useful when located far from, or at a very different elevation than, the EPW weather station. -- Air source heat pump enhancements: +- Air source heat pump/air conditioner enhancements: - Adds heat pump backup autosizing methodology input (`HeatPumpBackupSizingMethodology`) with choices of "emergency" and "supplemental". - - Allows autosizing with detailed performance data inputs for variable-speed systems using `CapacityFractionOfNominal`. - - Now defaults to -20F for `CompressorLockoutTemperature` for variable-speed systems. + - Allows autosizing with detailed performance data inputs for variable-speed HVAC systems using `CapacityFractionOfNominal`. + - Adds maximum power ratio detailed schedule for variable-speed HVAC systems to model shedding controls per [AHRI 1380](https://www.ahrinet.org/search-standards/ahri-1380-i-p-demand-response-through-variable-capacity-hvac-systems-residential-and-small). + - Now defaults to -20F for `CompressorLockoutTemperature` for variable-speed heat pump systems. - Ground source heat pump enhancements: - Allows optional detailed inputs related to geothermal loop (`HVACPlant/GeothermalLoop`). - Allows optional ground diffusivity input. diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index 13f46ee09..71964410a 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -448,7 +448,7 @@ def create_unit_model(hpxml, hpxml_bldg, runner, model, epw_path, epw_file, weat @hvac_unavailable_periods = Schedule.get_unavailable_periods(runner, SchedulesFile::Columns[:HVAC].name, @hpxml_header.unavailable_periods) airloop_map = {} # Map of HPXML System ID -> AirLoopHVAC (or ZoneHVACFourPipeFanCoil) add_ideal_system(model, spaces, epw_path) - add_cooling_system(model, weather, spaces, airloop_map) + add_cooling_system(model, runner, weather, spaces, airloop_map) add_heating_system(runner, model, weather, spaces, airloop_map) add_heat_pump(runner, model, weather, spaces, airloop_map) add_dehumidifiers(runner, model, spaces) @@ -1570,7 +1570,7 @@ def add_hot_water_and_appliances(runner, model, weather, spaces) Waterheater.apply_combi_system_EMS(model, @hpxml_bldg.water_heating_systems, plantloop_map) end - def add_cooling_system(model, weather, spaces, airloop_map) + def add_cooling_system(model, runner, weather, spaces, airloop_map) conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get HVAC.get_hpxml_hvac_systems(@hpxml_bldg).each do |hvac_system| @@ -1603,9 +1603,9 @@ def add_cooling_system(model, weather, spaces, airloop_map) HPXML::HVACTypeMiniSplitAirConditioner, HPXML::HVACTypePTAC].include? cooling_system.cooling_system_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, cooling_system, heating_system, sequential_cool_load_fracs, sequential_heat_load_fracs, + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, runner, cooling_system, heating_system, sequential_cool_load_fracs, sequential_heat_load_fracs, weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, - conditioned_zone, @hvac_unavailable_periods) + conditioned_zone, @hvac_unavailable_periods, @schedules_file, @hpxml_bldg) elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type @@ -1648,9 +1648,9 @@ def add_heating_system(runner, model, weather, spaces, airloop_map) sys_id = heating_system.id if [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, nil, heating_system, [0], sequential_heat_load_fracs, + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, runner, nil, heating_system, [0], sequential_heat_load_fracs, weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, - conditioned_zone, @hvac_unavailable_periods) + conditioned_zone, @hvac_unavailable_periods, @schedules_file, @hpxml_bldg) elsif [HPXML::HVACTypeBoiler].include? heating_system.heating_system_type @@ -1710,9 +1710,10 @@ def add_heat_pump(runner, model, weather, spaces, airloop_map) HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heat_pump.heat_pump_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, heat_pump, heat_pump, sequential_cool_load_fracs, sequential_heat_load_fracs, + + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, runner, heat_pump, heat_pump, sequential_cool_load_fracs, sequential_heat_load_fracs, weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, - conditioned_zone, @hvac_unavailable_periods) + conditioned_zone, @hvac_unavailable_periods, @schedules_file, @hpxml_bldg) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type airloop_map[sys_id] = HVAC.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 6639ffbb1..a9e0afb65 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 73a60fd3-fafd-41d8-a5eb-f95cb12f6cfe - 2024-03-06T01:32:05Z + cee6e318-93c8-4149-8e52-91941db9e34d + 2024-03-08T15:59:29Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -142,13 +142,13 @@ measure.rb rb script - ECAF5AA7 + D8568042 airflow.rb rb resource - FEDFA435 + AA107999 battery.rb @@ -280,7 +280,7 @@ energyplus.rb rb resource - 801A6A26 + 8DB21849 generator.rb @@ -304,13 +304,13 @@ hpxml.rb rb resource - 758D1948 + 4B23EC6D hpxml_defaults.rb rb resource - F5FE95AC + B2ADBD5F hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 1407BC14 + 8ECB4742 hpxml_schematron/iso-schematron.xsd @@ -340,7 +340,7 @@ hvac.rb rb resource - 3C0DF198 + 5C9FA161 hvac_sizing.rb @@ -408,6 +408,12 @@ resource C1350909 + + schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + csv + resource + B93B3701 + schedule_files/occupancy-non-stochastic.csv csv @@ -520,7 +526,7 @@ schedules.rb rb resource - 0E227CE5 + 42F9AD9E simcontrols.rb @@ -576,12 +582,6 @@ resource 87937B84 - - in.schedules.csv - csv - test - 6244F711 - test_airflow.rb rb @@ -598,7 +598,7 @@ test_defaults.rb rb test - C0F759DF + 6AB95336 test_enclosure.rb @@ -622,7 +622,7 @@ test_hvac.rb rb test - 5AD597FF + 9A8D18FA test_hvac_sizing.rb @@ -670,7 +670,7 @@ test_validation.rb rb test - 9B783726 + 6328C7B5 test_water_heater.rb @@ -688,7 +688,7 @@ util.rb rb test - D22025B3 + 71ED3EE3 diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 9b83c098c..f1273a69c 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1631,7 +1631,11 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2022') infil_program.addLine('Set Qimb = (@Abs (Qsupply - Qexhaust))') - infil_program.addLine('Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + infil_program.addLine('If Qinf + Qimb > 0') + infil_program.addLine(' Set Qinf_adj = (Qinf^2) / (Qinf + Qimb)') + infil_program.addLine('Else') + infil_program.addLine(' Set Qinf_adj = 0') + infil_program.addLine('EndIf') elsif Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow infil_program.addLine('If Qfan > 0') diff --git a/HPXMLtoOpenStudio/resources/energyplus.rb b/HPXMLtoOpenStudio/resources/energyplus.rb index 9e72e80bc..197926331 100644 --- a/HPXMLtoOpenStudio/resources/energyplus.rb +++ b/HPXMLtoOpenStudio/resources/energyplus.rb @@ -8,6 +8,7 @@ class EPlus EMSActuatorPumpPressureRise = 'Pump', 'Pump Pressure Rise' EMSActuatorFanPressureRise = 'Fan', 'Fan Pressure Rise' EMSActuatorFanTotalEfficiency = 'Fan', 'Fan Total Efficiency' + EMSActuatorUnitarySystemCoilSpeedLevel = 'Coil Speed Control', 'Unitary System DX Coil Speed Value' EMSActuatorScheduleConstantValue = 'Schedule:Constant', 'Schedule Value' EMSActuatorScheduleYearValue = 'Schedule:Year', 'Schedule Value' EMSActuatorScheduleFileValue = 'Schedule:File', 'Schedule Value' diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index a499eff98..251eb8ff9 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1124,7 +1124,7 @@ def to_doc(doc) building = XMLHelper.add_element(hpxml, 'Building') building_building_id = XMLHelper.add_element(building, 'BuildingID') XMLHelper.add_attribute(building_building_id, 'id', @building_id) - if (not @state_code.nil?) || (not @zip_code.nil?) || (not @city.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) + if (not @state_code.nil?) || (not @zip_code.nil?) || (not @city.nil?) || (not @latitude.nil?) || (not @longitude.nil?) || (not @elevation.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) building_site = XMLHelper.add_element(building, 'Site') building_site_id = XMLHelper.add_element(building_site, 'SiteID') if @site_id.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 2c60279ad..068adf92e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -665,17 +665,13 @@ def self.apply_building_occupancy(hpxml_bldg, schedules_file) def self.apply_building_construction(hpxml_bldg, cfa, nbeds) cond_crawl_volume = hpxml_bldg.inferred_conditioned_crawlspace_volume() - if hpxml_bldg.building_construction.conditioned_building_volume.nil? && hpxml_bldg.building_construction.average_ceiling_height.nil? + if hpxml_bldg.building_construction.average_ceiling_height.nil? hpxml_bldg.building_construction.average_ceiling_height = 8.0 hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true + end + if hpxml_bldg.building_construction.conditioned_building_volume.nil? hpxml_bldg.building_construction.conditioned_building_volume = (cfa * hpxml_bldg.building_construction.average_ceiling_height + cond_crawl_volume).round hpxml_bldg.building_construction.conditioned_building_volume_isdefaulted = true - elsif hpxml_bldg.building_construction.conditioned_building_volume.nil? - hpxml_bldg.building_construction.conditioned_building_volume = (cfa * hpxml_bldg.building_construction.average_ceiling_height + cond_crawl_volume).round - hpxml_bldg.building_construction.conditioned_building_volume_isdefaulted = true - elsif hpxml_bldg.building_construction.average_ceiling_height.nil? - hpxml_bldg.building_construction.average_ceiling_height = ((hpxml_bldg.building_construction.conditioned_building_volume - cond_crawl_volume) / cfa).round(2) - hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true end if hpxml_bldg.building_construction.number_of_bathrooms.nil? hpxml_bldg.building_construction.number_of_bathrooms = Float(Waterheater.get_default_num_bathrooms(nbeds)).to_i diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 334f11e39..7703c2353 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -398,11 +398,12 @@ Expected 1 element(s) for xpath: NumberofConditionedFloors Expected 1 element(s) for xpath: NumberofConditionedFloorsAboveGrade Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade + Expected 0 or 1 element(s) for xpath: AverageCeilingHeight Expected 1 element(s) for xpath: NumberofBedrooms Expected 0 or 1 element(s) for xpath: NumberofBathrooms Expected 1 element(s) for xpath: ConditionedFloorArea Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. - Expected 0 or more element(s) for xpath: ConditionedBuildingVolume | AverageCeilingHeight + Expected 0 or 1 element(s) for xpath: ConditionedBuildingVolume extension/HasFlueOrChimney has been replaced by /HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/extension/HasFlueOrChimneyInConditionedSpace diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 9b7eadf27..a8bb368bf 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -7,11 +7,12 @@ class HVAC AirSourceCoolRatedIWB = 67.0 # degF, Rated indoor wetbulb for air-source systems, cooling CrankcaseHeaterTemp = 50.0 # degF - def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, + def self.apply_air_source_hvac_systems(model, runner, cooling_system, heating_system, sequential_cool_load_fracs, sequential_heat_load_fracs, weather_max_drybulb, weather_min_drybulb, - control_zone, hvac_unavailable_periods) + control_zone, hvac_unavailable_periods, schedules_file, hpxml_bldg) is_heatpump = false + if not cooling_system.nil? if cooling_system.is_a? HPXML::HeatPump is_heatpump = true @@ -201,6 +202,8 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, apply_installation_quality(model, heating_system, cooling_system, air_loop_unitary, htg_coil, clg_coil, control_zone) + apply_max_power_EMS(model, runner, hpxml_bldg, air_loop_unitary, control_zone, heating_system, cooling_system, htg_supp_coil, clg_coil, htg_coil, schedules_file) + return air_loop end @@ -1814,6 +1817,260 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba end end + def self.apply_max_power_EMS(model, runner, hpxml_bldg, air_loop_unitary, control_zone, heating_system, cooling_system, htg_supp_coil, clg_coil, htg_coil, schedules_file) + return if schedules_file.nil? + return if clg_coil.nil? && htg_coil.nil? + + max_pow_ratio_sch = schedules_file.create_schedule_file(model, col_name: SchedulesFile::Columns[:HVACMaximumPowerRatio].name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + # Not allowed with unit multiplier for now + if not max_pow_ratio_sch.nil? + fail 'NumberofUnits greater than 1 is not supported for maximum power ratio schedules of variable speed hvac systems.' if hpxml_bldg.building_construction.number_of_units > 1 + end + return if max_pow_ratio_sch.nil? + + # Check maximum power ratio schedules only used in var speed systems, + clg_coil = nil unless (cooling_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed) + htg_coil = nil unless ((heating_system.is_a? HPXML::HeatPump) && heating_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed) + htg_supp_coil = nil unless ((heating_system.is_a? HPXML::HeatPump) && heating_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed) + # No variable speed coil + if clg_coil.nil? && htg_coil.nil? + runner.registerWarning('Maximum power ratio schedule is only supported for variable speed systems.') + end + + if (htg_coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed) && (heating_system.backup_type != HPXML::HeatPumpBackupTypeIntegrated) + htg_coil = nil + htg_supp_coil = nil + runner.registerWarning('Maximum power ratio schedule is only supported for integrated backup system. Schedule is ignored for heating.') + end + + return if (clg_coil.nil? && htg_coil.nil?) + + # sensors + pow_ratio_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') + pow_ratio_sensor.setName("#{air_loop_unitary.name} power_ratio") + pow_ratio_sensor.setKeyName(max_pow_ratio_sch.name.to_s) + indoor_temp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Air Temperature') + indoor_temp_sensor.setName("#{control_zone.name} indoor_temp") + indoor_temp_sensor.setKeyName(control_zone.name.to_s) + htg_spt_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Thermostat Heating Setpoint Temperature') + htg_spt_sensor.setName("#{control_zone.name} htg_spt_temp") + htg_spt_sensor.setKeyName(control_zone.name.to_s) + clg_spt_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Thermostat Cooling Setpoint Temperature') + clg_spt_sensor.setName("#{control_zone.name} clg_spt_temp") + clg_spt_sensor.setKeyName(control_zone.name.to_s) + load_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Unitary System Predicted Sensible Load to Setpoint Heat Transfer Rate') + load_sensor.setName("#{air_loop_unitary.name} sens load") + load_sensor.setKeyName(air_loop_unitary.name.to_s) + + # global variable + temp_offset_signal = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "#{air_loop_unitary.name.to_s.gsub(' ', '_')}_temp_offset") + + # Temp offset Initialization Program + # Temperature offset signal used to see if the hvac is recovering temperature to setpoint. + # If abs (indoor temperature - setpoint) > offset, then hvac and backup is allowed to operate without cap to recover temperature until it reaches setpoint + temp_offset_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + temp_offset_program.setName("#{air_loop_unitary.name} temp offset init program") + temp_offset_program.addLine("Set #{temp_offset_signal.name} = 0") + + # calling managers + manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) + manager.setName("#{temp_offset_program.name} calling manager") + manager.setCallingPoint('BeginNewEnvironment') + manager.addProgram(temp_offset_program) + manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) + manager.setName("#{temp_offset_program.name} calling manager2") + manager.setCallingPoint('AfterNewEnvironmentWarmUpIsComplete') + manager.addProgram(temp_offset_program) + + # actuator + coil_speed_act = OpenStudio::Model::EnergyManagementSystemActuator.new(air_loop_unitary, *EPlus::EMSActuatorUnitarySystemCoilSpeedLevel) + coil_speed_act.setName("#{air_loop_unitary.name} coil speed level") + if not htg_supp_coil.nil? + # create a clone of availability schedule to actuate + avail_sch = htg_supp_coil.availabilitySchedule.to_ScheduleConstant.get + new_avail_sch = avail_sch.clone(model).to_ScheduleConstant.get + htg_supp_coil.setAvailabilitySchedule(new_avail_sch) + supp_coil_avail_act = OpenStudio::Model::EnergyManagementSystemActuator.new(htg_supp_coil.availabilitySchedule, *EPlus::EMSActuatorScheduleConstantValue) + supp_coil_avail_act.setName("#{htg_supp_coil.name} coil avail sch") + end + + # EMS program + program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + program.setName("#{air_loop_unitary.name} max power ratio program") + program.addLine('Set clg_mode = 0') + program.addLine('Set htg_mode = 0') + program.addLine("If #{load_sensor.name} > 0") + program.addLine(' Set htg_mode = 1') + program.addLine(" Set setpoint = #{htg_spt_sensor.name}") + program.addLine("ElseIf #{load_sensor.name} < 0") + program.addLine(' Set clg_mode = 1') + program.addLine(" Set setpoint = #{clg_spt_sensor.name}") + program.addLine('EndIf') + program.addLine("Set sens_load = @Abs #{load_sensor.name}") + program.addLine('Set clg_mode = 0') if clg_coil.nil? + program.addLine('Set htg_mode = 0') if htg_coil.nil? + + [htg_coil, clg_coil].each do |coil| + next if coil.nil? + + coil_cap_stage_fff_sensors = [] + coil_cap_stage_ft_sensors = [] + coil_eir_stage_fff_sensors = [] + coil_eir_stage_ft_sensors = [] + coil_eir_stage_plf_sensors = [] + # Heating/Cooling specific calculations and names + if coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed + cap_fff_curve_name = 'heatingCapacityFunctionofFlowFractionCurve' + cap_ft_curve_name = 'heatingCapacityFunctionofTemperatureCurve' + capacity_name = 'grossRatedHeatingCapacity' + cop_name = 'grossRatedHeatingCOP' + cap_multiplier = 'htg_frost_multiplier_cap' + pow_multiplier = 'htg_frost_multiplier_pow' + mode_s = 'If htg_mode > 0' + + # Outdoor sensors added to calculate defrost adjustment for heating + outdoor_db_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Outdoor Air Drybulb Temperature') + outdoor_db_sensor.setName('outdoor_db') + outdoor_w_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Outdoor Air Humidity Ratio') + outdoor_w_sensor.setName('outdoor_w') + outdoor_bp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Outdoor Air Barometric Pressure') + outdoor_bp_sensor.setName('outdoor_bp') + + # Calculate capacity and eirs for later use of full-load power calculations at each stage + # Equations from E+ source code + program.addLine('If htg_mode > 0') + program.addLine(" If #{outdoor_db_sensor.name} < 4.444444,") + program.addLine(" Set T_coil_out = 0.82 * #{outdoor_db_sensor.name} - 8.589") + program.addLine(" Set delta_humidity_ratio = @MAX 0 (#{outdoor_w_sensor.name} - (@WFnTdbRhPb T_coil_out 1.0 #{outdoor_bp_sensor.name}))") + program.addLine(" Set #{cap_multiplier} = 0.909 - 107.33 * delta_humidity_ratio") + program.addLine(" Set #{pow_multiplier} = 0.90 - 36.45 * delta_humidity_ratio") + program.addLine(' Else') + program.addLine(" Set #{cap_multiplier} = 1.0") + program.addLine(" Set #{pow_multiplier} = 1.0") + program.addLine(' EndIf') + program.addLine('EndIf') + elsif coil.is_a? OpenStudio::Model::CoilCoolingDXMultiSpeed + cap_fff_curve_name = 'totalCoolingCapacityFunctionofFlowFractionCurve' + cap_ft_curve_name = 'totalCoolingCapacityFunctionofTemperatureCurve' + capacity_name = 'grossRatedTotalCoolingCapacity' + cop_name = 'grossRatedCoolingCOP' + cap_multiplier = 'shr' + pow_multiplier = '1.0' + mode_s = 'If clg_mode > 0' + + # cooling coil cooling rate sensors to calculate real time SHR + clg_tot_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Cooling Coil Total Cooling Rate') + clg_tot_sensor.setName("#{coil.name} total cooling rate") + clg_tot_sensor.setKeyName(coil.name.to_s) + clg_sens_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Cooling Coil Sensible Cooling Rate') + clg_sens_sensor.setName("#{coil.name} sens cooling rate") + clg_sens_sensor.setKeyName(coil.name.to_s) + + program.addLine('If clg_mode > 0') + program.addLine(" If #{clg_tot_sensor.name} > 0") + program.addLine(" Set #{cap_multiplier} = #{clg_sens_sensor.name} / #{clg_tot_sensor.name}") + program.addLine(' Else') + program.addLine(" Set #{cap_multiplier} = 0.0") + program.addLine(' EndIf') + program.addLine('EndIf') + end + # Heating and cooling performance curve sensors that need to be added + coil.stages.each_with_index do |stage, i| + stage_cap_fff_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Performance Curve Output Value') + stage_cap_fff_sensor.setName("#{coil.name} cap stage #{i} fff") + stage_cap_fff_sensor.setKeyName(stage.send(cap_fff_curve_name).name.to_s) + coil_cap_stage_fff_sensors << stage_cap_fff_sensor + stage_cap_ft_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Performance Curve Output Value') + stage_cap_ft_sensor.setName("#{coil.name} cap stage #{i} ft") + stage_cap_ft_sensor.setKeyName(stage.send(cap_ft_curve_name).name.to_s) + coil_cap_stage_ft_sensors << stage_cap_ft_sensor + stage_eir_fff_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Performance Curve Output Value') + stage_eir_fff_sensor.setName("#{coil.name} eir stage #{i} fff") + stage_eir_fff_sensor.setKeyName(stage.energyInputRatioFunctionofFlowFractionCurve.name.to_s) + coil_eir_stage_fff_sensors << stage_eir_fff_sensor + stage_eir_ft_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Performance Curve Output Value') + stage_eir_ft_sensor.setName("#{coil.name} eir stage #{i} ft") + stage_eir_ft_sensor.setKeyName(stage.energyInputRatioFunctionofTemperatureCurve.name.to_s) + coil_eir_stage_ft_sensors << stage_eir_ft_sensor + stage_eir_plf_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Performance Curve Output Value') + stage_eir_plf_sensor.setName("#{coil.name} eir stage #{i} fplr") + stage_eir_plf_sensor.setKeyName(stage.partLoadFractionCorrelationCurve.name.to_s) + coil_eir_stage_plf_sensors << stage_eir_plf_sensor + end + # Calculate the target speed ratio that operates at the target power output + program.addLine(mode_s) + coil.stages.each_with_index do |stage, i| + program.addLine(" Set rt_capacity_#{i} = #{stage.send(capacity_name)} * #{coil_cap_stage_fff_sensors[i].name} * #{coil_cap_stage_ft_sensors[i].name}") + program.addLine(" Set rt_capacity_#{i}_adj = rt_capacity_#{i} * #{cap_multiplier}") + program.addLine(" Set rated_eir_#{i} = 1 / #{stage.send(cop_name)}") + program.addLine(" Set plf = #{coil_eir_stage_plf_sensors[i].name}") + program.addLine(" If #{coil_eir_stage_plf_sensors[i].name} > 0.0") + program.addLine(" Set rt_eir_#{i} = rated_eir_#{i} * #{coil_eir_stage_ft_sensors[i].name} * #{coil_eir_stage_fff_sensors[i].name} / #{coil_eir_stage_plf_sensors[i].name}") + program.addLine(' Else') + program.addLine(" Set rt_eir_#{i} = 0") + program.addLine(' EndIf') + program.addLine(" Set rt_power_#{i} = rt_eir_#{i} * rt_capacity_#{i} * #{pow_multiplier}") # use unadjusted capacity value in pow calculations + end + program.addLine(" Set target_power = #{coil.stages[-1].send(capacity_name)} * rated_eir_#{coil.stages.size - 1} * #{pow_ratio_sensor.name}") + (0..coil.stages.size - 1).each do |i| + if i == 0 + program.addLine(" If target_power < rt_power_#{i}") + program.addLine(" Set target_speed_ratio = target_power / rt_power_#{i}") + else + program.addLine(" ElseIf target_power < rt_power_#{i}") + program.addLine(" Set target_speed_ratio = (target_power - rt_power_#{i - 1}) / (rt_power_#{i} - rt_power_#{i - 1}) + #{i}") + end + end + program.addLine(' Else') + program.addLine(" Set target_speed_ratio = #{coil.stages.size}") + program.addLine(' EndIf') + + # Calculate the current power that needs to meet zone loads + (0..coil.stages.size - 1).each do |i| + if i == 0 + program.addLine(" If sens_load <= rt_capacity_#{i}_adj") + program.addLine(" Set current_power = sens_load / rt_capacity_#{i}_adj * rt_power_#{i}") + else + program.addLine(" ElseIf sens_load <= rt_capacity_#{i}_adj") + program.addLine(" Set hs_speed_ratio = (sens_load - rt_capacity_#{i - 1}_adj) / (rt_capacity_#{i}_adj - rt_capacity_#{i - 1}_adj)") + program.addLine(' Set ls_speed_ratio = 1 - hs_speed_ratio') + program.addLine(" Set current_power = hs_speed_ratio * rt_power_#{i} + ls_speed_ratio * rt_power_#{i - 1}") + end + end + program.addLine(' Else') + program.addLine(" Set current_power = rt_power_#{coil.stages.size - 1}") + program.addLine(' EndIf') + program.addLine('EndIf') + end + + program.addLine('If htg_mode > 0 || clg_mode > 0') + program.addLine(" If (#{pow_ratio_sensor.name} == 1) || ((@Abs (#{indoor_temp_sensor.name} - setpoint)) > #{UnitConversions.convert(4, 'deltaF', 'deltaC')}) || #{temp_offset_signal.name} == 1") + program.addLine(" Set #{coil_speed_act.name} = NULL") + program.addLine(" Set #{supp_coil_avail_act.name} = 1") unless htg_supp_coil.nil? + program.addLine(" If ((@Abs (#{indoor_temp_sensor.name} - setpoint)) > #{UnitConversions.convert(4, 'deltaF', 'deltaC')})") + program.addLine(" Set #{temp_offset_signal.name} = 1") + program.addLine(" ElseIf (@Abs (#{indoor_temp_sensor.name} - setpoint)) < 0.001") # Temperature recovered + program.addLine(" Set #{temp_offset_signal.name} = 0") + program.addLine(' EndIf') + program.addLine(' Else') + # general & critical curtailment, operation refers to AHRI Standard 1380 2019 + program.addLine(' If current_power >= target_power') + program.addLine(" Set #{coil_speed_act.name} = target_speed_ratio") + program.addLine(" Set #{supp_coil_avail_act.name} = 0") unless htg_supp_coil.nil? + program.addLine(' Else') + program.addLine(" Set #{coil_speed_act.name} = NULL") + program.addLine(" Set #{supp_coil_avail_act.name} = 1") unless htg_supp_coil.nil? + program.addLine(' EndIf') + program.addLine(' EndIf') + program.addLine('EndIf') + + # calling manager + program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) + program_calling_manager.setName(program.name.to_s + ' calling manager') + program_calling_manager.setCallingPoint('InsideHVACSystemIterationLoop') + program_calling_manager.addProgram(program) + end + def self.adjust_dehumidifier_load_EMS(fraction_served, zone_hvac, model, conditioned_space) # adjust hvac load to space when dehumidifier serves less than 100% dehumidification load. (With E+ dehumidifier object, it can only model 100%) diff --git a/HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv b/HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv new file mode 100644 index 000000000..caae04bcd --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv @@ -0,0 +1,8761 @@ +hvac_maximum_power_ratio +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +0.4 +0.4 +0.4 +0.4 +1 +1 +1 +1 +1 +0.7 +0.7 +0.7 +0.7 +0.7 +1 +1 +1 +1 +1 diff --git a/HPXMLtoOpenStudio/resources/schedules.rb b/HPXMLtoOpenStudio/resources/schedules.rb index 5b860c065..55322fad0 100644 --- a/HPXMLtoOpenStudio/resources/schedules.rb +++ b/HPXMLtoOpenStudio/resources/schedules.rb @@ -1432,6 +1432,7 @@ def initialize(name, used_by_unavailable_periods, can_be_stochastic, type) BatteryCharging: Column.new('battery_charging', false, false, nil), BatteryDischarging: Column.new('battery_discharging', false, false, nil), HVAC: Column.new('hvac', true, false, nil), + HVACMaximumPowerRatio: Column.new('hvac_maximum_power_ratio', false, false, :frac), WaterHeater: Column.new('water_heater', true, false, nil), Dehumidifier: Column.new('dehumidifier', true, false, nil), KitchenFan: Column.new('kitchen_fan', true, false, nil), diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 019a243a2..305235fa1 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -448,20 +448,6 @@ def test_building_construction _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_building_construction_values(default_hpxml_bldg, 21600, 8, 2, 1) - # Test defaults w/ average ceiling height - hpxml_bldg.building_construction.conditioned_building_volume = nil - hpxml_bldg.building_construction.average_ceiling_height = 10 - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_building_construction_values(default_hpxml_bldg, 27000, 10, 2, 1) - - # Test defaults w/ conditioned building volume - hpxml_bldg.building_construction.conditioned_building_volume = 20000 - hpxml_bldg.building_construction.average_ceiling_height = nil - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_building_construction_values(default_hpxml_bldg, 20000, 7.4, 2, 1) - # Test defaults w/ conditioned crawlspace hpxml, hpxml_bldg = _create_hpxml('base-foundation-conditioned-crawlspace.xml') hpxml_bldg.building_construction.conditioned_building_volume = nil diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index c52e4d603..1aab29f89 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -86,6 +86,49 @@ def test_central_air_conditioner_var_speed assert(program_values.empty?) # Check no EMS program end + def test_central_air_conditioner_var_speed_max_power_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml')) + model, _hpxml = _test_measure(args_hash) + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + + # Check heating coil + assert_equal(0, model.getCoilHeatingDXMultiSpeeds.size) + + # Check supp heating coil + assert_equal(0, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + _check_max_power_ratio_EMS_multispeed(model, nil, nil, nil, nil, 2779.53, 5.89, 7168.65, 5.25) + end + + def test_central_air_conditioner_furnace_var_speed_max_power_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml')) + model, _hpxml = _test_measure(args_hash) + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + + # Check heating coil + assert_equal(0, model.getCoilHeatingDXMultiSpeeds.size) + assert_equal(1, model.getCoilHeatingGass.size) + + # Check supp heating coil + assert_equal(0, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + _check_max_power_ratio_EMS_multispeed(model, nil, nil, nil, nil, 2779.53, 5.89, 7168.65, 5.25) + end + def test_room_air_conditioner args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-room-ac-only.xml')) @@ -648,6 +691,56 @@ def test_air_to_air_heat_pump_var_speed_detailed_performance assert(program_values.empty?) # Check no EMS program end + def test_air_to_air_heat_pump_var_speed_max_power_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml')) + model, _hpxml = _test_measure(args_hash) + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + + # Check heating coil + assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil.stages.size) + + # Check supp heating coil + assert_equal(1, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + _check_max_power_ratio_EMS_multispeed(model, 3875.80, 4.56, 10634.05, 3.88, 4169.30, 5.39, 10752.98, 4.77) + + # two systems + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml')) + model, _hpxml = _test_measure(args_hash) + + # Check cooling coil + assert_equal(2, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil_1 = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil_1.stages.size) + clg_coil_2 = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil_2.stages.size) + + # Check heating coil + assert_equal(2, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil_1 = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil_1.stages.size) + htg_coil_2 = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil_2.stages.size) + + # Check supp heating coil + assert_equal(2, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(2, model.getAirLoopHVACUnitarySystems.size) + _check_max_power_ratio_EMS_multispeed(model, 3875.80, 4.56, 10634.05, 3.88, 4169.30, 5.39, 10752.98, 4.77, 2, 0) + _check_max_power_ratio_EMS_multispeed(model, 3875.80, 4.56, 10634.05, 3.88, 4169.30, 5.39, 10752.98, 4.77, 2, 1) + end + def test_mini_split_heat_pump args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-heat-pump-ductless.xml')) @@ -722,6 +815,29 @@ def test_mini_split_heat_pump_detailed_performance assert(program_values.empty?) # Check no EMS program end + def test_mini_split_heat_pump_max_power_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml')) + model, _hpxml = _test_measure(args_hash) + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + + # Check heating coil + assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil.stages.size) + + # Check supp heating coil + assert_equal(1, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + _check_max_power_ratio_EMS_multispeed(model, 3304.36, 4.55, 10634.05, 3.88, 4169.30, 4.64, 10752.98, 4.07) + end + def test_mini_split_air_conditioner args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-air-conditioner-only-ductless.xml')) @@ -1418,6 +1534,40 @@ def _check_install_quality_multispeed_ratio(hpxml_clg_sys, model, hpxml_htg_sys return program_values end + def _check_max_power_ratio_EMS_multispeed(model, htg_speed1_capacity, htg_speed1_cop, htg_speed2_capacity, htg_speed2_cop, clg_speed1_capacity, clg_speed1_cop, clg_speed2_capacity, clg_speed2_cop, num_sys = 1, sys_i = 0) + # model objects: + # Unitary system + assert_equal(num_sys, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[sys_i] + + # Check max power ratio EMS + index = 0 + program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} max power ratio program", true) + if not htg_speed1_capacity.nil? + # two coils, two sets of values + assert_equal(2, program_values['rated_eir_0'].size) + assert_equal(2, program_values['rated_eir_1'].size) + assert_equal(2, program_values['rt_capacity_0'].size) + assert_equal(2, program_values['rt_capacity_1'].size) + assert_in_epsilon(program_values['rated_eir_0'][index], 1.0 / htg_speed1_cop, 0.01) unless htg_speed1_cop.nil? + assert_in_epsilon(program_values['rated_eir_1'][index], 1.0 / htg_speed2_cop, 0.01) unless htg_speed2_cop.nil? + assert_in_epsilon(program_values['rt_capacity_0'][index], htg_speed1_capacity, 0.01) unless htg_speed1_capacity.nil? + assert_in_epsilon(program_values['rt_capacity_1'][index], htg_speed2_capacity, 0.01) unless htg_speed2_capacity.nil? + index += 1 + else + assert_equal(1, program_values['rated_eir_0'].size) + assert_equal(1, program_values['rated_eir_1'].size) + assert_equal(1, program_values['rt_capacity_0'].size) + assert_equal(1, program_values['rt_capacity_1'].size) + end + assert_in_epsilon(program_values['rated_eir_0'][index], 1.0 / clg_speed1_cop, 0.01) unless clg_speed1_cop.nil? + assert_in_epsilon(program_values['rated_eir_1'][index], 1.0 / clg_speed2_cop, 0.01) unless clg_speed2_cop.nil? + assert_in_epsilon(program_values['rt_capacity_0'][index], clg_speed1_capacity, 0.01) unless clg_speed1_capacity.nil? + assert_in_epsilon(program_values['rt_capacity_1'][index], clg_speed2_capacity, 0.01) unless clg_speed2_capacity.nil? + + return program_values + end + def _create_hpxml(hpxml_name) hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) return hpxml, hpxml.buildings[0] diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index d386f6634..ee21702d3 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1011,6 +1011,7 @@ def test_ruby_error_messages 'schedule-detailed-duplicate-columns' => ["Schedule column name 'occupants' is duplicated."], 'schedule-detailed-wrong-filename' => ["Schedules file path 'invalid-wrong-filename.csv' does not exist."], 'schedule-detailed-wrong-rows' => ["Schedule has invalid number of rows (8759) for column 'occupants'. Must be one of: 8760, 17520, 26280, 35040, 43800, 52560, 87600, 105120, 131400, 175200, 262800, 525600."], + 'schedule-file-max-power-ratio-with-unit-multiplier' => ['NumberofUnits greater than 1 is not supported for maximum power ratio schedules of variable speed hvac systems.'], 'solar-thermal-system-with-combi-tankless' => ["Water heating system 'WaterHeatingSystem1' connected to solar thermal system 'SolarThermalSystem1' cannot be a space-heating boiler."], 'solar-thermal-system-with-desuperheater' => ["Water heating system 'WaterHeatingSystem1' connected to solar thermal system 'SolarThermalSystem1' cannot be attached to a desuperheater."], 'solar-thermal-system-with-dhw-indirect' => ["Water heating system 'WaterHeatingSystem1' connected to solar thermal system 'SolarThermalSystem1' cannot be a space-heating boiler."], @@ -1347,6 +1348,9 @@ def test_ruby_error_messages csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) File.write(@tmp_csv_path, csv_data[0..-2].map(&:to_csv).join) hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] + elsif ['schedule-file-max-power-ratio-with-unit-multiplier'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml') + hpxml_bldg.building_construction.number_of_units = 2 elsif ['solar-thermal-system-with-combi-tankless'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-dhw-combi-tankless.xml') hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", @@ -1572,7 +1576,10 @@ def test_ruby_warning_messages 'schedule-file-and-setpoints' => ["Both 'heating_setpoint' schedule file and heating setpoint temperature provided; the latter will be ignored.", "Both 'cooling_setpoint' schedule file and cooling setpoint temperature provided; the latter will be ignored.", "Both 'water_heater_setpoint' schedule file and setpoint temperature provided; the latter will be ignored."], - 'schedule-file-and-operating-mode' => ["Both 'water_heater_operating_mode' schedule file and operating mode provided; the latter will be ignored."] } + 'schedule-file-and-operating-mode' => ["Both 'water_heater_operating_mode' schedule file and operating mode provided; the latter will be ignored."], + 'schedule-file-max-power-ratio-with-single-speed-system' => ['Maximum power ratio schedule is only supported for variable speed systems.'], + 'schedule-file-max-power-ratio-with-two-speed-system' => ['Maximum power ratio schedule is only supported for variable speed systems.'], + 'schedule-file-max-power-ratio-with-separate-backup-system' => ['Maximum power ratio schedule is only supported for integrated backup system. Schedule is ignored for heating.'] } all_expected_warnings.each_with_index do |(warning_case, expected_warnings), i| puts "[#{i + 1}/#{all_expected_warnings.size}] Testing #{warning_case}..." @@ -1660,6 +1667,15 @@ def test_ruby_warning_messages elsif ['schedule-file-and-operating-mode'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml') hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/water-heater-operating-modes.csv') + elsif ['schedule-file-max-power-ratio-with-single-speed-system'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv') + elsif ['schedule-file-max-power-ratio-with-two-speed-system'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-2-speed.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv') + elsif ['schedule-file-max-power-ratio-with-separate-backup-system'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv') else fail "Unhandled case: #{warning_case}." end diff --git a/HPXMLtoOpenStudio/tests/util.rb b/HPXMLtoOpenStudio/tests/util.rb index b0e34aa93..ea7061e78 100644 --- a/HPXMLtoOpenStudio/tests/util.rb +++ b/HPXMLtoOpenStudio/tests/util.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -def get_ems_values(ems_objects, name) +def get_ems_values(ems_objects, name, parse_more_operators = false) values = {} ems_objects.each do |ems_object| next unless ems_object.name.to_s.include? name.gsub(' ', '_') @@ -13,14 +13,26 @@ def get_ems_values(ems_objects, name) rhs = rhs.gsub(',', '').gsub(';', '').strip values[lhs] = [] if values[lhs].nil? # eg. "Q = Q + 1.5" - if rhs.include? '+' - rhs_els = rhs.split('+') - rhs = rhs_els.map { |s| s.tr('()', '').to_f }.sum(0.0) - else - rhs = rhs.to_f - end + rhs = handle_operator(rhs, parse_more_operators) values[lhs] << rhs end end return values end + +def handle_operator(rhs, parse_more_operators) + # Doesn't consider "()" + operators = parse_more_operators ? ['+', '-', '*', '/'] : ['+'] + operator = rhs.chars.find { |c| operators.include? c } + if not operator.nil? + rhs_split = rhs.split(operator).map { |s| s.tr('()', '') } + rhs_f = handle_operator(rhs_split[1], parse_more_operators) + lhs_f = rhs_split[0].to_f + rhs_f = 1.0 if rhs_f == 0.0 && operator == '/' # avoid devide by zero + lhs_f = 1.0 if lhs_f == 0.0 && operator == '*' # avoid multiply a variable name(string), couldn't identify if it's a real 0.0 + rhs_f = 1.0 if rhs_f == 0.0 && operator == '*' # avoid multiply a variable name(string), couldn't identify if it's a real 0.0 + return lhs_f.send(operator, rhs_f) + else + return rhs.to_f + end +end diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index fff34491f..eaef29bac 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -394,7 +394,7 @@ For these simulations: Notes/caveats about this approach: - Some inputs (e.g., EPW location or ground conductivity) cannot vary across ``Building`` elements. -- Batteries are not currently supported. Dehumidifiers and ground-source heat pumps are only supported if ``NumberofUnits`` is 1. +- Batteries are not currently supported. - Utility bill calculations using detailed rates are not supported. .. _buildingsite: @@ -568,26 +568,34 @@ HPXML Building Construction Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction``. - ========================================================= ======== ========= ================================= ======== ======== ======================================================================= - Element Type Units Constraints Required Default Notes - ========================================================= ======== ========= ================================= ======== ======== ======================================================================= - ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit - ``NumberofUnits`` integer >= 1 No 1 Unit multiplier [#]_ - ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a conditioned basement; excluding a conditioned crawlspace) - ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) - ``NumberofBedrooms`` integer >= 0 Yes Number of bedrooms - ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms - ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary (excluding conditioned crawlspace floor area) - ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary (including a conditioned basement/crawlspace) - ========================================================= ======== ========= ================================= ======== ======== ======================================================================= + ======================================= ======== ========= ================================= ======== ======== ======================================================================= + Element Type Units Constraints Required Default Notes + ======================================= ======== ========= ================================= ======== ======== ======================================================================= + ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit + ``NumberofUnits`` integer >= 1 No 1 Unit multiplier [#]_ + ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a conditioned basement; excluding a conditioned crawlspace) + ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) + ``AverageCeilingHeight`` double ft > 0 No 8.0 Ceiling height within conditioned space + ``NumberofBedrooms`` integer >= 0 Yes Number of bedrooms + ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms + ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary (excluding conditioned crawlspace floor area) + ``ConditionedBuildingVolume`` double ft3 > 0 No See [#]_ Volume within conditioned space boundary (including a conditioned basement/crawlspace) + ======================================= ======== ========= ================================= ======== ======== ======================================================================= .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home". .. [#] NumberofUnits defines the number of similar dwelling units represented by the HPXML ``Building`` element. EnergyPlus simulation results will be multiplied by this value. For example, when modeling :ref:`bldg_type_bldgs`, this allows modeling *unique* dwelling units, rather than *all* dwelling units, to reduce simulation runtime. + Note that when NumberofUnits is greater than 1, a few capabilities are not currently supported: + + \- Dehumidifiers + + \- Ground-source heat pumps + + \- HVAC maximum power ratio schedules for variable speed hvac systems (see :ref:`schedules_detailed`) + .. [#] If NumberofBathrooms not provided, calculated as NumberofBedrooms/2 + 0.5 based on the `2010 BAHSP `_. - .. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to 8 ft. - If one is provided, the other is calculated using the following relationship: ConditionedBuildingVolume = ConditionedFloorArea * AverageCeilingHeight + ConditionedCrawlspaceVolume. + .. [#] If ConditionedBuildingVolume not provided, defaults to ConditionedFloorArea * AverageCeilingHeight + ConditionedCrawlspaceVolume. HPXML Schedules *************** @@ -653,11 +661,18 @@ The column names available in the schedule CSV files are: ``general_water_use`` frac General water use internal gains. No ``heating_setpoint`` F Thermostat heating setpoint schedule. No ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No + ``hvac_maximum_power_ratio`` frac Variable speed system maximum power ratio schedule. [#]_ No ``water_heater_setpoint`` F Water heater setpoint schedule. No ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hybrid/auto, 1=heat pump only. No ``battery`` -1 to 1 Battery schedule. Positive for charging, negative for discharging. No ================================ ======= ================================================================================= =============================== + .. [#] This feature is an advanced research capability. This schedule allows modeling shedding controls for variable speed HVAC systems (instead of setpoint changes) to limit the power of HVAC per `AHRI 1380 `_. + While any fraction value can be entered, this is primarily intended to reflect the AHRI capabilities, which has two levels of load shed: "General Curtailment" and "Critical Curtailment". + A "General Curtailment" signal prevents the equipment from running at more than 70% of max power and "Critical Curtailment" limits it to 40% of max power until comfort constraints are violated (4F off the setpoint). + During the shedding events, the main heat pump is limited to running below the specified fraction of rated power, and the backup system is locked out. + When the comfort constraints are violated, both heat pump and backup systems are allowed to run at full load to recover the indoor temperature until reaching setpoint. + Columns with units of `frac` must be normalized to MAX=1; that is, these schedules only define *when* energy is used, not *how much* energy is used. In other words, the amount of energy or hot water used in each simulation timestep is essentially the schedule value divided by the sum of all schedule values in the column, multiplied by the annual energy or hot water use. Example schedule CSV files are provided in the ``HPXMLtoOpenStudio/resources/schedule_files`` directory. @@ -2682,7 +2697,7 @@ Each geothermal loop is entered as a ``/HPXML/Building/BuildingDetails/Systems/H .. [#] 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: - + \- **standard**: 0.75 Btu/hr-ft-F \- **thermally enhanced**: 1.2 Btu/hr-ft-F @@ -4790,4 +4805,4 @@ The sample files help to illustrate how different building components are descri Each sample file generally makes one isolated change relative to the base HPXML (base.xml) building. For example, the base-dhw-dwhr.xml file adds a ``DrainWaterHeatRecovery`` element to the building. -You may find it useful to search through the files for certain HPXML elements or compare (diff) a sample file to the base.xml file. +You may find it useful to search through the files for certain HPXML elements or compare (diff) a sample file to the base.xml file. \ No newline at end of file diff --git a/tasks.rb b/tasks.rb index 0848e4d27..e4d75db18 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1611,6 +1611,25 @@ def apply_hpxml_modification(hpxml_file, hpxml) cooling_shr: 0.73, primary_cooling_system: true, primary_heating_system: true) + elsif ['base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml'].include? hpxml_file + hpxml_bldg.heat_pumps << hpxml_bldg.heat_pumps[0].dup + hpxml_bldg.heat_pumps[-1].id += "#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.heat_pumps[-1].primary_cooling_system = false + hpxml_bldg.heat_pumps[-1].primary_heating_system = false + hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 0.7 + hpxml_bldg.heat_pumps[0].fraction_cool_load_served = 0.7 + hpxml_bldg.heat_pumps[-1].fraction_heat_load_served = 0.3 + hpxml_bldg.heat_pumps[-1].fraction_cool_load_served = 0.3 + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup + hpxml_bldg.hvac_distributions[-1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" + hpxml_bldg.hvac_distributions[-1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" + hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id elsif ['base-mechvent-multiple.xml', 'base-bldgtype-mf-unit-shared-mechvent-multiple.xml'].include? hpxml_file hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", @@ -2364,6 +2383,13 @@ def display_usage(command_list) hpxml = HPXML.new(hpxml_path: hpxml_path) XMLHelper.write_file(hpxml.to_doc, hpxml_path) end + + # Reformat ACCA_Examples HPXMLs + puts 'Reformatting ACCA_Examples HPXMLs...' + Dir['workflow/tests/ACCA_Examples/*.xml'].each do |hpxml_path| + hpxml = HPXML.new(hpxml_path: hpxml_path) + XMLHelper.write_file(hpxml.to_doc, hpxml_path) + end end if ARGV[0].to_sym == :download_utility_rates diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index c761ad6fd..cb4a58325 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1760,6 +1760,17 @@ "heat_pump_heating_autosizing_factor": 1.4, "heating_system_2_heating_autosizing_factor": 0.9 }, + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv" + }, + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml" + }, + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml", + "simulation_control_timestep": 10 + }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", "heat_pump_cooling_compressor_type": "variable speed", @@ -1899,6 +1910,10 @@ "cooling_system_cooling_compressor_type": "variable speed", "cooling_system_cooling_sensible_heat_fraction": 0.78 }, + "sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml": { + "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv" + }, "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", "cooling_system_cooling_compressor_type": "variable speed", @@ -2076,6 +2091,10 @@ "cooling_system_cooling_compressor_type": "variable speed", "cooling_system_cooling_sensible_heat_fraction": 0.78 }, + "sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml": { + "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv" + }, "sample_files/base-hvac-furnace-gas-only.xml": { "parent_hpxml": "sample_files/base.xml", "cooling_system_type": "none", @@ -2332,6 +2351,14 @@ "heat_pump_cooling_capacity": 0, "heat_pump_fraction_cool_load_served": 0 }, + "sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv" + }, + "sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv" + }, "sample_files/base-hvac-mini-split-heat-pump-ductless.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", "heat_pump_backup_type": "none", diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml new file mode 100644 index 000000000..e727d3d8b --- /dev/null +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml @@ -0,0 +1,560 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.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-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml new file mode 100644 index 000000000..40f341e43 --- /dev/null +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml @@ -0,0 +1,631 @@ + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 0.7 + 0.7 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 0.3 + 0.3 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.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 + + + + + + + + + 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-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml new file mode 100644 index 000000000..8ba7a67df --- /dev/null +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml @@ -0,0 +1,560 @@ + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.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-central-ac-only-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml new file mode 100644 index 000000000..48466a632 --- /dev/null +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml @@ -0,0 +1,539 @@ + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 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-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml new file mode 100644 index 000000000..3f915c03c --- /dev/null +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml @@ -0,0 +1,555 @@ + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 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-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml new file mode 100644 index 000000000..ec0ccac46 --- /dev/null +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml @@ -0,0 +1,557 @@ + + + + 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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 0.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.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-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml new file mode 100644 index 000000000..cd96b115c --- /dev/null +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.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 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/hvac-variable-system-maximum-power-ratios-varied.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.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/tests/ACCA_Examples/Bell_Residence.xml b/workflow/tests/ACCA_Examples/Bell_Residence.xml index 05e59b2c1..d56ec7cf3 100644 --- a/workflow/tests/ACCA_Examples/Bell_Residence.xml +++ b/workflow/tests/ACCA_Examples/Bell_Residence.xml @@ -11,7 +11,10 @@ - 1007 + + 36.0 + + 1007.0 proposed workscope @@ -35,8 +38,8 @@ - 9 - 97 + 9.0 + 97.0 medium 70.0 75.0 diff --git a/workflow/tests/ACCA_Examples/Cobb_Residence.xml b/workflow/tests/ACCA_Examples/Cobb_Residence.xml index c89ff7d36..eaf5937b8 100644 --- a/workflow/tests/ACCA_Examples/Cobb_Residence.xml +++ b/workflow/tests/ACCA_Examples/Cobb_Residence.xml @@ -11,7 +11,10 @@ - 15 + + 26.0 + + 15.0 proposed workscope @@ -34,8 +37,8 @@ - 47 - 93 + 47.0 + 93.0 medium 70.0 75.0 diff --git a/workflow/tests/ACCA_Examples/Long_Residence.xml b/workflow/tests/ACCA_Examples/Long_Residence.xml index ff473cbf4..43f318581 100644 --- a/workflow/tests/ACCA_Examples/Long_Residence.xml +++ b/workflow/tests/ACCA_Examples/Long_Residence.xml @@ -11,7 +11,10 @@ - 863 + + 41.0 + + 863.0 proposed workscope @@ -34,8 +37,8 @@ - -5 - 89 + -5.0 + 89.0 medium 70.0 75.0 @@ -196,7 +199,7 @@ 0.67 - 0.60 + 0.6 diff --git a/workflow/tests/ACCA_Examples/Smith_Residence.xml b/workflow/tests/ACCA_Examples/Smith_Residence.xml index 5e82005ec..17ac33d7a 100644 --- a/workflow/tests/ACCA_Examples/Smith_Residence.xml +++ b/workflow/tests/ACCA_Examples/Smith_Residence.xml @@ -11,7 +11,10 @@ - 955 + + 42.0 + + 955.0 proposed workscope @@ -35,8 +38,8 @@ - -6 - 90 + -6.0 + 90.0 medium 70.0 75.0 @@ -63,7 +66,7 @@ 62.0 - 20355 + 20355.0 @@ -134,7 +137,7 @@ crawlspace - unvented basement - conditioned - 10 + 10.0 96.0 7.0 @@ -492,7 +495,7 @@ - + diff --git a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml index 437530bc9..cc45b0f10 100644 --- a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +++ b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml @@ -11,7 +11,10 @@ - 96 + + 29.0 + + 96.0 proposed workscope @@ -34,8 +37,8 @@ - 31 - 94 + 31.0 + 94.0 medium 70.0 75.0 diff --git a/workflow/tests/ACCA_Examples/Victor_Residence.xml b/workflow/tests/ACCA_Examples/Victor_Residence.xml index 6209d838b..493d8a4b7 100644 --- a/workflow/tests/ACCA_Examples/Victor_Residence.xml +++ b/workflow/tests/ACCA_Examples/Victor_Residence.xml @@ -11,7 +11,10 @@ - 607 + + 40.0 + + 607.0 proposed workscope @@ -34,8 +37,8 @@ - 3 - 90 + 3.0 + 90.0 medium 70.0 75.0 diff --git a/workflow/tests/ACCA_Examples/Walker_Residence.xml b/workflow/tests/ACCA_Examples/Walker_Residence.xml index 77b5abbc7..b19cb7ed3 100644 --- a/workflow/tests/ACCA_Examples/Walker_Residence.xml +++ b/workflow/tests/ACCA_Examples/Walker_Residence.xml @@ -11,7 +11,10 @@ - 7 + + 25.0 + + 7.0 proposed workscope @@ -34,8 +37,8 @@ - 52 - 90 + 52.0 + 90.0 low 70.0 75.0 diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 7ea445b70..a8d87d590 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -62,6 +62,24 @@ denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-method denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,32706.0,1719.0,1315.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,33904.0,33904.0,32706.0,1791.0,1410.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,33904.0,33904.0,32706.0,1791.0,1410.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-ACCA-backup-emergency.xml,27781.0,27781.0,31615.0,876.0,1155.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-ACCA-backup-supplemental.xml,27781.0,27781.0,13928.0,876.0,1155.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,11487.0,997.0,1315.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-MaxLoad-backup-emergency.xml,49657.0,49657.0,31615.0,1566.0,2065.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-MaxLoad-backup-supplemental.xml,49657.0,49657.0,0.0,1566.0,2065.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,27781.0,27781.0,31615.0,876.0,1155.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,27781.0,27781.0,13928.0,876.0,1155.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,31615.0,31615.0,11487.0,997.0,1315.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,49657.0,49657.0,31615.0,1566.0,2065.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,49657.0,49657.0,0.0,1566.0,2065.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-ACCA-backup-emergency.xml,43727.0,43727.0,28017.0,1379.0,1818.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-ACCA-backup-supplemental.xml,43727.0,43727.0,5239.0,1379.0,1818.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-HERS-backup-emergency.xml,40855.0,40855.0,28017.0,1289.0,1699.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-HERS-backup-supplemental.xml,40855.0,40855.0,3729.0,1289.0,1699.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-MaxLoad-backup-emergency.xml,64170.0,64170.0,28017.0,2025.0,2668.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-MaxLoad-backup-supplemental.xml,64170.0,64170.0,0.0,2025.0,2668.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,27781.0,27781.0,31615.0,876.0,1155.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,27781.0,27781.0,13928.0,876.0,1155.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,31615.0,31615.0,31615.0,997.0,1315.0 @@ -79,6 +97,7 @@ denver-hvac-autosize-boiler-wood-only.xml,24098.0,0.0,0.0,0.0,0.0 denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21822.0,0.0,0.0,907.0 denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21822.0,0.0,0.0,907.0 denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,21683.0,0.0,0.0,902.0 +denver-hvac-autosize-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,21370.0,0.0,0.0,889.0 denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,21370.0,0.0,0.0,889.0 denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.xml,31615.0,21822.0,31615.0,997.0,907.0 denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-supplemental.xml,31615.0,21822.0,16675.0,997.0,907.0 @@ -134,6 +153,7 @@ denver-hvac-autosize-furnace-coal-only.xml,32706.0,0.0,0.0,722.0,0.0 denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32706.0,21822.0,0.0,722.0,907.0 denver-hvac-autosize-furnace-elec-only.xml,32706.0,0.0,0.0,722.0,0.0 denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32706.0,21683.0,0.0,722.0,902.0 +denver-hvac-autosize-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,32706.0,21370.0,0.0,722.0,889.0 denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32706.0,21370.0,0.0,722.0,889.0 denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32706.0,0.0,0.0,722.0,0.0 denver-hvac-autosize-furnace-gas-only-pilot.xml,32706.0,0.0,0.0,722.0,0.0 @@ -204,12 +224,24 @@ denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14891.0,0. denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17415.0,0.0,0.0,724.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15967.0,0.0,0.0,664.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,17415.0,0.0,0.0,724.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,41844.0,0.0,26641.0,1320.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,41844.0,0.0,0.0,1320.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,26641.0,0.0,26641.0,840.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,26641.0,0.0,9679.0,840.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,41844.0,0.0,26641.0,1320.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,41844.0,0.0,0.0,1320.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,22259.0,22259.0,26641.0,702.0,926.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,22259.0,22259.0,12469.0,702.0,926.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,26641.0,26641.0,26641.0,840.0,1108.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,26641.0,26641.0,9679.0,840.0,1108.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,41844.0,41844.0,26641.0,1320.0,1740.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,41844.0,41844.0,0.0,1320.0,1740.0 denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,22259.0,22259.0,26641.0,702.0,926.0 denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,22259.0,22259.0,12469.0,702.0,926.0 denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,26641.0,26641.0,26641.0,840.0,1108.0 @@ -351,6 +383,24 @@ houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-metho houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,21542.0,1149.0,1207.0 houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,20318.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,20318.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,20318.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,25334.0,25334.0,0.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,29034.0,29034.0,20318.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,29034.0,29034.0,0.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-ACCA-backup-emergency.xml,40986.0,40986.0,18928.0,1068.0,1705.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-ACCA-backup-supplemental.xml,40986.0,40986.0,0.0,1068.0,1705.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-HERS-backup-emergency.xml,40434.0,40434.0,18928.0,1054.0,1681.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-HERS-backup-supplemental.xml,40434.0,40434.0,0.0,1054.0,1681.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-MaxLoad-backup-emergency.xml,46340.0,46340.0,18928.0,1207.0,1927.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems-sizing-methodology-MaxLoad-backup-supplemental.xml,46340.0,46340.0,0.0,1207.0,1927.0 houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-emergency.xml,24480.0,24480.0,20318.0,638.0,1018.0 houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA-backup-supplemental.xml,24480.0,24480.0,0.0,638.0,1018.0 houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS-backup-emergency.xml,25334.0,25334.0,20318.0,660.0,1053.0 @@ -368,6 +418,7 @@ houston-hvac-autosize-boiler-wood-only.xml,14346.0,0.0,0.0,0.0,0.0 houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27100.0,0.0,0.0,1127.0 houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27100.0,0.0,0.0,1127.0 houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27344.0,0.0,0.0,1137.0 +houston-hvac-autosize-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,24480.0,0.0,0.0,1018.0 houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,24480.0,0.0,0.0,1018.0 houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-emergency.xml,20318.0,27100.0,20318.0,529.0,1127.0 houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA-backup-supplemental.xml,20318.0,27100.0,3456.0,529.0,1127.0 @@ -423,6 +474,7 @@ houston-hvac-autosize-furnace-coal-only.xml,21542.0,0.0,0.0,393.0,0.0 houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21542.0,27100.0,0.0,393.0,1127.0 houston-hvac-autosize-furnace-elec-only.xml,21542.0,0.0,0.0,393.0,0.0 houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21542.0,27344.0,0.0,393.0,1137.0 +houston-hvac-autosize-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,21542.0,24480.0,0.0,393.0,1018.0 houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21542.0,24480.0,0.0,393.0,1018.0 houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21542.0,0.0,0.0,393.0,0.0 houston-hvac-autosize-furnace-gas-only-pilot.xml,21542.0,0.0,0.0,393.0,0.0 @@ -493,12 +545,24 @@ houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17972.0,0 houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20784.0,0.0,0.0,864.0 houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19595.0,0.0,0.0,815.0 houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,20784.0,0.0,0.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,18710.0,0.0,16325.0,487.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,18710.0,0.0,0.0,487.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-emergency.xml,16325.0,0.0,16325.0,425.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS-backup-supplemental.xml,16325.0,0.0,2080.0,425.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-emergency.xml,18710.0,0.0,16325.0,487.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad-backup-supplemental.xml,18710.0,0.0,0.0,487.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-ACCA-backup-emergency.xml,20784.0,20784.0,16325.0,541.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-ACCA-backup-supplemental.xml,20784.0,20784.0,0.0,541.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-HERS-backup-emergency.xml,19595.0,19595.0,16325.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-HERS-backup-supplemental.xml,19595.0,19595.0,0.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-emergency.xml,22457.0,22457.0,16325.0,585.0,934.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-max-power-ratio-schedule-sizing-methodology-MaxLoad-backup-supplemental.xml,22457.0,22457.0,0.0,585.0,934.0 houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-emergency.xml,20784.0,20784.0,16325.0,541.0,864.0 houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA-backup-supplemental.xml,20784.0,20784.0,0.0,541.0,864.0 houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS-backup-emergency.xml,19595.0,19595.0,16325.0,510.0,815.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 6246795ef..f90f107b2 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -194,6 +194,9 @@ base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,4 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.601,42.601,42.601,42.601,0.0,0.0,0.0,0.0,0.0,0.0,9.152,0.542,0.105,0.004,2.533,0.113,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.565,0.109,14.277,9.071,0.615,0.0,0.0,0.0,0.0,5162.0,3939.8,5162.0,24.549,18.285,0.0,3.368,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,4.807,0.0,0.728,0.0,9.688,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.441,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.501,50.501,50.501,50.501,0.0,0.0,0.0,0.0,0.0,0.0,10.064,0.743,6.011,0.337,3.088,0.105,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.942,6.348,14.244,9.071,0.615,0.0,0.0,0.0,0.0,8377.1,3855.2,8377.1,24.545,18.389,0.0,3.351,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,4.807,0.0,0.728,0.0,10.072,-7.801,-2.489,0.0,-0.041,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.782,-0.162,0.0,3.408,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.561,42.561,42.561,42.561,0.0,0.0,0.0,0.0,0.0,0.0,9.114,0.544,0.101,0.004,2.531,0.114,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.417,0.105,14.284,9.071,0.615,0.0,0.0,0.0,0.0,5145.3,3936.6,5145.3,24.549,18.281,0.0,3.373,3.64,0.512,7.511,0.63,10.09,-12.696,0.0,0.0,0.0,8.301,-0.065,4.807,0.0,0.728,0.0,9.534,-7.801,-2.489,0.0,-0.042,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.137,-3.781,-0.162,0.0,3.448,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,41.204,41.204,41.204,41.204,0.0,0.0,0.0,0.0,0.0,0.0,8.209,0.314,0.291,0.012,2.1,0.123,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.477,0.303,14.224,9.071,0.615,0.0,0.0,177.0,0.167,10128.0,4557.4,10128.0,31.11,19.807,0.0,3.45,3.654,0.515,7.545,0.639,10.144,-12.619,0.0,0.0,0.0,8.278,-0.063,4.77,0.0,0.732,0.0,8.416,-7.799,-2.489,0.0,-0.144,-0.463,-0.053,2.772,-0.025,-1.354,11.735,0.0,0.0,0.0,-6.21,-0.058,-1.122,-3.62,-0.168,0.0,3.279,7.782,2.018,1354.7,998.0,11171.7,2563.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.375,42.375,42.375,42.375,0.0,0.0,0.0,0.0,0.0,0.0,9.689,0.176,0.037,0.002,2.204,0.117,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.727,0.039,13.983,9.071,0.615,0.0,0.0,28.0,1.0,5301.2,4008.2,5301.2,26.734,19.616,0.0,3.404,3.643,0.513,7.517,0.631,10.096,-12.702,0.0,0.0,0.0,8.313,-0.064,4.811,0.004,0.728,0.0,8.783,-7.803,-2.49,0.0,-0.027,-0.439,-0.048,2.75,-0.019,-1.328,11.711,0.0,0.0,0.0,-6.232,-0.06,-1.136,-3.776,-0.161,0.0,3.142,7.779,2.018,1354.7,998.0,11171.6,2563.5,0.0,72000.0,72000.0,72000.0,6.8,91.76,38139.0,14041.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,32171.0,18429.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,40.929,40.929,40.929,40.929,0.0,0.0,0.0,0.0,0.0,0.0,8.066,0.292,0.237,0.011,2.052,0.121,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.948,0.247,13.98,9.071,0.615,0.0,0.0,169.0,2.0,5670.0,3201.2,5670.0,24.953,18.264,0.0,3.419,3.631,0.511,7.482,0.628,10.061,-12.708,0.0,0.0,0.0,8.266,-0.063,4.788,0.007,0.726,0.0,8.171,-7.804,-2.49,0.0,-0.027,-0.439,-0.048,2.746,-0.019,-1.33,11.706,0.0,0.0,0.0,-6.237,-0.059,-1.137,-3.775,-0.162,0.0,3.131,7.777,2.017,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-air-to-air-heat-pump-var-speed.xml,41.112,41.112,41.112,41.112,0.0,0.0,0.0,0.0,0.0,0.0,8.181,0.28,0.32,0.015,2.047,0.118,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.068,0.334,13.982,9.071,0.615,0.0,0.0,0.0,0.0,5827.2,3201.4,5827.2,24.603,18.265,0.0,3.426,3.639,0.512,7.509,0.63,10.089,-12.696,0.0,0.0,0.0,8.298,-0.065,4.807,0.0,0.728,0.0,8.14,-7.801,-2.489,0.0,-0.029,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.237,-0.061,-1.137,-3.781,-0.162,0.0,3.133,7.78,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-autosize-sizing-controls.xml,49.898,49.898,42.212,42.212,7.686,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.096,0.462,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.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,7.108,0.0,8.821,16.197,0.647,0.0,0.0,0.0,0.0,2485.0,3626.8,3626.8,17.497,15.427,0.0,2.85,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.528,-0.057,3.485,0.0,0.573,0.0,1.612,-8.608,-2.465,0.0,-0.077,-0.54,-0.062,2.449,-0.05,-1.667,11.85,0.0,0.0,0.0,-7.413,-0.057,-1.213,-6.54,-0.183,0.0,1.691,8.945,2.042,2180.8,1715.9,21140.4,3685.8,0.0,31891.0,31095.0,0.0,0.0,100.0,31891.0,9071.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.0,2061.0,4307.0,24002.0,6671.0,7422.0,0.0,318.0,951.0,0.0,0.0,0.0,2714.0,776.0,5150.0,2339.0,420.0,719.0,1200.0 base-hvac-autosize.xml,59.942,59.942,35.694,35.694,24.248,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.322,0.82,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.709,0.0,14.319,9.071,0.615,0.0,0.0,0.0,0.0,2054.4,3889.7,3889.7,24.277,19.457,0.0,3.518,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.7,-7.8,-2.489,0.0,-0.045,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.451,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,32706.0,21822.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -211,6 +214,7 @@ base-hvac-central-ac-only-1-speed.xml,35.37,35.37,35.37,35.37,0.0,0.0,0.0,0.0,0. base-hvac-central-ac-only-2-speed.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,3.077,0.684,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.052,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3224.5,3224.5,0.0,19.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.656,-0.163,0.0,3.524,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.345,34.345,34.345,34.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.948,0.367,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.274,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,4187.3,4187.3,0.0,19.077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.126,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.663,-0.163,0.0,4.814,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,20971.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.341,33.341,33.341,33.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.194,0.116,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.004,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3642.4,3642.4,0.0,18.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.063,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.16,-3.659,-0.163,0.0,3.514,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,32.992,32.992,32.992,32.992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.689,0.273,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.821,9.071,0.666,0.0,0.0,0.0,4.0,1974.9,3375.2,3375.2,0.0,21.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.103,-0.445,-0.048,2.73,-0.026,-1.374,11.844,0.0,0.0,0.0,-6.849,-0.065,-1.161,-3.662,-0.163,0.0,4.347,7.903,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-only-var-speed.xml,32.986,32.986,32.986,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.686,0.27,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.827,9.071,0.666,0.0,0.0,0.0,0.0,1974.9,3015.4,3015.4,0.0,19.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.102,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.16,-3.661,-0.163,0.0,4.352,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.842,47.842,47.842,47.842,0.0,0.0,0.0,0.0,0.0,0.0,10.003,1.837,0.343,0.034,4.334,1.14,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.618,0.377,14.06,9.071,0.615,0.0,0.0,0.0,0.0,7390.6,4059.7,7390.6,25.614,19.322,0.0,3.48,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,4.807,0.0,0.728,0.0,6.625,-7.8,-2.489,0.0,-0.034,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.187,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31615.0,7517.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-dse.xml,59.432,59.432,36.464,36.464,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,5.025,0.909,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,0.0,2034.7,3107.2,3107.2,16.762,12.093,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -236,6 +240,7 @@ base-hvac-furnace-coal-only.xml,54.874,54.874,30.832,30.832,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-elec-central-ac-1-speed.xml,57.33,57.33,57.33,57.33,0.0,0.0,0.0,0.0,0.0,0.0,21.735,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,7905.7,3884.4,7905.7,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-elec-only.xml,53.402,53.402,53.402,53.402,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.625,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.744,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,8296.6,1786.0,8296.6,24.541,0.0,0.0,3.515,3.641,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.808,0.0,0.728,0.0,5.885,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-central-ac-2-speed.xml,57.958,57.958,34.333,34.333,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,3.127,0.665,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,14.401,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3593.8,3593.8,23.508,19.799,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.048,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.78,-0.162,0.0,3.533,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,57.197,57.197,33.572,33.572,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.744,0.287,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.127,0.0,15.236,9.071,0.615,0.0,0.0,0.0,7.0,2052.4,3538.4,3538.4,23.508,21.604,0.0,3.54,3.638,0.512,7.504,0.629,10.081,-12.702,0.0,0.0,0.0,8.295,-0.064,4.806,0.003,0.728,0.0,5.092,-7.803,-2.49,0.0,-0.092,-0.44,-0.049,2.746,-0.02,-1.334,11.711,0.0,0.0,0.0,-6.236,-0.06,-1.138,-3.784,-0.162,0.0,4.431,7.779,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-central-ac-var-speed.xml,57.187,57.187,33.562,33.562,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,2.739,0.282,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,15.249,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3366.3,3366.3,23.508,19.441,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.092,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.137,-3.785,-0.162,0.0,4.436,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-only-autosize-factor.xml,53.363,53.363,30.793,30.793,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.587,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.348,0.0,0.0,9.071,0.592,0.0,0.0,0.0,0.0,2038.2,1786.0,2038.2,22.69,0.0,0.0,3.566,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.139,-0.07,4.808,0.0,0.728,0.0,4.449,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,45789.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,38.822,38.822,30.321,30.321,8.501,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,8.035,0.0,0.0,9.071,0.636,0.0,0.0,0.0,0.0,1989.1,1804.8,1989.1,18.724,0.0,0.0,2.806,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.446,0.0,0.566,0.0,2.046,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -268,7 +273,9 @@ base-hvac-mini-split-air-conditioner-only-ductless.xml,32.931,32.931,32.931,32.9 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.099,32.099,32.099,32.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.025,0.044,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.562,9.071,0.666,0.0,0.0,0.0,0.0,1924.9,2505.4,2505.4,0.0,13.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,-0.445,-0.048,2.729,-0.025,-1.372,11.85,0.0,0.0,0.0,-6.856,-0.066,-1.16,-3.653,-0.163,0.0,1.003,7.904,2.042,1354.7,998.0,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,41.175,41.175,41.175,41.175,0.0,0.0,0.0,0.0,0.0,0.0,7.661,0.237,0.0,0.0,3.038,0.087,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.833,0.0,12.493,9.071,0.615,0.0,0.0,0.0,0.0,4140.2,3263.9,4140.2,19.554,14.251,0.0,3.588,3.637,0.512,7.505,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.775,-7.8,-2.489,0.0,0.03,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.137,-3.78,-0.162,0.0,1.615,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,26641.0,26641.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.595,40.595,40.595,40.595,0.0,0.0,0.0,0.0,0.0,0.0,7.358,0.159,0.0,0.0,2.89,0.036,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.407,0.0,12.256,9.071,0.615,0.0,0.0,0.0,0.0,4041.1,3122.1,4041.1,19.308,14.108,0.0,3.602,3.637,0.512,7.504,0.63,10.086,-12.691,0.0,0.0,0.0,8.287,-0.067,4.807,0.0,0.728,0.0,3.337,-7.8,-2.489,0.0,0.04,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.778,-0.162,0.0,1.369,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,37.228,37.228,37.228,37.228,0.0,0.0,0.0,0.0,0.0,0.0,6.794,0.169,0.057,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.148,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.97,0.059,0.0,9.071,0.592,0.0,0.0,99.0,0.0,4198.4,1785.9,4198.4,19.781,0.0,0.0,3.607,3.636,0.512,7.477,0.629,10.081,-12.691,0.0,0.0,0.0,8.119,-0.07,4.799,0.0,0.728,0.0,3.113,-7.799,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.29,37.29,37.29,37.29,0.0,0.0,0.0,0.0,0.0,0.0,6.878,0.137,0.065,0.003,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.024,0.067,0.0,9.071,0.592,0.0,0.0,0.0,0.0,4437.4,1785.9,4437.4,19.645,0.0,0.0,3.611,3.64,0.512,7.488,0.63,10.094,-12.691,0.0,0.0,0.0,8.137,-0.07,4.808,0.0,0.728,0.0,3.095,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 +base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,39.302,39.302,39.302,39.302,0.0,0.0,0.0,0.0,0.0,0.0,6.86,0.105,0.058,0.001,2.081,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.169,0.06,11.928,9.071,0.615,0.0,0.0,100.0,0.0,4143.6,2873.2,4143.6,19.548,14.142,0.0,3.602,3.633,0.511,7.492,0.628,10.072,-12.691,0.0,0.0,0.0,8.269,-0.067,4.797,0.0,0.727,0.0,3.167,-7.799,-2.489,0.0,0.051,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.244,-0.063,-1.137,-3.777,-0.162,0.0,1.03,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ducted.xml,39.375,39.375,39.375,39.375,0.0,0.0,0.0,0.0,0.0,0.0,6.943,0.086,0.066,0.002,2.081,0.045,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.228,0.068,11.929,9.071,0.615,0.0,0.0,0.0,0.0,4361.3,2873.3,4361.3,19.413,14.142,0.0,3.607,3.637,0.512,7.504,0.63,10.085,-12.691,0.0,0.0,0.0,8.287,-0.066,4.807,0.0,0.728,0.0,3.154,-7.8,-2.489,0.0,0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.137,-3.777,-0.162,0.0,1.03,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26641.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,15822.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.078,39.078,39.078,39.078,0.0,0.0,0.0,0.0,0.0,0.0,5.983,0.131,0.393,0.0,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.195,0.393,10.914,9.071,0.615,0.0,0.0,0.0,0.0,4413.1,3100.7,4413.1,16.762,12.092,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24098.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.844,45.844,36.508,36.508,9.336,0.0,0.0,0.0,0.0,0.0,3.616,0.049,0.0,0.281,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.36,7.751,10.83,9.071,0.615,0.0,0.0,2.0,0.0,2953.5,3118.8,3118.8,17.594,12.255,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.887,0.0,0.727,0.0,0.115,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018,1354.7,998.0,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,25048.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,13741.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 02b96f0a8..ee9f28faf 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -194,6 +194,9 @@ base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1707.47,144.0,1563.47,0.0,1707.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-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1997.4,144.0,1853.4,0.0,1997.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 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1705.99,144.0,1561.99,0.0,1705.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-var-speed-max-power-ratio-schedule-10-mins.xml,1656.19,144.0,1512.19,0.0,1656.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-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,1699.19,144.0,1555.19,0.0,1699.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-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,1646.11,144.0,1502.11,0.0,1646.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed.xml,1652.84,144.0,1508.84,0.0,1652.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-autosize-sizing-controls.xml,1918.63,144.0,1549.21,0.0,1693.21,144.0,81.42,225.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-autosize.xml,1854.84,144.0,1309.97,0.0,1453.97,144.0,256.87,400.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 @@ -211,6 +214,7 @@ base-hvac-central-ac-only-1-speed.xml,1442.1,144.0,1298.1,0.0,1442.1,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.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 base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1404.48,144.0,1260.48,0.0,1404.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-central-ac-only-var-speed-detailed-performance.xml,1367.63,144.0,1223.63,0.0,1367.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-central-ac-only-var-speed-max-power-ratio-schedule.xml,1354.83,144.0,1210.83,0.0,1354.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-var-speed.xml,1354.62,144.0,1210.62,0.0,1354.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 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1899.82,144.0,1755.82,0.0,1899.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-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 @@ -236,6 +240,7 @@ base-hvac-furnace-coal-only.xml,1636.18,144.0,1131.54,0.0,1275.54,0.0,0.0,0.0,0. base-hvac-furnace-elec-central-ac-1-speed.xml,2248.02,144.0,2104.02,0.0,2248.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-furnace-elec-only.xml,2103.88,144.0,1959.88,0.0,2103.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 base-hvac-furnace-gas-central-ac-2-speed.xml,1798.3,144.0,1260.03,0.0,1404.03,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,1770.39,144.0,1232.12,0.0,1376.12,144.0,250.27,394.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-hvac-furnace-gas-central-ac-var-speed.xml,1770.02,144.0,1231.75,0.0,1375.75,144.0,250.27,394.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-hvac-furnace-gas-only-autosize-factor.xml,1657.22,144.0,1130.13,0.0,1274.13,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 base-hvac-furnace-gas-only-detailed-setpoints.xml,1490.84,144.0,1112.79,0.0,1256.79,144.0,90.05,234.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 @@ -268,7 +273,9 @@ base-hvac-mini-split-air-conditioner-only-ductless.xml,1352.58,144.0,1208.58,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1322.05,144.0,1178.05,0.0,1322.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-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1655.15,144.0,1511.15,0.0,1655.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1633.85,144.0,1489.85,0.0,1633.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-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,1510.29,144.0,1366.29,0.0,1510.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-mini-split-heat-pump-ducted-heating-only.xml,1512.54,144.0,1368.54,0.0,1512.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-max-power-ratio-schedule.xml,1586.41,144.0,1442.41,0.0,1586.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted.xml,1589.06,144.0,1445.06,0.0,1589.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-ductless-backup-baseboard.xml,1578.18,144.0,1434.18,0.0,1578.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1726.74,144.0,1339.84,0.0,1483.84,144.0,98.9,242.9,0.0,0.0,0.0,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/util.rb b/workflow/tests/util.rb index 855da8278..73ec26dc4 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -45,6 +45,9 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t elsif hpxml_bldg.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size > 0 # FUTURE: GSHPs currently don't give desired results w/ unit multipliers # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + elsif xml.include? 'max-power-ratio-schedule' + # FUTURE: Maximum power ratio schedule currently gives inconsistent component load results w/ unit multipliers + # https://github.com/NREL/OpenStudio-HPXML/issues/1610 elsif hpxml_bldg.batteries.size > 0 # FUTURE: Batteries currently don't work with whole SFA/MF buildings # https://github.com/NREL/OpenStudio-HPXML/issues/1499 @@ -65,8 +68,8 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t end print "Testing #{File.basename(xml)}...\n" - rundir = File.join(File.dirname(__FILE__), "test#{worker_num}") + rundir = File.join(File.dirname(__FILE__), "test#{worker_num}") # Uses 'monthly' to verify timeseries results match annual results via error-checking # inside the ReportSimulationOutput measure. cli_path = OpenStudio.getOpenStudioCLI From 6de7432f104aa97af39ef2045e3b7a6e8ef7d572 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 09:24:32 -0700 Subject: [PATCH 29/35] Just use 8.2 ft as the default. --- Changelog.md | 2 +- docs/source/workflow_inputs.rst | 3 +-- rulesets/resources/301ruleset.rb | 9 ++------- rulesets/resources/301validator.xml | 2 +- 4 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Changelog.md b/Changelog.md index 82337204c..0dd28c8fa 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,7 +7,7 @@ __New Features__ - The `ElectricAuxiliaryEnergy` input for boilers is no longer used. - **Breaking change**: ERI_Results.csv and ERI_Worksheet.csv combined into a single ERI_Results.csv that better reflects the current ERI calculation components; additional fields (e.g., PEfrac) added and a few renamed/removed. - **Breaking change**: Each `VentilationFan` must have one (and only one) `UsedFor...` element set to true. -- Allows `AverageCeilingHeight` or `ConditionedBuildingVolume` to be optionally provided for infiltration calculations. +- Allows `AverageCeilingHeight` to be optionally provided for infiltration calculations. - Ground source heat pump model enhancements. - Allows `Roof/RadiantBarrier` to be omitted; defaults to false. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 793430802..16926fb11 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -141,14 +141,13 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement) ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) + ``AverageCeilingHeight`` double ft > 0 No 8.2 Floor to ceiling height within conditioned space ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary - ``AverageCeilingHeight`` and/or ``ConditionedBuildingVolume`` double ft or ft3 > 0 No See [#]_ Ceiling/volume height within conditioned space boundary ============================================================= ======== ========= ================================= ======== ======== ======================================================================= .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", or "apartment unit". For ENERGY STAR, "single-family detached" may only be used for SF versions and "apartment unit" may only be used for MF versions; "single-family attached" may be used for all versions. - .. [#] If AverageCeilingHeight not provided, defaults to ConditionedBuildingVolume / ConditionedFloorArea if ConditionedBuildingVolume is provided, else 8.2. HPXML Weather Station --------------------- diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index 2614c59b6..642829152 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -288,7 +288,6 @@ def self.set_summary_reference(orig_bldg, new_bldg) new_bldg.building_construction.conditioned_floor_area = orig_bldg.building_construction.conditioned_floor_area new_bldg.building_construction.residential_facility_type = @bldg_type new_bldg.building_construction.average_ceiling_height = orig_bldg.building_construction.average_ceiling_height - new_bldg.building_construction.conditioned_building_volume = orig_bldg.building_construction.conditioned_building_volume new_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = false end @@ -310,7 +309,6 @@ def self.set_summary_rated(orig_bldg, new_bldg) new_bldg.building_construction.conditioned_floor_area = orig_bldg.building_construction.conditioned_floor_area new_bldg.building_construction.residential_facility_type = @bldg_type new_bldg.building_construction.average_ceiling_height = orig_bldg.building_construction.average_ceiling_height - new_bldg.building_construction.conditioned_building_volume = orig_bldg.building_construction.conditioned_building_volume new_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = false end @@ -3092,10 +3090,7 @@ def calc_area_weighted_avg(surfaces, attribute, use_inverse: false, backup_value def apply_default_average_ceiling_height(orig_bldg) if orig_bldg.building_construction.average_ceiling_height.nil? - if not orig_bldg.building_construction.conditioned_building_volume.nil? - orig_bldg.building_construction.average_ceiling_height = (orig_bldg.building_construction.conditioned_building_volume / orig_bldg.building_construction.conditioned_floor_area).round(2) - else - orig_bldg.building_construction.average_ceiling_height = 8.2 - end + # ASHRAE 62.2 default for average floor to ceiling height + orig_bldg.building_construction.average_ceiling_height = 8.2 end end diff --git a/rulesets/resources/301validator.xml b/rulesets/resources/301validator.xml index 0237d1c3e..cb335eeb6 100644 --- a/rulesets/resources/301validator.xml +++ b/rulesets/resources/301validator.xml @@ -220,11 +220,11 @@ Expected 1 element(s) for xpath: NumberofConditionedFloors Expected 1 element(s) for xpath: NumberofConditionedFloorsAboveGrade Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade + Expected 0 or 1 element(s) for xpath: AverageCeilingHeight Expected 1 element(s) for xpath: NumberofBedrooms Expected NumberofBedrooms to be greater than or equal to 1 Expected 1 element(s) for xpath: ConditionedFloorArea Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. - Expected 0 or more element(s) for xpath: ConditionedBuildingVolume | AverageCeilingHeight From 05ef53ee96569107803416ec7f23210d4486ae4a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 09:34:29 -0700 Subject: [PATCH 30/35] Squashed 'hpxml-measures/' changes from 39f10fcb07..fc7bec4e8f fc7bec4e8f Switch to ASHRAE 62.2 default. 1011d6b37b Clarify description [ci skip] git-subtree-dir: hpxml-measures git-subtree-split: fc7bec4e8f0a134494ce52bbcefa84842cfd71d4 --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 3 ++- HPXMLtoOpenStudio/tests/test_defaults.rb | 6 +++--- docs/source/workflow_inputs.rst | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a9e0afb65..7653e4ae7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - cee6e318-93c8-4149-8e52-91941db9e34d - 2024-03-08T15:59:29Z + 22c911f3-d05a-43bb-808d-95fb95f4746d + 2024-03-08T16:29:32Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - B2ADBD5F + 628A6E9C hpxml_schema/HPXML.xsd @@ -598,7 +598,7 @@ test_defaults.rb rb test - 6AB95336 + 5963F79E test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 068adf92e..d38e9b74d 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -666,7 +666,8 @@ def self.apply_building_occupancy(hpxml_bldg, schedules_file) def self.apply_building_construction(hpxml_bldg, cfa, nbeds) cond_crawl_volume = hpxml_bldg.inferred_conditioned_crawlspace_volume() if hpxml_bldg.building_construction.average_ceiling_height.nil? - hpxml_bldg.building_construction.average_ceiling_height = 8.0 + # ASHRAE 62.2 default for average floor to ceiling height + hpxml_bldg.building_construction.average_ceiling_height = 8.2 hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true end if hpxml_bldg.building_construction.conditioned_building_volume.nil? diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 305235fa1..a20155566 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -437,7 +437,7 @@ def test_building_construction hpxml_bldg.building_construction.number_of_units = 3 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_building_construction_values(default_hpxml_bldg, 20000, 7, 4, 3) + _test_default_building_construction_values(default_hpxml_bldg, 20000, 7.0, 4, 3) # Test defaults hpxml_bldg.building_construction.conditioned_building_volume = nil @@ -446,14 +446,14 @@ def test_building_construction hpxml_bldg.building_construction.number_of_units = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_building_construction_values(default_hpxml_bldg, 21600, 8, 2, 1) + _test_default_building_construction_values(default_hpxml_bldg, 22140, 8.2, 2, 1) # Test defaults w/ conditioned crawlspace hpxml, hpxml_bldg = _create_hpxml('base-foundation-conditioned-crawlspace.xml') hpxml_bldg.building_construction.conditioned_building_volume = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_building_construction_values(default_hpxml_bldg, 16200, 8, 2, 1) + _test_default_building_construction_values(default_hpxml_bldg, 16200, 8.0, 2, 1) end def test_climate_and_risk_zones diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index eaef29bac..3116c1500 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -575,7 +575,7 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu ``NumberofUnits`` integer >= 1 No 1 Unit multiplier [#]_ ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a conditioned basement; excluding a conditioned crawlspace) ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) - ``AverageCeilingHeight`` double ft > 0 No 8.0 Ceiling height within conditioned space + ``AverageCeilingHeight`` double ft > 0 No 8.2 Floor to ceiling height within conditioned space ``NumberofBedrooms`` integer >= 0 Yes Number of bedrooms ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary (excluding conditioned crawlspace floor area) From ab0aaab38cf48223de622cb7c304f50641c02bf6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Mar 2024 17:37:14 +0000 Subject: [PATCH 31/35] Latest results. --- .../RESNET_Test_4.1_Standard_140.csv | 8 +- .../base_results/RESNET_Test_4.4_HVAC.csv | 4 +- .../base_results/RESNET_Test_4.5_DSE.csv | 16 +- workflow/tests/base_results/real_homes.csv | 164 +++++++++--------- 4 files changed, 96 insertions(+), 96 deletions(-) diff --git a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv index f1d456669..1543c73b4 100644 --- a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv +++ b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv @@ -7,7 +7,7 @@ L140AC.xml,48.05,N/A L150AC.xml,40.85,N/A L155AC.xml,44.14,N/A L160AC.xml,52.19,N/A -L170AC.xml,62.0,N/A +L170AC.xml,62.01,N/A L200AC.xml,124.27,N/A L202AC.xml,131.27,N/A L302XC.xml,46.87,N/A @@ -20,8 +20,8 @@ L120AL.xml,N/A,47.69 L130AL.xml,N/A,36.35 L140AL.xml,N/A,24.32 L150AL.xml,N/A,64.56 -L155AL.xml,N/A,48.79 +L155AL.xml,N/A,48.78 L160AL.xml,N/A,62.49 -L170AL.xml,N/A,42.11 -L200AL.xml,N/A,64.53 +L170AL.xml,N/A,42.1 +L200AL.xml,N/A,64.52 L202AL.xml,N/A,54.83 diff --git a/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv b/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv index 5944910ff..2cc08ab18 100644 --- a/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv +++ b/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv @@ -1,6 +1,6 @@ Test Case,HVAC (kWh or therm),HVAC Fan (kWh) -HVAC1a.xml,6142.77,1199.83 -HVAC1b.xml,4558.13,1199.83 +HVAC1a.xml,6141.6,1199.83 +HVAC1b.xml,4557.26,1199.83 HVAC2a.xml,650.32,375.42 HVAC2b.xml,563.61,375.42 HVAC2c.xml,7711.58,859.87 diff --git a/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv b/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv index 049986118..76be0fe68 100644 --- a/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv +++ b/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv @@ -1,9 +1,9 @@ Test Case,Heat/Cool (kWh or therm),HVAC Fan (kWh) -HVAC3a.xml,570.75,226.25 -HVAC3e.xml,6144.82,1199.83 -HVAC3b.xml,682.0,390.66 -HVAC3c.xml,609.97,267.57 -HVAC3d.xml,653.55,443.71 -HVAC3f.xml,7469.21,1450.7 -HVAC3g.xml,6591.75,1284.82 -HVAC3h.xml,7250.58,1384.76 +HVAC3a.xml,570.74,226.25 +HVAC3e.xml,6143.65,1199.54 +HVAC3b.xml,681.99,390.66 +HVAC3c.xml,609.96,267.57 +HVAC3d.xml,653.54,443.71 +HVAC3f.xml,7467.45,1450.41 +HVAC3g.xml,6590.29,1284.53 +HVAC3h.xml,7249.11,1384.17 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index f1be1cb19..986accaa7 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,86 +1,86 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -house001.xml,62.67,31.972,21.37,34.0981,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.864,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2477,0.8521,1.2821,0.2625,1.6393,5.5795,1.1293,4.0052,0.0,0.0,8.9135,1.197,7.7055,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5819.88,7644.8,57.42,1.0,57.42,62.67,62.67,0.0,46.56,1.0,46.56,62.67,62.67,0.0,59.89,33.336,21.2934,35.5528,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.8364,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8026,0.2396,0.8512,1.2821,0.2625,1.6393,5.5506,1.0868,4.0011,0.0,0.0,8.8663,1.191,7.7055,9.78,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house002.xml,70.22,115.263,79.5937,113.3464,0.18474,0.9834,1.0,1.0,0.9834,1.0,69.183,0.0,0.0,52.32,21.41,9.53,42.24,12.28,10.55,30.8,1.19,0.0,0.5491,0.4579,0.9819,0.4432,0.2625,1.087,34.1472,11.1073,8.5301,0.0,0.0,27.5652,6.3691,9.443,27.57,6.37,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.1,12589.73,18006.37,50.83,1.0,50.83,70.22,70.22,0.0,48.37,1.0,48.37,70.22,70.22,0.0,64.8,123.635,78.7843,121.5792,0.18474,0.9834,1.0,1.0,0.9834,1.0,68.719,0.0,0.0,60.65,21.5,9.53,48.67,12.81,10.55,30.8,1.16,0.0,0.5523,0.4407,0.9818,0.4432,0.2625,1.087,33.917,10.5841,8.5293,0.0,0.0,27.2192,6.3051,9.443,27.22,6.31,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 -house003.xml,62.92,88.641,55.361,87.9812,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.5606,0.0,0.0,28.19,21.63,8.82,31.39,12.32,16.03,29.0,1.0,0.0,1.4119000000000002,0.4609,0.9324,1.7253,0.2625,1.6949,18.296300000000002,11.976,1.9778,0.0,0.0,18.9375,6.8221,3.5952,19.729999999999997,6.82,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,74.02,9462.73,12879.78,49.15,1.0,49.15,62.92,62.92,0.0,47.2,1.0,47.2,62.92,62.92,0.0,59.44,92.153,54.3719,91.4671,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.2032,0.0,0.0,31.95,21.43,8.82,35.08,12.76,16.04,29.0,0.97,0.0,1.4140000000000001,0.441,0.9318,1.7253,0.2625,1.6949,17.9931,11.3373,1.9764,0.0,0.0,18.5709,6.7491,3.5952,19.35,6.75,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 -house004.xml,60.97,90.448,57.588,94.454,0.3199,1.0443,1.0,1.0,1.0443,1.0,52.5052,0.0,0.0,50.76,2.78,13.08,47.09,1.43,14.34,22.18,1.66,0.0,0.4778,0.5122,0.9808,0.4432,0.2625,1.0753,33.1651,0.595,4.8599,0.0,0.0,30.7683,0.305,5.3281,30.77,0.31,5.39,15.87,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.52,4964.55,7146.29,56.26,1.0,56.26,60.97,60.97,0.0,48.59,1.0,48.59,60.97,60.97,0.0,55.36,99.933,57.7773,104.3589,0.31989,1.0443,1.0,1.0,1.0443,1.0,52.4012,0.0,0.0,60.64,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4951,0.9808,0.4432,0.2625,1.0753,33.3821,0.5657,4.8635,0.0,0.0,30.6683,0.3,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 -house005.xml,60.32,28.235,18.3565,30.4326,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.788,0.0,0.0,5.0,4.01,5.78,4.33,2.28,12.12,12.72,0.72,0.0,0.5125,0.4626,0.8089,0.4432,0.2625,1.6949,1.5782,2.8722,0.8716,2.3849,0.0366,1.365,1.63,1.8264,1.37,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.36,2692.93,2997.34,49.97,1.0,49.97,60.32,60.32,0.0,44.75,1.0,44.75,60.32,60.32,0.0,58.43,29.066,18.3044,31.3282,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.7682,0.0,0.0,5.92,3.94,5.78,4.97,2.29,12.13,12.71,0.72,0.0,0.5275,0.4518,0.8079,0.4432,0.2625,1.6949,1.6137,2.791,0.8706,2.3805,0.0366,1.356,1.622,1.8264,1.36,1.62,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 -house006.xml,71.74,92.114,67.3235,93.8442,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.422,0.0,0.0,32.58,20.6,10.53,24.52,11.92,11.82,27.5,0.91,0.0,1.178,0.9078999999999999,0.9796,0.8864,0.525,1.0989,22.341,12.829,9.4726,0.0,0.0,16.813200000000002,7.42,10.6265,16.82,7.42,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.98,10225.11,13751.74,45.85,1.0,45.85,71.74,71.74,0.0,43.96,1.0,43.96,71.74,71.74,0.0,69.63,94.096,66.7476,95.8635,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.268,0.0,0.0,34.74,20.48,10.53,26.18,12.16,11.82,27.49,0.85,0.0,1.1768,0.8844000000000001,0.9796,0.8864,0.525,1.0989,22.1674,12.4267,9.4726,0.0,0.0,16.7002,7.378,10.6265,16.700000000000003,7.38,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 -house007.xml,76.98,46.854,38.1145,49.5123,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,15.96,4.62,8.84,13.66,2.59,9.87,17.03,0.41,0.0,0.5179,0.4679,0.9739,0.4432,0.2625,1.087,13.3184,1.08,7.592,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.24,8954.51,10693.74,57.14,1.0,57.14,76.98,76.98,0.0,48.06,1.0,48.06,76.98,76.98,0.0,73.93,48.956,38.2491,51.7336,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,18.27,4.48,8.84,15.45,2.57,9.87,17.02,0.35,0.0,0.5242,0.4573,0.9735,0.4432,0.2625,1.087,13.4804,1.0557,7.589,0.0,0.0,11.3981,0.606,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 -house008.xml,62.88,161.2,98.5565,156.7425,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.8726,0.0,0.0,97.86,10.46,13.21,155.93,6.65,22.24,38.43,1.24,0.0,0.8046,0.413,1.0241,1.2821,0.2625,1.7241,47.6656,5.6361,7.7118,0.0,0.0,75.9538,3.583,12.9828,83.84,3.58,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.59,24536.57,34289.96,51.57,1.0,51.57,62.88,62.88,0.0,46.67,1.0,46.67,62.88,62.88,0.0,57.42,175.729,98.1149,170.8697,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.7344,0.0,0.0,112.88,10.12,13.21,179.87,6.72,22.26,38.43,1.1,0.0,0.8046,0.395,1.0235,1.2821,0.2625,1.7241,47.5119,5.3537,7.7073,0.0,0.0,75.7083,3.558,12.9828,83.57,3.56,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 -house009.xml,62.57,99.613,63.851,102.0474,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.5506,0.0,0.0,20.07,41.83,8.98,32.15,24.91,16.38,27.85,0.88,0.0,0.8004,0.4409,0.9448,1.2821,0.2625,1.7241,11.1293,22.589,6.2937,0.0,0.0,17.8269,13.4511,11.4851,18.01,13.45,12.35,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.95,10149.99,11527.2,48.9,1.0,48.9,62.57,62.57,0.0,45.72,1.0,45.72,62.57,62.57,0.0,59.53,102.5,62.5054,105.0049,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.0992,0.0,0.0,22.63,42.24,8.98,36.25,25.92,16.38,27.84,0.82,0.0,0.8004,0.4278,0.9448,1.2821,0.2625,1.7241,10.7692,21.652,6.2942,0.0,0.0,17.25,13.2881,11.486,17.43,13.29,12.35,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house010.xml,63.23,257.0097,147.2575,232.8661,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.571,0.006,0.0,53.019999999999996,137.83,7.1,84.83,76.24,13.56,59.06,0.0,0.0,2.4048,1.4228,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.1582,74.98519999999999,1.7482,0.0,0.0,40.2486,41.4804,3.3382,43.879999999999995,41.48,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.38,17439.37,19970.86,54.61,1.0,54.61,63.24,63.24,0.0,49.23,1.0,49.23,63.24,63.24,0.0,60.58,266.8559,146.4934,241.7874,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.1584,0.006,0.0,59.64,141.08,7.1,95.4,78.16,13.56,59.06,0.0,0.0,2.4050000000000002,1.4205999999999999,1.775,3.8463000000000003,0.7875000000000001,3.3898,24.843,74.53739999999999,1.748,0.0,0.0,39.743,41.2954,3.3382,43.32,41.3,6.14,42.97,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 -house011.xml,68.57,40.222,29.4229,42.9106,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.7284,0.0,0.0,8.92,6.49,7.88,14.28,4.48,8.89,16.77,0.16,0.0,0.8011,0.3803,0.9632,1.2821,0.2625,1.087,6.9487,2.4888,7.2764,0.0,0.0,11.1201,1.718,8.211,12.26,1.72,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,96.79,4269.58,4134.75,56.82,1.0,56.82,68.57,68.57,0.0,53.21,1.0,53.21,68.57,68.57,0.0,66.31,41.435,29.3104,44.2047,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.6828,0.0,0.0,10.35,6.37,7.88,16.57,4.48,8.89,16.77,0.07,0.0,0.8013,0.3727,0.9629,1.2821,0.2625,1.087,6.9043,2.4231,7.2739,0.0,0.0,11.0466,1.707,8.211,12.18,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house012.xml,49.98,70.802,37.0256,74.0781,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5216,0.4657,0.9972,0.4432,0.2625,1.087,10.4601,0.8975,9.8379,0.0,0.0,8.8881,0.506,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.62,10184.89,51.76,1.0,51.76,49.98,49.98,1.0,54.29,1.0,54.29,49.98,49.98,1.0,46.06,76.71,36.9646,80.2595,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.901,0.0,0.0,41.31,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.445,0.9969,0.4432,0.2625,1.087,10.455,0.8458,9.8348,0.0,0.0,8.8511,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house013.xml,59.01,44.14,27.468,46.5447,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.994,0.0,0.0,12.89,1.84,10.35,9.37,0.87,11.96,18.45,0.61,0.0,0.6099,0.5556,0.9616,0.4432,0.2625,1.1111,9.7222,0.383,2.9779,0.0,0.0,7.0661,0.181,3.4408,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.5,1719.38,2835.53,52.75,1.0,52.75,59.01,59.01,0.0,47.39,1.0,47.39,59.01,59.01,0.0,57.68,45.04,27.3945,47.4937,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.879,0.0,0.0,13.9,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5545,0.9616,0.4432,0.2625,1.1111,9.6587,0.3844,2.9814,0.0,0.0,6.9591,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 -house014.xml,55.26,184.213,100.4373,181.7437,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.361,0.0,0.0,89.78999999999999,28.339999999999996,15.5,66.25,15.399999999999999,17.19,47.42,3.17,0.0,1.2001,0.9657,1.0132,0.8864,0.525,1.1236,43.5969,12.916599999999999,3.4267,0.0,0.0,32.1693,7.018,3.7999,32.17,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9572.09,17328.52,48.4,1.0,48.4,55.26,55.26,0.0,46.03,1.0,46.03,55.26,55.26,0.0,50.67,199.236,99.5903,196.5653,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.182,0.0,0.0,105.25999999999999,27.91,15.5,77.56,15.98,17.19,47.41,3.17,0.0,1.2027999999999999,0.9165000000000001,1.0132,0.8864,0.525,1.1236,43.4568,12.2109,3.4267,0.0,0.0,32.0213,6.989000000000001,3.7999,32.019999999999996,6.99,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 -house015.xml,16.75,37.9,21.3538,43.0064,0.27921,1.1531,0.9615,1.0235,1.1347,0.3373,17.126,11.35,0.0,0.24,22.07,3.31,0.29,11.96,5.92,12.0,0.29,0.0,0.36,0.4844,0.6894,0.4432,0.2625,1.2346,0.1771,10.4719,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.57,879.17,3433.38,49.66,1.0,49.66,49.65,49.65,1.0,47.62,1.0,47.62,49.65,49.65,0.0,47.09,37.957,21.3504,43.0711,0.27921,1.1531,0.9615,1.0235,1.1347,0.95,17.126,0.8563,0.0,0.26,22.11,3.31,0.3,12.0,5.92,12.0,0.29,0.0,0.373,0.4839,0.6894,0.4432,0.2625,1.2346,0.1835,10.4621,0.9108,0.0,0.0,0.218,5.6761,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 -house016.xml,51.59,104.482,56.1698,108.8767,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.1962,0.0,0.0,0.68,72.21,5.6,0.59,38.96,11.56,25.13,0.87,0.0,0.5151,0.4865,0.8214,0.4432,0.2625,1.6949,0.3138,34.1955,2.9326,0.0,0.0,0.27,18.4522,6.0515,0.27,18.45,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.32,6035.98,8009.75,51.19,1.0,51.19,51.59,51.59,0.0,48.99,1.0,48.99,51.59,51.59,0.0,51.27,104.758,55.967,109.1643,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.1012,0.0,0.0,0.75,72.43,5.6,0.63,39.14,11.56,25.13,0.85,0.0,0.5267,0.4859,0.8212,0.4432,0.2625,1.6949,0.3137,33.9963,2.932,0.0,0.0,0.264,18.3682,6.0515,0.26,18.37,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 -house017.xml,69.46,58.603,42.6372,61.3835,0.20197,1.03,1.0,1.0169,1.0474,1.0,37.1908,0.0,0.0,21.1,5.62,10.94,33.63,3.77,18.88,20.27,0.67,0.0,0.8044,0.3917,0.9819,1.2821,0.2625,1.6949,22.0799,2.038,2.3734,0.0,0.0,35.1889,1.366,4.0967,38.69,1.37,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,180.25,8418.94,4459.13,52.6,1.0,52.6,69.46,69.46,0.0,47.68,1.0,47.68,69.46,69.46,0.0,65.14,61.844,42.1982,64.7783,0.20197,1.03,1.0,1.0169,1.0474,1.0,36.8786,0.0,0.0,24.58,5.42,10.94,39.16,3.68,18.9,20.26,0.64,0.0,0.8048,0.3867,0.981,1.2821,0.2625,1.6949,21.7091,1.9961,2.3711,0.0,0.0,34.5831,1.355,4.0967,38.02,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 -house018.xml,31.37,276.4361,144.2302,264.9736,0.22626,0.9122,1.0624,0.9891,0.9585,0.5763,114.9892,48.722,0.0,152.29000000000002,32.43,17.32,242.51,21.15,27.24,72.71,1.67,0.0,2.4159,1.2037,2.1572,3.8463000000000003,0.7875000000000001,3.3898,74.8717,14.3819,5.9486,0.0,0.0,119.2298,9.38,9.3478,130.71,9.379999999999999,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.62,24796.13,25966.26,51.26,1.0,51.26,54.43,54.43,0.0,47.29,1.0,47.29,54.43,54.43,0.0,45.69,297.5593,143.2268,285.2208,0.22626,0.9122,1.0624,0.9891,0.9585,0.9099,114.611,10.3285,0.0,174.45999999999998,31.94,17.32,277.71,21.57,27.24,72.7,1.12,0.0,2.4171,1.1632,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.50450000000001,13.749300000000002,5.946,0.0,0.0,118.58680000000001,9.289,9.3478,130.01,9.29,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 -house019.xml,64.85,163.996,103.8538,160.1461,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.7332,0.0,0.0,98.89,10.31,13.21,157.58,6.86,22.25,41.58,0.0,0.0,0.8046,0.3949,1.0241,1.2821,0.2625,1.7241,59.2473,3.1105,7.336,0.0,0.0,94.4085,2.068,12.3506,104.15,2.07,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,77.7,26304.04,34669.31,52.01,1.0,52.01,64.85,64.85,0.0,46.8,1.0,46.8,64.85,64.85,0.0,59.1,179.483,103.5929,175.2695,0.19184,0.9638,1.0132,1.0,0.9765,1.0,82.582,0.0,0.0,114.74,9.96,13.21,182.83,6.72,22.26,41.57,0.0,0.0,0.8046,0.389,1.0235,1.2821,0.2625,1.7241,59.0526,3.0451,7.3322,0.0,0.0,94.0976,2.055,12.3515,103.81,2.06,15.29,29.63,4.53,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 -house020.xml,39.66,160.5879,130.0452,157.16,0.25991,0.9409,1.0179,1.0219,0.9787,0.4793,108.1542,56.311,0.0,90.98,12.98,13.07,105.51,7.44,14.11,43.46,0.11,0.0,1.9513,2.0099,1.0069,2.1364,1.05,1.087,72.1614,8.861799999999999,12.112,0.0,0.0,87.005,5.101,13.075,93.86,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,114.03,13149.36,11783.24,56.22,1.0,56.22,82.75,82.75,0.0,52.04,1.0,52.04,82.75,82.75,0.0,71.77,172.9242,130.4402,169.233,0.25991,0.9409,1.0179,1.0219,0.9787,0.9311,108.1542,7.4468,0.0,103.65,12.64,13.07,119.64,7.3,14.11,43.45,0.11,0.0,1.9665,1.9931,1.0067,2.1364,1.05,1.087,72.6118,8.809,12.1094,0.0,0.0,87.005,5.101,13.075,93.86,5.1,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 -house021.xml,59.6,107.634,67.3106,112.9349,0.27058,1.0115,1.0373,1.0,1.0492,1.0,51.0088,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8046,0.3864,1.0544,1.2821,0.2625,1.6949,28.9019,5.9037,10.298,0.0,0.0,46.0549,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.63,23392.91,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.173,66.9525,120.8452,0.27058,1.0115,1.0373,1.0,1.0492,1.0,50.9066,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8096,5.6435,10.2934,0.0,0.0,45.9079,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 -house022.xml,54.48,80.923,45.8129,84.0938,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.4416,0.0,0.0,0.53,53.61,4.49,0.5,29.4,5.69,21.32,0.98,0.0,0.4744,0.4787,0.8757,0.4432,0.2625,1.1111,0.7192,25.3241,1.8305,0.0,0.0,0.672,13.8901,2.3225,0.67,13.89,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.01,4106.37,6372.07,50.94,1.0,50.94,54.48,54.48,0.0,48.61,1.0,48.61,54.48,54.48,0.0,54.1,81.208,45.6564,84.39,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.3596,0.0,0.0,0.6,53.83,4.49,0.54,29.57,5.69,21.32,0.98,0.0,0.4907,0.4779,0.8757,0.4432,0.2625,1.1111,0.7306,25.1561,1.8297,0.0,0.0,0.66,13.8191,2.3215,0.66,13.82,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 -house023.xml,72.62,87.922,64.22,88.4281,0.26056,1.0022,0.982,1.0219,1.0058,1.0,51.112,0.0,0.0,16.78,39.79,6.02,12.25,22.62,7.25,24.51,0.83,0.0,0.6071,0.4618,0.9221,0.4432,0.2625,1.1111,10.6809,25.7509,4.9491,0.0,0.0,7.7981,14.6411,5.9636,7.8,14.64,5.83,18.81,4.03,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.44,7661.61,10232.92,45.82,1.0,45.82,72.62,72.62,0.0,44.01,1.0,44.01,72.62,72.62,0.0,70.35,89.142,63.0748,89.6551,0.26056,1.0022,0.982,1.0219,1.0058,1.0,50.508,0.0,0.0,17.88,39.95,6.02,12.99,23.07,7.25,24.51,0.79,0.0,0.6101,0.4547,0.922,0.4432,0.2625,1.1111,10.4621,25.0623,4.9485,0.0,0.0,7.6011,14.4711,5.9636,7.6,14.47,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house024.xml,68.95,107.283,74.6732,108.3,0.271,0.991,1.0187,1.0,1.0095,1.0,55.976,0.0,0.0,22.26,45.03,8.98,35.66,26.9,16.05,30.27,0.76,0.0,0.8002,0.4395,0.9477,1.2821,0.2625,1.6949,15.272,24.3449,6.6384,0.0,0.0,24.4673,14.5431,11.8729,24.72,14.54,12.52,23.87,4.55,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.62,11945.05,12374.92,53.03,1.0,53.03,68.95,68.95,0.0,49.92,1.0,49.92,68.95,68.95,0.0,64.75,110.754,72.391,111.8039,0.271,0.991,1.0187,1.0,1.0095,1.0,54.8042,0.0,0.0,25.4,45.52,8.98,40.69,28.12,16.05,30.27,0.6,0.0,0.8003,0.425,0.9476,1.2821,0.2625,1.6949,14.7944,23.1636,6.638,0.0,0.0,23.7013,14.3081,11.8729,23.95,14.31,12.52,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house025.xml,9.55,195.002,105.217,186.8374,0.15772,0.9551,1.0109,0.9924,0.9581,0.1695,84.734,70.37,0.0,108.46,19.58,12.53,80.1,10.36,13.85,51.62,2.81,0.0,1.2004,0.9924,1.0048,0.8864,0.525,1.1111,53.443,9.984200000000001,2.4219,0.0,0.0,39.4664,5.2829999999999995,2.6782,39.47,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.69,2942.46,13536.25,51.07,1.0,51.07,56.31,56.31,0.0,46.06,1.0,46.06,56.31,56.31,0.0,49.64,209.107,104.8265,200.3518,0.15772,0.9551,1.0109,0.9924,0.9581,0.9488,84.251,4.3128,0.0,122.46,19.68,12.53,89.84,10.44,13.86,51.62,2.81,0.0,1.2084,0.9905999999999999,1.0045,0.8864,0.525,1.1111,53.3232,9.7141,2.4232,0.0,0.0,39.1194,5.149,2.6803,39.12,5.15,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 -house026.xml,65.17,72.569,49.4034,75.8062,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.8916,0.0,0.0,12.1,29.5,7.52,19.38,17.78,14.12,22.79,0.66,0.0,0.8003,0.4357,1.8052,1.2821,0.2625,3.3898,6.2202,16.6616,7.0676,0.0,0.0,9.9646,10.0401,13.272,10.99,10.04,14.26,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.76,8167.85,8521.12,47.29,1.0,47.29,65.17,65.17,0.0,44.51,1.0,44.51,65.17,65.17,0.0,62.95,74.058,48.698,77.3617,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.6504,0.0,0.0,13.44,29.7,7.52,21.53,18.3,14.12,22.78,0.62,0.0,0.8003,0.4261,1.8048,1.2821,0.2625,3.3898,6.0352,16.1772,7.0666,0.0,0.0,9.6681,9.9671,13.272,10.66,9.97,14.26,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 -house027.xml,66.92,87.977,61.0977,91.3034,0.30303,1.012,1.0,1.0255,1.0378,1.0,45.7166,0.0,0.0,16.19,37.74,7.52,25.92,22.48,14.43,25.76,0.78,0.0,0.8004,0.4409,0.8981,1.2821,0.2625,1.7241,10.6151,20.9711,6.0934,0.0,0.0,17.0026,12.4881,11.698,17.18,12.49,11.7,19.66,3.76,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,91.0,9657.9,10226.81,51.99,1.0,51.99,66.92,66.92,0.0,48.92,1.0,48.92,66.92,66.92,0.0,64.38,89.152,59.5664,92.5228,0.30303,1.012,1.0,1.0255,1.0378,1.0,44.813,0.0,0.0,17.27,37.9,7.52,27.66,22.92,14.43,25.76,0.71,0.0,0.8004,0.4341,0.8982,1.2821,0.2625,1.7241,10.1575,20.2578,6.0932,0.0,0.0,16.2693,12.2511,11.696,16.44,12.25,11.7,19.66,3.4,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 -house028.xml,66.4,114.591,77.51,116.729,0.28669,0.9799,1.0396,1.0,1.0187,1.0,62.28,0.0,0.0,23.2,48.32,10.4,16.76,28.12,11.65,31.53,1.14,0.0,0.6137,0.4512,0.9924,0.4432,0.2625,1.1111,14.0001,28.9566,8.0122,0.0,0.0,10.1121,16.8492,8.971,10.11,16.85,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.48,9381.87,13450.0,44.76,1.0,44.76,66.4,66.4,0.0,42.91,1.0,42.91,66.4,66.4,0.0,62.73,118.341,75.6177,120.5489,0.28669,0.9799,1.0396,1.0,1.0187,1.0,61.478,0.0,0.0,26.51,48.86,10.4,18.96,29.3,11.65,31.52,1.05,0.0,0.6196,0.4378,0.9924,0.4432,0.2625,1.1111,13.4729,27.6525,8.0122,0.0,0.0,9.6381,16.5831,8.971,9.64,16.58,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house029.xml,61.73,112.479,69.4336,112.4719,0.25554,0.9826,1.0176,1.0,0.9999,1.0,53.0292,0.0,0.0,22.84,47.42,8.98,36.599999999999994,28.72,16.06,32.24,1.0,0.0,1.6002,0.8658,1.8954,2.5642,0.525,3.3898,14.482,23.9114,3.7572,0.0,0.0,23.2055,14.4832,6.7198,23.45,14.489999999999998,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.84,11181.46,13026.79,49.5,1.0,49.5,61.73,61.73,0.0,46.36,1.0,46.36,61.73,61.73,0.0,58.25,116.331,67.7617,116.3237,0.25554,0.9826,1.0176,1.0,0.9999,1.0,52.4342,0.0,0.0,26.259999999999998,47.980000000000004,8.98,42.06,30.060000000000002,16.06,32.24,0.9,0.0,1.6003,0.8371,1.8952,2.5642,0.525,3.3898,13.9865,22.810200000000002,3.757,0.0,0.0,22.4099,14.290199999999999,6.7198,22.64,14.29,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 -house030.xml,60.16,135.55,81.7652,135.9022,0.29427,0.9635,1.0406,1.0,1.0026,1.0,61.6236,0.0,0.0,29.14,57.67999999999999,10.4,46.69,34.74,17.92,37.11,1.21,0.0,1.6004,0.869,1.9678,2.5642,0.525,3.3898,18.4645,31.954,2.6766,0.0,0.0,29.5835,19.2682,4.6108,29.900000000000002,19.27,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.81,13111.27,15603.6,50.33,1.0,50.33,60.16,60.16,0.0,46.99,1.0,46.99,60.16,60.16,0.0,56.55,140.245,79.5115,140.6094,0.29427,0.9635,1.0406,1.0,1.0026,1.0,60.8284,0.0,0.0,33.28,58.36,10.4,53.33,36.36,17.92,37.11,1.08,0.0,1.6004,0.8400000000000001,1.9676,2.5642,0.525,3.3898,17.8262,30.428,2.6764,0.0,0.0,28.5603,18.9812,4.6108,28.86,18.990000000000002,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 -house031.xml,55.71,208.0042,116.6366,209.3557,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,94.18,0.0,0.0,122.45000000000002,19.84,14.53,89.82,10.48,17.32,50.05,1.16,0.0,2.4168,1.9881,1.0352,1.7728,1.05,1.2346,60.229600000000005,13.917200000000001,3.1868,0.0,0.0,44.1804,7.352,3.8004,44.18,7.36,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8085.37,14528.41,49.52,1.0,49.52,55.71,55.71,0.0,44.8,1.0,44.8,55.71,55.71,0.0,51.8,222.9991,116.2575,224.448,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,93.735,0.0,0.0,137.38,19.88,14.53,100.2,10.53,17.33,50.04,1.16,0.0,2.4322999999999997,1.9832,1.035,1.7728,1.05,1.2346,60.158899999999996,13.6127,3.187,0.0,0.0,43.8784,7.208,3.8015,43.87,7.21,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 -house032.xml,70.85,125.937,90.8785,128.2678,0.26774,0.978,1.0185,1.0225,1.0185,1.0,66.924,0.0,0.0,26.45,56.43,8.98,42.34,33.53,16.33,33.12,0.96,0.0,1.6019999999999999,0.8782,0.9474,2.5642,0.525,1.7241,18.1956,33.9395,7.1814,0.0,0.0,29.130300000000002,20.1682,13.0697,29.43,20.17,13.07,25.94,5.63,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.48,15478.92,14407.84,54.66,1.0,54.66,70.85,70.85,0.0,51.33,1.0,51.33,70.85,70.85,0.0,67.3,127.967,87.71,130.3354,0.26774,0.978,1.0185,1.0225,1.0185,1.0,64.9404,0.0,0.0,28.35,56.7,8.98,45.39,34.3,16.33,33.12,0.82,0.0,1.6021,0.8627,0.9474,2.5642,0.525,1.7241,17.34,32.6025,7.1814,0.0,0.0,27.759700000000002,19.7232,13.0697,28.060000000000002,19.72,13.07,25.94,4.65,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house033.xml,66.99,151.325,98.2833,146.7133,0.22297,0.9548,1.0154,1.0,0.9695,1.0,81.1662,0.0,0.0,69.79,28.159999999999997,11.38,111.35,17.62,19.4,42.0,0.0,0.0,1.6073,0.8359,0.9947,2.5642,0.525,1.6949,52.329800000000006,11.2348,3.4067,0.0,0.0,83.49289999999999,7.022,5.8048,92.33,7.0200000000000005,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,95.48,22066.72,23838.05,52.59,1.0,52.59,66.99,66.99,0.0,49.37,1.0,49.37,66.99,66.99,0.0,61.83,162.837,97.6118,157.8745,0.22297,0.9548,1.0154,1.0,0.9695,1.0,80.9702,0.0,0.0,81.27,28.19,11.38,129.66,18.28,19.41,41.99,0.0,0.0,1.6072,0.8071,0.994,2.5642,0.525,1.6949,52.1422,10.7541,3.4044,0.0,0.0,83.1943,6.964,5.8048,92.0,6.970000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 -house034.xml,62.02,60.575,38.648,62.3109,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4906,0.0,0.0,19.58,4.47,9.97,31.34,3.08,18.48,24.53,2.03,0.0,0.8008,0.3809,0.9149,1.2821,0.2625,1.6949,9.3181,2.9089,4.2021,0.0,0.0,14.9184,2.005,7.7844,16.45,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.48,5830.03,3668.8,55.63,1.0,55.63,62.02,62.02,0.0,50.25,1.0,50.25,62.02,62.02,0.0,60.5,61.938,38.5452,63.713,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4334,0.0,0.0,21.05,4.36,9.97,33.7,3.03,18.48,24.53,2.03,0.0,0.8008,0.3775,0.9149,1.2821,0.2625,1.6949,9.2536,2.8717,4.2018,0.0,0.0,14.8141,1.997,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house035.xml,70.1,103.39,72.2063,102.9988,0.19292,0.9804,1.0,1.0162,0.9962,1.0,61.0104,0.0,0.0,52.42,6.54,11.06,83.53,4.69,12.38,32.3,1.06,0.0,0.8046,0.3663,0.9925,1.2821,0.2625,1.1111,39.63,2.9786,9.1447,0.0,0.0,63.1499,2.135,10.2376,68.46,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.22,18233.77,22816.59,55.9,1.0,55.9,70.1,70.1,0.0,49.5,1.0,49.5,70.1,70.1,0.0,64.67,110.263,71.034,109.8457,0.19292,0.9804,1.0,1.0162,0.9962,1.0,60.1978,0.0,0.0,59.63,6.31,11.06,95.02,4.61,12.39,32.3,0.97,0.0,0.8046,0.3595,0.9922,1.2821,0.2625,1.1111,38.5801,2.9081,9.1408,0.0,0.0,61.4766,2.124,10.2365,66.65,2.12,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house036.xml,68.19,114.018,76.2517,111.7543,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.9086,0.035,0.0,61.7,8.82,8.65,98.33,5.88,15.94,33.62,1.24,0.0,0.8044,0.3937,0.9197,1.2821,0.2625,1.6949,38.9049,4.8709,2.3779,0.0,0.0,62.0037,3.248,4.3819,68.17,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.37,18850.58,24231.95,55.47,1.0,55.47,68.23,68.23,0.0,49.86,1.0,49.86,68.23,68.23,0.0,63.28,121.884,75.6428,119.4641,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.49,0.035,0.0,69.81,8.6,8.65,111.26,5.79,15.96,33.61,1.21,0.0,0.8044,0.3902,0.9191,1.2821,0.2625,1.6949,38.4818,4.735,2.3761,0.0,0.0,61.3288,3.186,4.3819,67.43,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 -house037.xml,67.05,113.253,76.7498,114.4743,0.1936,0.9975,1.0134,1.0,1.0108,1.0,64.8148,0.0,0.0,65.19,6.7,13.21,103.96,4.84,14.55,27.32,0.84,0.0,0.8039,0.363,1.0094,1.2821,0.2625,1.1111,41.1264,3.9656,10.1998,0.0,0.0,65.587,2.868,11.2281,71.1,2.87,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.3,19282.66,24364.47,52.9,1.0,52.9,67.05,67.05,0.0,47.97,1.0,47.97,67.05,67.05,0.0,60.88,122.591,75.4441,123.913,0.1936,0.9975,1.0134,1.0,1.0108,1.0,63.915,0.0,0.0,74.86,6.48,13.21,119.28,4.81,14.55,27.32,0.73,0.0,0.8046,0.3535,1.0091,1.2821,0.2625,1.1111,40.0368,3.8073,10.197,0.0,0.0,63.7975,2.828,11.2281,69.16,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 -house038.xml,65.17,130.326,82.5957,126.741,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.9446,0.0,0.0,39.61,39.93,9.92,35.16,22.42,17.57,39.59,1.29,0.0,1.8869,0.935,0.9565,2.1685,0.525,1.6949,27.5924,21.4916,5.0656,0.0,0.0,24.7586,12.0671,8.9761,24.85,12.07,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14043.9,19638.63,47.37,1.0,47.37,65.17,65.17,0.0,45.32,1.0,45.32,65.17,65.17,0.0,61.95,133.898,80.6675,130.2147,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.0144,0.0,0.0,43.43,39.82,9.92,38.16,22.94,17.57,39.59,1.14,0.0,1.8883999999999999,0.911,0.9564,2.1685,0.525,1.6949,26.6448,20.6117,5.065,0.0,0.0,23.999000000000002,11.8781,8.9761,24.09,11.879999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house039.xml,59.43,157.797,153.828,157.3985,0.09392,0.9785,1.0194,1.0,0.9975,0.6081,113.0802,44.319,0.0,73.88,20.25,16.5,117.83,13.260000000000002,29.71,47.17,0.0,0.0,2.4120999999999997,1.1898,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.6776,10.0485,15.1348,0.0,0.0,147.8177,6.566,27.2586,151.58,6.57,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,238.19,26536.13,11168.79,54.28,1.0,54.28,97.73,97.73,0.0,49.75,1.0,49.75,97.73,97.73,0.0,80.63,172.123,153.2764,171.6884,0.09392,0.9785,1.0194,1.0,0.9975,0.9032,112.6956,10.9134,0.0,88.2,20.25,16.5,140.62,13.280000000000001,29.71,47.16,0.0,0.0,2.4129,1.1886,1.0476,3.8463000000000003,0.7875000000000001,1.8868,92.3283,9.8466,15.1354,0.0,0.0,147.2074,6.4430000000000005,27.2597,150.95,6.4399999999999995,24.91,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 -house040.xml,63.72,195.655,119.2785,187.2007,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.541,0.0,0.0,125.28,12.48,11.06,199.63,8.0,19.45,44.92,1.91,0.0,0.8046,0.4097,0.9804,1.2821,0.2625,1.7241,63.6889,14.1029,7.1827,0.0,0.0,101.487,9.0381,12.6309,112.22,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.9,29248.27,40814.69,52.87,1.0,52.87,63.72,63.72,0.0,49.75,1.0,49.75,63.72,63.72,0.0,58.88,211.199,118.9757,202.0731,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.2718,0.0,0.0,141.16,12.15,11.06,224.94,7.73,19.46,44.92,1.91,0.0,0.8046,0.4124,0.9799,1.2821,0.2625,1.7241,63.4695,14.0237,7.1795,0.0,0.0,101.1361,8.9281,12.6317,111.83,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house041.xml,79.71,72.748,59.3561,74.4693,0.13115,1.0035,1.009,1.011,1.0237,1.0,48.279,0.0,0.0,25.93,8.19,12.53,41.34,5.19,20.93,26.11,0.0,0.0,0.804,0.4142,1.0143,1.2821,0.2625,1.6949,17.7789,6.1652,11.573,0.0,0.0,28.3498,3.908,19.3379,30.56,3.91,20.39,23.35,0.49,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.2,9768.62,5355.13,52.96,1.0,52.96,79.71,79.71,0.0,46.87,1.0,46.87,79.71,79.71,0.0,73.44,75.388,56.6775,77.1718,0.13115,1.0035,1.009,1.011,1.0237,1.0,46.271,0.0,0.0,28.65,8.11,12.53,45.67,5.16,20.94,26.11,0.0,0.0,0.8041,0.4129,1.014,1.2821,0.2625,1.6949,15.6297,6.1337,11.5641,0.0,0.0,24.9185,3.9,19.3303,26.86,3.9,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house042.xml,90.13,114.914,103.325,114.6348,0.21954,0.9827,1.0151,1.0,0.9976,1.0,77.6816,0.0,0.0,50.3,21.01,11.38,80.29,12.91,19.73,32.22,0.0,0.0,0.8032,0.4272,0.9946,1.2821,0.2625,1.7241,51.6697,16.2331,8.3472,0.0,0.0,82.4696,9.9751,14.4703,83.34,9.98,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,117.34,21272.03,18172.07,50.09,1.0,50.09,90.13,90.13,0.0,47.02,1.0,47.02,90.13,90.13,0.0,83.77,122.653,102.5024,122.355,0.21954,0.9827,1.0151,1.0,0.9976,1.0,77.4952,0.0,0.0,58.05,21.01,11.38,92.65,13.35,19.75,32.22,0.0,0.0,0.8032,0.4133,0.9939,1.2821,0.2625,1.7241,51.488,15.5992,8.3412,0.0,0.0,82.1816,9.9101,14.4693,83.04,9.91,15.56,27.07,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house043.xml,-8.05,52.033,21.9032,53.8574,0.30156,1.0351,1.0,1.0,1.0351,-0.1978,20.645,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5016,0.9879,0.4432,0.2625,1.1111,1.351,2.5641,2.3731,0.0,0.0,1.077,1.342,2.669,1.08,1.34,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.59,24.37,4017.42,53.47,1.0,53.47,40.67,40.67,1.0,47.89,1.0,47.89,40.67,40.67,1.0,35.77,56.143,21.881,58.1115,0.30156,1.0351,1.0,1.0,1.0351,0.95,20.615,1.0308,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4991,0.9875,0.4432,0.2625,1.1111,1.3791,2.515,2.373,0.0,0.0,1.067,1.323,2.67,1.07,1.32,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 -house044.xml,69.13,42.879,31.2493,45.2039,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.749,0.0,0.0,19.12,3.36,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3155,0.9207,1.2821,0.2625,1.1111,14.569,2.2243,4.5241,0.0,0.0,23.2658,1.851,5.4597,25.58,1.85,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.25,7639.26,9380.79,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.92,44.162,31.1579,46.5565,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.707,0.0,0.0,20.48,3.3,6.35,32.67,2.8,7.66,13.7,0.34,0.0,0.8035,0.3089,0.9205,1.2821,0.2625,1.1111,14.5403,2.1637,4.5229,0.0,0.0,23.2013,1.839,5.4597,25.51,1.84,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -house045.xml,88.89,180.375,153.9019,173.1434,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.836,0.0,0.0,75.19,42.92,12.22,56.33,24.57,21.3,50.05,0.0,0.0,0.5917,0.4586,1.9438,0.4432,0.2625,3.3898,64.6317,31.2536,13.7026,0.0,0.0,48.4194,17.8922,23.895,48.42,17.89,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,100.07,25512.51,26559.57,49.7,1.0,49.7,88.89,88.89,0.0,45.77,1.0,45.77,88.89,88.89,0.0,82.94,190.597,151.7399,182.9555,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.267,0.0,0.0,85.95,42.39,12.22,64.26,25.48,21.3,50.05,0.0,0.0,0.5929,0.4368,1.9438,0.4432,0.2625,3.3898,64.1922,29.5328,13.702,0.0,0.0,47.9914,17.7512,23.895,47.99,17.75,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 -house046.xml,-4.25,132.782,49.2257,132.1265,0.27804,0.9896,1.0192,0.9866,0.9951,-0.1141,46.135,51.401,0.0,75.51,12.01,12.93,62.76,6.72,13.96,29.19,3.15,0.0,0.5333,0.469,1.0064,0.4432,0.2625,1.087,16.3322,2.5297,9.7587,0.0,0.0,13.5751,1.416,10.54,13.58,1.42,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.86,2778.52,28330.5,50.22,1.0,50.22,37.26,37.26,1.0,44.19,1.0,44.19,37.26,37.26,1.0,32.43,144.39,49.0445,143.6772,0.27804,0.9896,1.0192,0.9866,0.9951,0.95,46.063,2.3032,0.0,87.47,11.66,12.93,72.55,6.85,13.97,29.18,3.15,0.0,0.5344,0.4467,1.0062,0.4432,0.2625,1.087,16.2904,2.3924,9.7566,0.0,0.0,13.5111,1.406,10.54,13.51,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 -house047.xml,63.75,84.038,53.8066,84.3982,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.9912,0.0,0.0,32.64,9.12,10.49,51.98,5.61,11.8,30.7,1.09,0.0,0.805,0.4271,0.9872,1.2821,0.2625,1.1111,26.1515,3.8618,2.4723,0.0,0.0,41.6517,2.374,2.7825,45.67,2.37,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.66,10571.8,6168.12,58.46,1.0,58.46,63.75,63.75,0.0,53.21,1.0,53.21,63.75,63.75,0.0,58.65,90.492,53.3,90.8798,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.6346,0.0,0.0,39.19,9.07,10.49,62.42,5.6,11.81,30.69,1.05,0.0,0.805,0.4253,0.9868,1.2821,0.2625,1.1111,25.7494,3.7732,2.4703,0.0,0.0,41.0087,2.329,2.7815,44.96,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 -house048.xml,66.1,98.439,68.8156,104.1039,0.33383,1.0286,1.0,1.0282,1.0575,1.0,46.4212,0.0,0.0,1.98,65.85,5.6,3.17,37.71,10.95,24.41,0.6,0.0,0.8005,0.4584,0.8822,1.2821,0.2625,1.7241,0.4993,44.0594,3.7459,0.0,0.0,0.7996,25.2322,7.3207,0.81,25.23,7.59,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.95,6731.72,7674.01,50.82,1.0,50.82,66.1,66.1,0.0,46.26,1.0,46.26,66.1,66.1,0.0,65.22,98.652,68.0476,104.3292,0.33383,1.0286,1.0,1.0282,1.0575,1.0,45.9566,0.0,0.0,2.09,66.05,5.6,3.35,37.88,10.95,24.4,0.51,0.0,0.8003,0.4578,0.8822,1.2821,0.2625,1.7241,0.4374,43.4743,3.7459,0.0,0.0,0.7006,24.9312,7.3207,0.71,24.93,7.59,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house049.xml,52.33,43.64,24.0148,45.8873,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.59,16.62,17.28,1.37,0.0,0.606,0.5153,0.813,0.4432,0.2625,1.6949,4.7937,1.1012,2.9789,0.0,0.0,3.506,0.561,6.2103,3.51,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.66,2584.2,2740.94,49.11,1.0,49.11,52.33,52.33,0.0,44.16,1.0,44.16,52.33,52.33,0.0,51.24,44.549,24.0039,46.8431,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6418,0.0,0.0,14.88,3.06,7.97,10.81,1.56,16.62,17.27,1.37,0.0,0.6102,0.5128,0.813,0.4432,0.2625,1.6949,4.7921,1.0919,2.9789,0.0,0.0,3.481,0.559,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 -house050.xml,86.58,66.55,58.5442,67.6206,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.417,0.0,0.0,21.4,4.94,11.91,34.11,3.22,21.36,27.26,1.05,0.0,0.8042,0.4021,0.9617,1.2821,0.2625,1.7241,9.1034,4.2212,8.3976,0.0,0.0,14.5118,2.756,15.0553,15.91,2.76,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.01,7502.99,4148.1,55.68,1.0,55.68,86.58,86.58,0.0,50.42,1.0,50.42,86.58,86.58,0.0,81.92,69.977,58.2504,71.1028,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.2464,0.0,0.0,25.08,4.69,11.91,39.98,3.13,21.36,27.25,1.04,0.0,0.8043,0.3944,0.9616,1.2821,0.2625,1.7241,9.0189,4.0857,8.3968,0.0,0.0,14.3768,2.72,15.0553,15.76,2.72,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house051.xml,55.17,45.5,25.7069,46.5952,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.4128,0.0,0.0,11.33,2.81,9.97,8.56,1.44,18.47,20.61,0.77,0.0,0.587,0.5114,0.9154,0.4432,0.2625,1.6949,5.6285,0.452,2.0155,0.0,0.0,4.25,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.43,2727.41,2913.1,51.66,1.0,51.66,55.17,55.17,0.0,46.31,1.0,46.31,55.17,55.17,0.0,52.64,47.809,25.7734,48.9597,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.3748,0.0,0.0,13.85,2.62,9.97,10.23,1.36,18.47,20.6,0.77,0.0,0.6,0.5044,0.9153,0.4432,0.2625,1.6949,5.7061,0.4419,2.0153,0.0,0.0,4.215,0.23,3.7319,4.22,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 -house052.xml,58.76,44.427,27.6296,47.023,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.766,0.0,0.0,13.19,1.69,10.35,9.57,0.8,11.96,18.54,0.66,0.0,0.6108,0.5529,0.9619,0.4432,0.2625,1.1111,6.0857,0.2359,7.148,0.0,0.0,4.416,0.112,8.2565,4.42,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.36,1795.05,2856.87,53.23,1.0,53.23,58.76,58.76,0.0,48.05,1.0,48.05,58.76,58.76,0.0,57.1,45.752,27.6511,48.4255,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.739,0.0,0.0,14.65,1.57,10.35,10.53,0.75,11.96,18.53,0.65,0.0,0.6168,0.5503,0.9619,0.4432,0.2625,1.1111,6.1093,0.2348,7.148,0.0,0.0,4.39,0.112,8.2565,4.39,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 -house053.xml,70.86,66.051,47.6149,67.1997,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.696,0.0,0.0,21.53,4.78,11.91,34.33,3.15,21.31,26.94,0.88,0.0,0.8043,0.3986,0.9637,1.2821,0.2625,1.7241,13.1925,3.0399,8.0595,0.0,0.0,21.03,2.002,14.4194,22.67,2.0,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.76,7447.09,4117.75,55.54,1.0,55.54,70.86,70.86,0.0,50.31,1.0,50.31,70.86,70.86,0.0,66.53,69.584,47.1001,70.7941,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.357,0.0,0.0,25.37,4.54,11.91,40.44,3.05,21.32,26.93,0.83,0.0,0.8043,0.3907,0.9635,1.2821,0.2625,1.7241,12.7723,3.0058,8.058,0.0,0.0,20.3593,2.02,14.4194,21.95,2.02,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house054.xml,62.23,170.101,108.2463,173.9422,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.56,0.0,0.0,3.6599999999999997,120.1,7.75,5.85,69.14,13.55,37.12,1.49,0.0,1.601,0.9109,0.9688,2.5642,0.525,1.6949,1.345,75.3719,1.8344,0.0,0.0,2.1544,43.3934,3.2093,2.18,43.39,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.69,9803.9,13373.16,49.88,1.0,49.88,62.23,62.23,0.0,45.24,1.0,45.24,62.23,62.23,0.0,61.53,170.836,107.4967,174.6938,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.1664,0.0,0.0,3.92,120.63,7.75,6.27,69.57,13.55,37.11,1.42,0.0,1.6008,0.9095,0.9687,2.5642,0.525,1.6949,1.2571,74.7723,1.8343,0.0,0.0,2.0138000000000003,43.1194,3.2093,2.03,43.120000000000005,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 -house055.xml,63.54,95.877,64.5746,101.6243,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.7966,0.0,0.0,2.0,65.19,5.6,3.2,37.26,10.68,22.28,0.81,0.0,0.8006,0.4593,0.8893,1.2821,0.2625,1.6949,0.9455,42.3274,1.6847,0.0,0.0,1.5141,24.1942,3.2109,1.53,24.19,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.22,6168.65,7635.96,48.95,1.0,48.95,63.54,63.54,0.0,44.51,1.0,44.51,63.54,63.54,0.0,63.07,96.086,64.239,101.8459,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.6132,0.0,0.0,2.07,65.34,5.6,3.32,37.38,10.68,22.28,0.8,0.0,0.8006,0.459,0.8893,1.2821,0.2625,1.6949,0.9072,42.0471,1.6847,0.0,0.0,1.4528,24.0522,3.2109,1.47,24.05,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 -house056.xml,62.74,73.451,46.5835,74.2453,0.20078,0.997,1.0139,1.0,1.0108,1.0,41.0018,0.0,0.0,26.09,5.17,11.91,41.75,3.45,20.93,29.21,1.07,0.0,1.6101,0.3937,0.9647,2.5642,0.2625,1.6949,13.515,2.8852,3.3663,0.0,0.0,21.6175,1.924,5.9145,23.28,1.92,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.24,7316.55,4461.54,54.97,1.0,54.97,62.74,62.74,0.0,49.71,1.0,49.71,62.74,62.74,0.0,58.69,77.836,46.1739,78.6778,0.20078,0.997,1.0139,1.0,1.0108,1.0,40.736,0.0,0.0,30.78,4.91,11.91,49.24,3.34,20.93,29.2,1.04,0.0,1.6084,0.3859,0.9646,2.5642,0.2625,1.6949,13.2514,2.8104,3.366,0.0,0.0,21.196,1.912,5.9145,22.84,1.91,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 -house057.xml,82.32,57.403,47.9296,58.2245,0.16061,1.0143,1.0,1.0,1.0143,1.0,42.4424,0.0,0.0,18.8,4.14,9.97,29.96,2.82,11.53,23.76,0.74,0.0,0.8042,0.3853,0.9611,1.2821,0.2625,1.1111,9.7918,4.3049,2.8559,0.0,0.0,15.6095,2.933,3.3018,17.21,2.93,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.85,5208.16,3594.34,57.91,1.0,57.91,82.32,82.32,0.0,53.13,1.0,53.13,82.32,82.32,0.0,76.79,60.304,46.9698,61.167,0.16061,1.0143,1.0,1.0,1.0143,1.0,41.6224,0.0,0.0,21.95,3.94,9.97,34.99,2.74,11.53,23.75,0.69,0.0,0.8043,0.3775,0.961,1.2821,0.2625,1.1111,9.69,4.1321,2.8557,0.0,0.0,15.4462,2.874,3.3018,17.03,2.87,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 -house058.xml,64.63,122.033,79.8492,123.5423,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.7712,0.0,0.0,3.5,82.44,6.68,5.61,47.6,12.5,28.44,0.97,0.0,0.8003,0.4547,0.9222,1.2821,0.2625,1.7241,1.2485,50.6007,5.616,0.0,0.0,2.0,29.2143,10.5,2.02,29.21,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.92,7856.19,9710.37,50.78,1.0,50.78,64.63,64.63,0.0,46.17,1.0,46.17,64.63,64.63,0.0,63.18,123.542,79.0149,125.0699,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.3588,0.0,0.0,4.05,83.49,6.68,6.48,48.39,12.5,28.43,0.89,0.0,0.8004,0.453,0.9222,1.2821,0.2625,1.7241,1.1331,49.9619,5.616,0.0,0.0,1.815,28.9583,10.5,1.83,28.96,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house059.xml,55.26,35.102,20.8276,37.6918,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.6476,0.0,0.0,7.78,2.93,7.97,6.04,1.47,15.04,16.0,0.42,0.0,0.5709,0.5224,0.8987,0.4432,0.2625,1.6949,3.7326,0.8855,2.0045,0.0,0.0,2.898,0.445,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.32,2428.55,2168.1,50.61,1.0,50.61,55.26,55.26,0.0,46.25,1.0,46.25,55.26,55.26,0.0,54.29,35.695,20.8087,38.3286,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.5936,0.0,0.0,8.47,2.85,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5795,0.5203,0.8981,0.4432,0.2625,1.6949,3.7246,0.88,2.0031,0.0,0.0,2.849,0.444,3.7805,2.85,0.44,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 -house060.xml,71.58,113.139,81.8531,114.3532,0.23098,0.9795,1.0319,1.0,1.0107,1.0,60.4044,0.0,0.0,32.1,33.54,11.5,51.34,20.07,19.93,36.01,0.0,0.0,1.6029,0.8775999999999999,0.9947,2.5642,0.525,1.7241,26.67,19.8691,7.9621,0.0,0.0,42.6643,11.8882,13.8006,43.12,11.89,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,89.79,15743.85,17348.05,50.12,1.0,50.12,71.58,71.58,0.0,46.41,1.0,46.41,71.58,71.58,0.0,69.26,115.89,81.1319,117.1337,0.23098,0.9795,1.0319,1.0,1.0107,1.0,60.242,0.0,0.0,34.98,33.42,11.5,55.93,20.490000000000002,19.93,36.01,0.0,0.0,1.6036,0.8563000000000001,0.9946,2.5642,0.525,1.7241,26.5333,19.2853,7.9613,0.0,0.0,42.4248,11.8262,13.8006,42.88,11.83,13.8,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house061.xml,69.96,27.219,20.2833,28.9926,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.892,0.0,0.0,4.95,3.02,5.78,7.89,1.75,6.8,13.47,0.0,0.0,0.8039,0.4535,0.9248,1.2821,0.2625,1.087,6.4358,0.7618,3.9607,0.0,0.0,10.2631,0.441,4.655,11.25,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,102.17,3205.25,2945.21,63.31,1.0,63.31,69.96,69.96,0.0,50.97,1.0,50.97,69.96,69.96,0.0,67.33,28.185,20.2141,30.0216,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.8572,0.0,0.0,5.98,2.96,5.78,9.53,1.76,6.8,13.46,0.0,0.0,0.8041,0.4432,0.9243,1.2821,0.2625,1.087,6.4007,0.731,3.9583,0.0,0.0,10.2047,0.433,4.655,11.19,0.43,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 -house062.xml,76.1,38.169,30.9221,40.6311,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,26.463,0.0,0.0,9.63,8.95,5.18,7.42,5.09,6.18,14.41,0.0,0.0,0.5754,0.4612,0.911,0.4432,0.2625,1.087,11.0946,6.2222,3.9843,0.0,0.0,8.5461,3.542,4.754,8.55,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,76.7,4698.5,5754.36,49.37,1.0,49.37,76.1,76.1,0.0,45.88,1.0,45.88,76.1,76.1,0.0,75.49,38.332,30.8025,40.8046,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,26.389,0.0,0.0,9.81,8.93,5.18,7.55,5.11,6.18,14.41,0.0,0.0,0.5764,0.4587,0.911,0.4432,0.2625,1.087,11.0422,6.155,3.9843,0.0,0.0,8.4921,3.523,4.754,8.49,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house063.xml,78.21,89.576,70.446,90.0776,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,52.3322,0.0,0.0,16.56,40.16,6.02,26.53,23.55,12.48,26.01,0.83,0.0,0.8005,0.4476,0.8309,1.2821,0.2625,1.7241,14.0549,27.0927,4.2484,0.0,0.0,22.5098,15.8911,8.8161,22.75,15.89,9.48,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.36,10936.57,10322.7,49.31,1.0,49.31,78.21,78.21,0.0,46.44,1.0,46.44,78.21,78.21,0.0,75.62,90.788,69.04,91.2964,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,51.6182,0.0,0.0,17.66,40.32,6.02,28.28,24.02,12.48,26.01,0.79,0.0,0.8005,0.4407,0.8309,1.2821,0.2625,1.7241,13.636,26.3466,4.2484,0.0,0.0,21.8378,15.6951,8.8161,22.07,15.7,9.48,20.83,3.98,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house064.xml,71.0,74.721,55.1825,77.718,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,40.452,0.0,0.0,14.51,32.27,6.02,23.23,18.98,12.18,21.4,0.53,0.0,0.8005,0.4463,0.8368,1.2821,0.2625,1.6949,11.1149,20.9511,3.9385,0.0,0.0,17.8002,12.3251,7.9772,17.99,12.33,8.41,16.8,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,97.04,8655.28,8575.62,53.92,1.0,53.92,71.0,71.0,0.0,50.7,1.0,50.7,71.0,71.0,0.0,68.17,75.723,53.6893,78.7602,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,39.5872,0.0,0.0,15.45,32.39,6.02,24.74,19.36,12.18,21.4,0.47,0.0,0.8006,0.4392,0.8368,1.2821,0.2625,1.6949,10.6417,20.292,3.9385,0.0,0.0,17.0422,12.1301,7.9772,17.22,12.13,8.41,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house065.xml,76.48,97.776,77.4164,101.2294,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,58.0834,0.0,0.0,16.6,41.88,8.98,26.59,25.11,16.32,29.28,1.05,0.0,0.8003,0.4378,0.9482,1.2821,0.2625,1.7241,15.0661,26.9895,6.2818,0.0,0.0,24.1347,16.1831,11.4228,24.39,16.18,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.16,12217.0,11439.17,47.97,1.0,47.97,76.48,76.48,0.0,45.18,1.0,45.18,76.48,76.48,0.0,74.25,99.082,76.1676,102.5815,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,57.4636,0.0,0.0,17.77,42.06,8.98,28.46,25.58,16.32,29.27,1.01,0.0,0.8003,0.4316,0.9481,1.2821,0.2625,1.7241,14.6809,26.3173,6.2814,0.0,0.0,23.5172,16.0071,11.4228,23.76,16.01,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 -house066.xml,74.11,73.085,56.7838,76.6221,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.395,0.0,0.0,12.04,30.82,7.52,8.89,17.9,8.75,21.92,0.79,0.0,0.6005,0.452,0.9549,0.4432,0.2625,1.1111,8.3194,21.4489,5.6426,0.0,0.0,6.1411,12.4591,6.5657,6.14,12.46,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.44,6927.25,8758.92,43.98,1.0,43.98,74.11,74.11,0.0,42.25,1.0,42.25,74.11,74.11,0.0,72.57,73.836,56.1727,77.4094,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.106,0.0,0.0,12.71,30.92,7.52,9.36,18.15,8.75,21.91,0.78,0.0,0.602,0.4471,0.9549,0.4432,0.2625,1.1111,8.1939,21.0402,5.6426,0.0,0.0,6.0331,12.3541,6.5657,6.03,12.35,6.42,17.79,3.5,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house067.xml,60.43,86.338,54.0732,89.4753,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.4864,0.0,0.0,15.35,36.88,7.52,24.59,21.97,14.12,25.79,0.8,0.0,0.8004,0.4406,0.9026,1.2821,0.2625,1.6949,9.8977,21.0041,2.9774,0.0,0.0,15.8546,12.5151,5.5908,16.02,12.51,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.83,8502.51,10026.11,48.76,1.0,48.76,60.43,60.43,0.0,45.9,1.0,45.9,60.43,60.43,0.0,58.44,87.707,53.1193,90.894,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.1018,0.0,0.0,16.59,37.06,7.52,26.57,22.48,14.12,25.79,0.75,0.0,0.8004,0.4329,0.9026,1.2821,0.2625,1.6949,9.5958,20.389,2.9774,0.0,0.0,15.3707,12.3661,5.5908,15.53,12.37,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house068.xml,74.6,117.671,85.6903,114.8645,0.2515,0.9761,1.0,1.0,0.9761,1.0,65.0198,0.0,0.0,24.84,51.480000000000004,7.52,39.8,30.69,14.44,32.85,0.98,0.0,1.6014,0.873,0.8975,2.5642,0.525,1.7241,17.9578,29.072400000000002,5.285,0.0,0.0,28.761200000000002,17.3291,10.1524,29.07,17.33,10.92,26.89,6.49,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.34,13540.45,13553.77,50.42,1.0,50.42,74.6,74.6,0.0,47.23,1.0,47.23,74.6,74.6,0.0,69.15,121.774,82.1958,118.8697,0.2515,0.9761,1.0,1.0,0.9761,1.0,63.1016,0.0,0.0,28.47,52.08,7.52,45.6,32.18,14.44,32.84,0.86,0.0,1.6014,0.8424,0.8975,2.5642,0.525,1.7241,17.0937,27.3771,5.285,0.0,0.0,27.377699999999997,16.9131,10.1524,27.67,16.91,10.92,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 -house069.xml,73.15,109.743,79.4819,108.6557,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.3358,0.0,0.0,26.08,46.5,7.52,41.79,27.42,14.18,29.32,0.33,0.0,0.8002,0.4452,0.8987,1.2821,0.2625,1.6949,19.325,28.1385,5.2964,0.0,0.0,30.9601,16.5921,9.9891,31.29,16.59,10.53,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.81,12697.63,12474.48,56.16,1.0,56.16,73.15,73.15,0.0,52.94,1.0,52.94,73.15,73.15,0.0,69.43,113.77,78.2064,112.6428,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.2014,0.0,0.0,29.71,47.08,7.52,47.6,28.85,14.18,29.31,0.15,0.0,0.8004,0.4284,0.8986,1.2821,0.2625,1.6949,19.196,26.9803,5.2961,0.0,0.0,30.7493,16.5331,9.9891,31.07,16.53,10.53,22.98,3.76,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house070.xml,47.28,181.182,81.4356,172.245,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.507,0.0,0.0,88.71,25.0,11.77,65.77,13.99,13.08,53.58,2.13,0.0,0.5978,0.4692,0.9994,0.4432,0.2625,1.1111,31.5376,5.662,8.244,0.0,0.0,23.3822,3.168,9.1652,23.38,3.17,8.97,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8020.17,17263.0,52.1,1.0,52.1,47.28,47.28,1.0,46.1,1.0,46.1,47.28,47.28,0.0,43.16,195.781,80.3251,186.1239,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.008,0.0,0.0,103.84,24.6,11.77,77.31,14.54,13.09,53.57,2.01,0.0,0.5953,0.4441,0.9992,0.4432,0.2625,1.1111,30.8395,5.2813,8.2394,0.0,0.0,22.9612,3.122,9.1622,22.96,3.12,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house071.xml,75.65,58.701,46.6908,61.7229,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.3238,0.0,0.0,20.51,8.57,9.85,16.3,4.86,11.46,19.19,0.58,0.0,1.4445999999999999,0.4631,0.9555,1.7253,0.2625,1.1111,22.8696,3.7803,7.0929,0.0,0.0,18.207199999999997,2.143,8.2483,18.259999999999998,2.14,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.97,4783.29,5910.04,51.52,1.0,51.52,75.65,75.65,0.0,53.48,1.0,53.48,75.65,75.65,0.0,72.07,61.226,46.3978,64.3779,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.221,0.0,0.0,23.21,8.45,9.85,18.48,4.94,11.46,19.19,0.53,0.0,1.4311,0.4489,0.9555,1.7253,0.2625,1.1111,22.7347,3.6232,7.0929,0.0,0.0,18.1254,2.119,8.2483,18.189999999999998,2.12,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 -house072.xml,61.28,132.367,79.7462,130.1284,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.5272,0.0,0.0,88.42,1.24,10.45,138.8,1.74,18.75,31.12,1.14,0.0,1.3276,0.1862,0.9613,1.7253,0.2625,1.7241,52.3644,0.6703,5.2854,0.0,0.0,80.34479999999999,0.945,9.4796,88.25,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.1,16207.71,10561.56,55.88,1.0,55.88,61.28,61.28,0.0,49.0,1.0,49.0,61.28,61.28,0.0,55.26,146.252,79.4581,143.7786,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.228,0.0,0.0,102.53,1.04,10.45,160.82,1.66,18.77,31.11,1.11,0.0,1.3486,0.165,0.96,1.7253,0.2625,1.7241,52.1737,0.594,5.2784,0.0,0.0,79.75760000000001,0.945,9.4796,87.61,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 -house073.xml,32.76,221.323,114.4599,210.9093,0.16694,0.9421,1.0115,1.0,0.9529,0.6036,90.9024,36.031,0.0,118.91,26.9,11.77,97.71000000000001,15.030000000000001,26.81,61.14,2.62,0.0,1.9849,0.9402,0.9976,2.1364,0.525,2.2727,28.4137,23.8029,14.8433,0.0,0.0,25.0244,13.2961,33.8161,25.830000000000002,13.3,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.84,13742.5,20949.04,50.6,1.0,50.6,54.27,54.27,0.0,47.79,1.0,47.79,54.27,54.27,0.0,46.39,237.62,112.4085,226.4395,0.16694,0.9421,1.0115,1.0,0.9529,0.9345,90.5656,5.9311,0.0,135.55,26.55,11.77,112.08,15.71,26.84,61.13,2.62,0.0,1.9765,0.8875,0.9965,2.1364,0.525,2.2727,28.0073,22.1734,14.8277,0.0,0.0,24.833,13.1221,33.8172,25.64,13.129999999999999,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house074.xml,72.28,78.192,59.508,82.3281,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.411,0.0,0.0,14.56,33.17,7.52,10.62,19.3,8.67,22.21,0.73,0.0,0.6076,0.4512,0.9528,0.4432,0.2625,1.0989,8.9463,22.6822,5.7265,0.0,0.0,6.5261,13.1991,6.6048,6.53,13.2,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.0,7256.84,9314.44,43.82,1.0,43.82,72.28,72.28,0.0,42.15,1.0,42.15,72.28,72.28,0.0,70.42,79.438,58.901,83.6401,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.232,0.0,0.0,15.69,33.31,7.52,11.35,19.75,8.67,22.21,0.71,0.0,0.6127,0.4428,0.9528,0.4432,0.2625,1.0989,8.9279,22.1186,5.7265,0.0,0.0,6.4591,13.1131,6.6048,6.46,13.11,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -house075.xml,67.25,82.168,57.3082,85.2209,0.21669,1.0219,1.015,1.0,1.0372,1.0,45.5176,0.0,0.0,32.56,15.52,11.38,52.01,9.82,19.4,22.71,0.0,0.0,0.8025,0.4151,0.9943,1.2821,0.2625,1.6949,20.738,8.322,10.2992,0.0,0.0,33.1288,5.264,17.5566,35.91,5.26,18.51,17.68,0.27,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,89.9,12093.76,12969.9,46.66,1.0,46.66,67.25,67.25,0.0,43.87,1.0,43.87,67.25,67.25,0.0,62.14,86.094,55.4835,89.2928,0.21669,1.0219,1.015,1.0,1.0372,1.0,44.2824,0.0,0.0,36.48,15.54,11.38,58.27,10.06,19.41,22.7,0.0,0.0,0.8026,0.4055,0.9938,1.2821,0.2625,1.6949,19.5513,7.9583,10.2928,0.0,0.0,31.2323,5.152,17.5537,33.86,5.15,18.51,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 -house076.xml,66.44,31.439,22.0875,33.2458,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.2756,0.0,0.0,6.98,4.84,5.78,11.13,3.44,12.13,13.69,0.15,0.0,0.804,0.3687,0.8083,1.2821,0.2625,1.6949,5.6429,2.948,2.7976,0.0,0.0,8.9978,2.099,5.8665,9.92,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,112.32,3996.89,3365.18,52.65,1.0,52.65,66.44,66.44,0.0,46.98,1.0,46.98,66.44,66.44,0.0,64.65,32.152,21.9815,33.9998,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.2376,0.0,0.0,7.84,4.76,5.78,12.5,3.45,12.14,13.68,0.08,0.0,0.8041,0.3626,0.8075,1.2821,0.2625,1.6949,5.6126,2.8755,2.7954,0.0,0.0,8.9489,2.082,5.8673,9.87,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 -house077.xml,77.4,39.285,32.534,42.0337,0.20653,1.0669,0.9857,1.0173,1.07,1.0,31.0452,0.0,0.0,9.12,5.06,8.65,14.57,3.61,9.53,15.25,1.21,0.0,0.8023,0.3678,0.9764,1.2821,0.2625,1.0753,5.5273,2.6364,6.5863,0.0,0.0,8.8323,1.882,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.35,7529.46,8545.82,56.2,1.0,56.2,77.4,77.4,0.0,46.39,1.0,46.39,77.4,77.4,0.0,74.38,40.712,32.3992,43.5605,0.20653,1.0669,0.9857,1.0173,1.07,1.0,30.9986,0.0,0.0,10.72,4.88,8.65,17.12,3.58,9.53,15.24,1.22,0.0,0.8026,0.3582,0.976,1.2821,0.2625,1.0753,5.4805,2.5512,6.5835,0.0,0.0,8.7543,1.87,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 -house078.xml,57.39,134.714,76.3158,132.9883,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.3156,0.0,0.0,30.34,57.14,8.98,48.6,32.61,16.25,36.97,1.29,0.0,0.8004,0.46,0.9359,1.2821,0.2625,1.6949,13.9445,30.3311,3.7552,0.0,0.0,22.335,17.3112,6.8003,24.49,17.31,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.58,12012.38,15289.7,53.9,1.0,53.9,57.39,57.39,0.0,50.74,1.0,50.74,57.39,57.39,0.0,54.63,139.299,75.1196,137.5146,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.1754,0.0,0.0,34.4,57.73,8.98,55.1,34.05,16.25,36.97,1.23,0.0,0.8004,0.4452,0.9359,1.2821,0.2625,1.6949,13.8542,29.2242,3.7552,0.0,0.0,22.1899,17.2352,6.8003,24.33,17.24,9.47,27.69,0.6,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 -house079.xml,54.41,93.273,49.2866,90.5821,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.455,0.0,0.0,46.269999999999996,2.9299999999999997,10.35,32.46,1.45,12.36,33.73,0.0,0.0,1.26,1.0615,0.9516,0.8864,0.525,1.1364,23.8625,0.1921,2.827,0.0,0.0,16.7241,0.095,3.3758,16.73,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,53.67,2989.74,5736.19,55.89,1.0,55.89,54.41,54.41,1.0,50.5,1.0,50.5,54.41,54.41,0.0,50.09,101.5,49.3755,98.5717,0.21786,0.9711,1.0,1.0,0.9711,1.0,42.346,0.0,0.0,54.88,2.55,10.35,38.1,1.28,12.36,33.72,0.0,0.0,1.2735,1.0436999999999999,0.9516,0.8864,0.525,1.1364,23.9558,0.1888,2.8268,0.0,0.0,16.6171,0.095,3.3758,16.62,0.1,3.23,22.4,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house080.xml,41.23,144.396,57.9292,140.4904,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.608,0.0,0.0,32.16,63.269999999999996,8.98,23.380000000000003,37.04,10.83,37.29,2.7,0.0,1.2188,0.8966000000000001,0.9641,0.8864,0.525,1.1628,9.693200000000001,21.4172,1.6258,0.0,0.0,7.048,12.5381,1.9609,7.050000000000001,12.54,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.1,7092.97,16915.32,46.44,1.0,46.44,41.23,41.23,1.0,44.68,1.0,44.68,41.23,41.23,1.0,38.96,150.354,56.9893,146.2872,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.487,0.0,0.0,37.22,64.17,8.98,26.76,39.14,10.83,37.29,2.7,0.0,1.2328000000000001,0.8605,0.9636,0.8864,0.525,1.1628,9.7249,20.446399999999997,1.625,0.0,0.0,6.992,12.4711,1.9609,6.99,12.48,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 -house081.xml,65.14,25.582,18.9743,29.1266,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.55,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5032,0.4512,0.9399,0.4432,0.2625,1.0638,3.3241,1.8578,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.11,3195.09,4181.53,41.98,1.0,41.98,65.14,65.14,0.0,40.6,1.0,40.6,65.14,65.14,0.0,64.75,25.709,18.9543,29.2711,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4494,0.9397,0.4432,0.2625,1.0638,3.3202,1.8435,4.7766,0.0,0.0,2.916,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 -house082.xml,63.08,159.436,99.0698,157.0517,0.26388,0.9504,1.0364,1.0,0.985,1.0,75.2486,0.0,0.0,35.54,68.64,10.4,56.95,39.769999999999996,18.4,44.06,0.79,0.0,1.6006,0.9061,0.9582,2.5642,0.525,1.6949,23.9825,36.8411,2.5581,0.0,0.0,38.419,21.3482,4.5249,41.42,21.35,9.11,30.29,5.4,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.5,16152.69,18119.64,54.94,1.0,54.94,63.08,63.08,0.0,51.62,1.0,51.62,63.08,63.08,0.0,57.41,165.484,93.581,163.0093,0.26388,0.9504,1.0364,1.0,0.985,1.0,71.7876,0.0,0.0,41.14,69.4,10.4,65.92,41.68,18.4,44.05,0.48,0.0,1.6006,0.8744000000000001,0.9582,2.5642,0.525,1.6949,23.2107,34.295100000000005,2.5581,0.0,0.0,37.1816,20.5942,4.5249,40.08,20.59,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house001.xml,62.67,31.972,21.368,34.0981,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.8636,0.0,0.0,9.5,2.03,6.49,15.17,2.16,12.48,13.57,0.38,0.0,0.8025,0.2473,0.8521,1.2821,0.2625,1.6393,5.5785,1.1286,4.0048,0.0,0.0,8.9126,1.198,7.7047,9.83,1.2,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,71.38,5819.98,7645.36,55.78,1.0,55.78,62.67,62.67,0.0,46.55,1.0,46.55,62.67,62.67,0.0,59.89,33.338,21.2952,35.5549,0.21375,1.0795,0.9705,1.0179,1.0665,1.0,19.8366,0.0,0.0,10.95,1.95,6.49,17.5,2.14,12.49,13.57,0.38,0.0,0.8027,0.2396,0.8512,1.2821,0.2625,1.6393,5.5505,1.0887,4.0011,0.0,0.0,8.8654,1.193,7.7055,9.78,1.19,9.82,9.87,0.79,0.0,1.0417,0.2133,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house002.xml,70.22,115.29,79.6092,113.373,0.18474,0.9834,1.0,1.0,0.9834,1.0,69.182,0.0,0.0,52.3,21.46,9.53,42.22,12.3,10.55,30.8,1.19,0.0,0.5491,0.4579,0.982,0.4432,0.2625,1.087,34.104,11.1653,8.5309,0.0,0.0,27.5312,6.4011,9.443,27.53,6.4,9.44,23.96,1.85,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,71.1,12589.44,18006.29,50.82,1.0,50.82,70.22,70.22,0.0,48.36,1.0,48.36,70.22,70.22,0.0,64.79,123.662,78.7893,121.6058,0.18474,0.9834,1.0,1.0,0.9834,1.0,68.715,0.0,0.0,60.63,21.55,9.53,48.65,12.84,10.55,30.8,1.16,0.0,0.5523,0.4406,0.9818,0.4432,0.2625,1.087,33.8715,10.6344,8.5293,0.0,0.0,27.1832,6.3361,9.443,27.18,6.34,9.44,23.96,1.79,0.0,0.4015,0.2354,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 +house003.xml,62.9,88.762,55.4163,88.1013,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.6038,0.0,0.0,28.15,21.79,8.82,31.36,12.44,16.03,29.0,1.0,0.0,1.4118,0.4597,0.9324,1.7253,0.2625,1.6949,18.2389,12.0877,1.9777,0.0,0.0,18.881700000000002,6.9031,3.5952,19.68,6.9,7.24,21.93,1.18,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013,74.0,9466.87,12889.74,49.12,1.0,49.12,62.9,62.9,0.0,47.18,1.0,47.18,62.9,62.9,0.0,59.43,92.271,54.4269,91.5842,0.24248,0.9926,1.0,1.0,0.9926,1.0,44.2482,0.0,0.0,31.91,21.58,8.82,35.05,12.88,16.04,29.0,0.97,0.0,1.4139,0.4399,0.9318,1.7253,0.2625,1.6949,17.9394,11.445,1.9765,0.0,0.0,18.5154,6.8311,3.5952,19.29,6.83,7.24,21.93,1.13,0.0,1.4885,0.2438,1.1322,3.3504,0.403,3.809,0.0,1.1877,1.013 +house004.xml,60.97,90.447,57.5906,94.4529,0.3199,1.0443,1.0,1.0,1.0443,1.0,52.5082,0.0,0.0,50.76,2.78,13.08,47.09,1.42,14.34,22.18,1.66,0.0,0.4778,0.5127,0.9808,0.4432,0.2625,1.0753,33.17,0.5937,4.8599,0.0,0.0,30.7723,0.304,5.3281,30.77,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,66.53,4964.73,7146.23,56.26,1.0,56.26,60.97,60.97,0.0,48.6,1.0,48.6,60.97,60.97,0.0,55.37,99.933,57.7812,104.3589,0.31989,1.0443,1.0,1.0,1.0443,1.0,52.4042,0.0,0.0,60.65,2.39,13.08,55.71,1.27,14.34,22.16,1.66,0.0,0.4825,0.4958,0.9808,0.4432,0.2625,1.0753,33.3869,0.5647,4.8635,0.0,0.0,30.6723,0.299,5.332,30.67,0.3,5.39,15.86,3.1,0.0,0.4015,0.2438,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 +house005.xml,60.3,28.249,18.3614,30.4476,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.792,0.0,0.0,5.0,4.03,5.78,4.32,2.29,12.12,12.72,0.72,0.0,0.5124,0.4624,0.8089,0.4432,0.2625,1.6949,1.5758,2.8795,0.8717,2.3849,0.0366,1.363,1.635,1.8264,1.36,1.64,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013,83.34,2693.31,2998.26,49.99,1.0,49.99,60.3,60.3,0.0,44.77,1.0,44.77,60.3,60.3,0.0,58.42,29.079,18.3091,31.3422,0.20299,1.0903,0.972,1.017,1.0778,1.0,16.7722,0.0,0.0,5.91,3.96,5.78,4.97,2.3,12.13,12.71,0.72,0.0,0.5274,0.4514,0.8079,0.4432,0.2625,1.6949,1.6122,2.7972,0.8706,2.3805,0.0366,1.355,1.627,1.8264,1.36,1.63,4.05,8.82,1.79,0.0,0.3031,0.3131,1.0989,2.2561,0.0,3.809,0.0,1.1877,1.013 +house006.xml,71.73,92.122,67.3246,93.8524,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.428,0.0,0.0,32.58,20.6,10.53,24.52,11.93,11.82,27.5,0.91,0.0,1.1778,0.9073,0.9796,0.8864,0.525,1.0989,22.3305,12.8415,9.4717,0.0,0.0,16.8062,7.432,10.6255,16.799999999999997,7.44,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.98,10225.13,13752.59,45.84,1.0,45.84,71.73,71.73,0.0,43.95,1.0,43.95,71.73,71.73,0.0,69.62,94.105,66.7499,95.8726,0.23952,1.0022,1.0165,1.0,1.0188,1.0,57.273,0.0,0.0,34.74,20.48,10.53,26.18,12.17,11.82,27.49,0.85,0.0,1.1766,0.8837999999999999,0.9796,0.8864,0.525,1.0989,22.1592,12.4372,9.4726,0.0,0.0,16.6942,7.389,10.6265,16.700000000000003,7.390000000000001,10.51,21.22,1.46,0.0,0.8324,0.4708,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 +house007.xml,76.98,46.859,38.1171,49.5176,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,15.96,4.62,8.84,13.66,2.6,9.87,17.03,0.41,0.0,0.5179,0.4674,0.9739,0.4432,0.2625,1.087,13.3151,1.0859,7.592,0.0,0.0,11.3951,0.61,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0,79.23,8954.49,10695.03,57.13,1.0,57.13,76.98,76.98,0.0,48.06,1.0,48.06,76.98,76.98,0.0,73.93,48.961,38.2523,51.7389,0.23441,1.0534,0.9838,1.0197,1.0567,1.0,36.6,0.0,0.0,18.27,4.48,8.84,15.44,2.58,9.87,17.02,0.35,0.0,0.5242,0.4568,0.9736,0.4432,0.2625,1.087,13.4771,1.0614,7.5897,0.0,0.0,11.3951,0.61,8.473,11.4,0.61,8.47,14.78,1.35,0.0,0.5019,0.1031,1.0989,2.2561,0.0,3.809,0.0,0.92,0.0 +house008.xml,62.88,161.203,98.5564,156.7454,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.8734,0.0,0.0,97.85,10.47,13.21,155.92,6.66,22.24,38.43,1.24,0.0,0.8046,0.4128,1.0241,1.2821,0.2625,1.7241,47.6578,5.6438,7.7118,0.0,0.0,75.9411,3.589,12.9828,83.83,3.59,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013,73.59,24536.22,34290.95,51.57,1.0,51.57,62.88,62.88,0.0,46.67,1.0,46.67,62.88,62.88,0.0,57.42,175.73,98.1143,170.8707,0.20059,0.9685,1.0138,0.9903,0.9723,1.0,79.7352,0.0,0.0,112.87,10.13,13.21,179.85,6.73,22.26,38.43,1.1,0.0,0.8046,0.3948,1.0235,1.2821,0.2625,1.7241,47.5037,5.3613,7.7073,0.0,0.0,75.6956,3.565,12.9828,83.56,3.57,14.79,37.21,0.33,0.0,1.0395,0.2275,1.4925,1.0943,0.403,3.809,0.0,1.1877,1.013 +house009.xml,62.59,99.668,63.91,102.1037,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.5846,0.0,0.0,20.06,41.9,8.98,32.14,24.95,16.37,27.85,0.88,0.0,0.8004,0.4408,0.9453,1.2821,0.2625,1.7241,11.114,22.6629,6.2941,0.0,0.0,17.8022,13.4971,11.4795,17.99,13.5,12.34,23.2,0.64,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,85.94,10152.43,11531.79,48.9,1.0,48.9,62.59,62.59,0.0,45.74,1.0,45.74,62.59,62.59,0.0,59.54,102.554,62.5579,105.0602,0.28588,1.0046,1.0197,1.0,1.0244,1.0,47.1314,0.0,0.0,22.62,42.3,8.98,36.23,25.97,16.37,27.84,0.82,0.0,0.8004,0.4277,0.9453,1.2821,0.2625,1.7241,10.754,21.7207,6.2932,0.0,0.0,17.2252,13.3331,11.4786,17.41,13.33,12.34,23.2,0.59,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house010.xml,63.19,257.4081,147.3764,233.2271,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.6444,0.006,0.0,53.05,138.21,7.1,84.87,76.5,13.56,59.06,0.0,0.0,2.4049,1.4218,1.7752,3.8463000000000003,0.7875000000000001,3.3898,25.0349,75.2263,1.7482,0.0,0.0,40.0513,41.641400000000004,3.3382,43.66,41.65,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026,96.16,17426.28,20002.07,54.48,1.0,54.48,63.19,63.19,0.0,49.09,1.0,49.09,63.19,63.19,0.0,60.53,267.2413,146.5751,242.1366,0.28136,0.9061,1.0,1.0,0.9061,0.9999,104.2202,0.006,0.0,59.64,141.43,7.1,95.42,78.43,13.56,59.06,0.0,0.0,2.4048,1.4194,1.7748,3.8463000000000003,0.7875000000000001,3.3898,24.711199999999998,74.749,1.7478,0.0,0.0,39.533,41.4494,3.3382,43.1,41.45,6.14,42.98,2.39,0.0,3.1914000000000002,0.6398999999999999,2.3376,3.2829,1.209,11.427,0.0,2.3754,2.026 +house011.xml,67.06,40.345,28.8645,43.0419,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.3192,0.0,0.0,8.9,6.51,7.88,14.24,4.49,8.89,16.77,0.29,0.0,0.8011,0.3805,0.9632,1.2821,0.2625,1.087,6.3968,2.4813,7.2764,0.0,0.0,10.2376,1.712,8.211,11.29,1.71,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,93.25,4126.44,4148.05,56.81,1.0,56.81,67.06,67.06,0.0,53.21,1.0,53.21,67.06,67.06,0.0,64.86,41.555,28.7529,44.3327,0.26095,1.0631,0.982,1.0219,1.0668,1.0,27.2752,0.0,0.0,10.33,6.39,7.88,16.53,4.5,8.89,16.77,0.2,0.0,0.8013,0.3727,0.9629,1.2821,0.2625,1.087,6.3548,2.415,7.2731,0.0,0.0,10.1678,1.701,8.21,11.21,1.7,8.21,12.54,0.17,0.0,1.0417,0.2133,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house012.xml,49.98,70.802,37.0249,74.0781,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.945,0.0,0.0,35.25,2.67,11.63,29.95,1.5,12.67,19.99,1.27,0.0,0.5217,0.4661,0.9972,0.4432,0.2625,1.087,10.4604,0.8966,9.8379,0.0,0.0,8.8881,0.505,10.723,8.89,0.51,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,51.22,5457.65,10184.83,51.76,1.0,51.76,49.98,49.98,1.0,54.29,1.0,54.29,49.98,49.98,1.0,46.06,76.71,36.9659,80.2595,0.31658,1.0463,1.0,1.0,1.0463,1.0,35.902,0.0,0.0,41.32,2.51,11.63,34.98,1.48,12.68,19.98,1.27,0.0,0.5236,0.4451,0.9969,0.4432,0.2625,1.087,10.4561,0.8461,9.8348,0.0,0.0,8.8521,0.499,10.723,8.85,0.5,10.72,14.54,1.29,0.0,0.5019,0.3413,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house013.xml,59.02,44.14,27.4721,46.5447,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.997,0.0,0.0,12.89,1.84,10.35,9.37,0.87,11.96,18.45,0.61,0.0,0.6099,0.5565,0.9616,0.4432,0.2625,1.1111,9.7229,0.3837,2.9805,0.0,0.0,7.0661,0.181,3.4439,7.07,0.18,3.37,13.73,0.66,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0,57.51,1719.66,2835.48,52.76,1.0,52.76,59.02,59.02,0.0,47.39,1.0,47.39,59.02,59.02,0.0,57.69,45.039,27.3962,47.4926,0.16876,1.0398,1.0,1.0141,1.0545,1.0,24.879,0.0,0.0,13.9,1.75,10.35,10.01,0.83,11.96,18.44,0.6,0.0,0.6152,0.5549,0.9616,0.4432,0.2625,1.1111,9.6601,0.3847,2.9814,0.0,0.0,6.9601,0.182,3.4449,6.96,0.18,3.37,13.73,0.64,0.0,0.3593,0.2275,0.3571,2.2561,0.0,3.809,0.0,0.92,0.0 +house014.xml,55.27,184.232,100.4527,181.7625,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.372,0.0,0.0,89.78,28.37,15.5,66.25,15.43,17.19,47.42,3.17,0.0,1.2,0.9649,1.0132,0.8864,0.525,1.1236,43.5796,12.9494,3.4267,0.0,0.0,32.1573,7.042,3.7999,32.16,7.050000000000001,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0,55.99,9573.23,17330.11,48.39,1.0,48.39,55.27,55.27,0.0,46.02,1.0,46.02,55.27,55.27,0.0,50.66,199.254,99.5968,196.5831,0.25797,0.9366,1.0534,1.0,0.9866,1.0,83.189,0.0,0.0,105.25,27.94,15.5,77.55000000000001,16.009999999999998,17.19,47.41,3.17,0.0,1.2027999999999999,0.9157,1.0132,0.8864,0.525,1.1236,43.4362,12.2381,3.4265,0.0,0.0,32.006299999999996,7.011,3.7999,32.0,7.02,3.68,36.31,4.19,0.0,0.5936,0.3102,0.2584,4.5122,0.0,7.618,0.0,0.92,0.0 +house015.xml,16.76,37.909,21.365,43.0166,0.27921,1.1531,0.9615,1.0235,1.1347,0.3375,17.131,11.35,0.0,0.24,22.08,3.31,0.29,11.97,5.92,12.0,0.29,0.0,0.3616,0.4843,0.6894,0.4432,0.2625,1.2346,0.1778,10.4824,0.9108,0.0,0.0,0.218,5.6821,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0,22.58,879.74,3433.97,49.66,1.0,49.66,49.67,49.67,1.0,47.62,1.0,47.62,49.67,49.67,0.0,47.1,37.966,21.3609,43.0813,0.27921,1.1531,0.9615,1.0235,1.1347,0.95,17.131,0.8566,0.0,0.26,22.12,3.31,0.3,12.0,5.92,12.0,0.29,0.0,0.3733,0.4839,0.6894,0.4432,0.2625,1.2346,0.1836,10.4726,0.9108,0.0,0.0,0.218,5.6821,1.631,0.22,5.68,1.44,9.58,0.21,0.0,0.3346,0.2625,0.3096,2.2561,0.0,3.809,0.0,0.92,0.0 +house016.xml,51.6,104.549,56.2141,108.9465,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.2192,0.0,0.0,0.68,72.28,5.6,0.59,39.0,11.56,25.13,0.87,0.0,0.5151,0.4865,0.8215,0.4432,0.2625,1.6949,0.3138,34.2392,2.9331,0.0,0.0,0.27,18.4762,6.0515,0.27,18.48,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013,72.31,6038.49,8014.14,51.19,1.0,51.19,51.6,51.6,0.0,49.0,1.0,49.0,51.6,51.6,0.0,51.27,104.824,56.0043,109.2331,0.27659,1.0184,1.0,1.0233,1.0421,1.0,39.1232,0.0,0.0,0.75,72.5,5.6,0.63,39.17,11.56,25.13,0.85,0.0,0.5267,0.4859,0.8211,0.4432,0.2625,1.6949,0.3125,34.035,2.9318,0.0,0.0,0.263,18.3902,6.0515,0.26,18.39,10.51,18.36,0.37,0.0,0.3593,0.2133,1.1945,2.2561,0.0,3.809,0.0,1.1877,1.013 +house017.xml,69.38,58.642,42.6168,61.4244,0.20197,1.03,1.0,1.0169,1.0474,1.0,37.1698,0.0,0.0,21.08,5.68,10.94,33.6,3.79,18.88,20.27,0.67,0.0,0.8044,0.3934,0.982,1.2821,0.2625,1.6949,22.0354,2.0618,2.3736,0.0,0.0,35.1189,1.376,4.0967,38.61,1.38,9.12,15.65,0.5,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013,180.01,8408.66,4459.59,52.56,1.0,52.56,69.38,69.38,0.0,47.65,1.0,47.65,69.38,69.38,0.0,65.07,61.88,42.1783,64.816,0.20197,1.03,1.0,1.0169,1.0474,1.0,36.8558,0.0,0.0,24.56,5.48,10.94,39.13,3.7,18.9,20.26,0.64,0.0,0.8048,0.3887,0.9811,1.2821,0.2625,1.6949,21.6645,2.0195,2.3713,0.0,0.0,34.5122,1.364,4.0967,37.95,1.36,9.12,15.65,0.48,0.0,1.0471,0.2275,1.0979,1.0943,0.403,3.809,0.0,1.1877,1.013 +house018.xml,31.37,276.4711,144.2559,265.0071,0.22626,0.9122,1.0624,0.9891,0.9585,0.5764,115.008,48.722,0.0,152.22,32.54,17.32,242.41000000000003,21.22,27.24,72.71,1.67,0.0,2.416,1.2027999999999999,2.157,3.8463000000000003,0.7875000000000001,3.3898,74.7946,14.4849,5.9484,0.0,0.0,119.10679999999999,9.453,9.3478,130.58,9.46,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026,99.57,24784.91,25968.0,51.25,1.0,51.25,54.43,54.43,0.0,47.28,1.0,47.28,54.43,54.43,0.0,45.69,297.5852,143.2444,285.2457,0.22626,0.9122,1.0624,0.9891,0.9585,0.9099,114.6282,10.3253,0.0,174.4,32.03,17.32,277.58,21.65,27.24,72.7,1.12,0.0,2.4171,1.1623,2.1562,3.8463000000000003,0.7875000000000001,3.3898,74.4241,13.847100000000001,5.9462,0.0,0.0,118.4591,9.363,9.3478,129.88,9.370000000000001,18.24,48.13,0.9,0.0,3.1578,0.6398999999999999,2.2884,3.2829,1.209,11.427,0.0,2.3754,2.026 +house019.xml,63.56,163.996,101.7927,160.1461,0.19184,0.9638,1.0132,1.0,0.9765,1.0,81.2378,0.0,0.0,98.88,10.32,13.21,157.57,6.86,22.25,41.58,0.0,0.0,0.8046,0.3948,1.0241,1.2821,0.2625,1.7241,57.1601,3.1066,7.335,0.0,0.0,91.0828,2.066,12.349,100.49,2.07,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013,76.09,25761.74,34669.69,52.01,1.0,52.01,63.56,63.56,0.0,46.8,1.0,46.8,63.56,63.56,0.0,57.93,179.482,101.5373,175.2685,0.19184,0.9638,1.0132,1.0,0.9765,1.0,81.0892,0.0,0.0,114.72,9.97,13.21,182.81,6.73,22.26,41.57,0.0,0.0,0.8046,0.389,1.0235,1.2821,0.2625,1.7241,56.9696,3.0416,7.3322,0.0,0.0,90.7792,2.053,12.3515,100.15,2.05,15.29,29.63,4.56,0.0,1.0406,0.2008,1.4085,1.0943,0.403,3.809,0.0,1.1877,1.013 +house020.xml,39.66,160.6674,130.0996,157.2379,0.25991,0.9409,1.0179,1.0219,0.9787,0.4794,108.1632,56.311,0.0,90.78999999999999,13.25,13.07,105.3,7.56,14.11,43.46,0.11,0.0,1.951,2.0197,1.0069,2.1364,1.05,1.087,72.1072,8.9705,12.112,0.0,0.0,86.9496,5.1419999999999995,13.075,93.78999999999999,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,114.01,13144.35,11780.58,56.16,1.0,56.16,82.74,82.74,0.0,51.97,1.0,51.97,82.74,82.74,0.0,71.78,172.9747,130.4931,169.2824,0.25991,0.9409,1.0179,1.0219,0.9787,0.9312,108.1632,7.4459,0.0,103.46,12.88,13.07,119.43,7.41,14.11,43.45,0.11,0.0,1.9662000000000002,1.9943,1.0067,2.1364,1.05,1.087,72.5596,8.9142,12.1094,0.0,0.0,86.9496,5.1419999999999995,13.075,93.78999999999999,5.14,13.08,33.29,3.62,0.0,1.7317,0.9273,1.1628,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 +house021.xml,59.6,107.633,67.3112,112.9339,0.27058,1.0115,1.0373,1.0,1.0492,1.0,51.0092,0.0,0.0,55.49,8.08,15.32,88.42,5.49,24.63,27.8,0.95,0.0,0.8045,0.3864,1.0544,1.2821,0.2625,1.6949,28.9022,5.904,10.298,0.0,0.0,46.0558,4.011,16.5533,50.78,4.01,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013,65.9,16174.62,23392.77,53.07,1.0,53.07,59.6,59.6,0.0,47.74,1.0,47.74,59.6,59.6,0.0,55.4,115.174,66.9532,120.8463,0.27058,1.0115,1.0373,1.0,1.0492,1.0,50.906,0.0,0.0,63.27,7.84,15.32,100.83,5.53,24.64,27.79,0.95,0.0,0.8046,0.3726,1.054,1.2821,0.2625,1.6949,28.8104,5.6435,10.2934,0.0,0.0,45.9088,3.976,16.5533,50.62,3.98,17.77,19.52,2.69,0.0,1.0417,0.2625,1.5873,1.0943,0.403,3.809,0.0,1.1877,1.013 +house022.xml,54.54,81.053,45.9387,84.2289,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.5116,0.0,0.0,0.53,53.74,4.49,0.5,29.48,5.69,21.32,0.98,0.0,0.4736,0.4786,0.8757,0.4432,0.2625,1.1111,0.7169,25.4531,1.8297,0.0,0.0,0.671,13.9611,2.3215,0.67,13.96,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0,62.06,4114.69,6380.15,50.96,1.0,50.96,54.54,54.54,0.0,48.62,1.0,48.62,54.54,54.54,0.0,54.13,81.337,45.7555,84.5241,0.24279,1.0358,0.9832,1.0204,1.0392,1.0,32.4156,0.0,0.0,0.6,53.96,4.49,0.54,29.64,5.69,21.32,0.98,0.0,0.4899,0.4779,0.8757,0.4432,0.2625,1.1111,0.7295,25.2563,1.8297,0.0,0.0,0.66,13.8751,2.3215,0.66,13.88,2.27,15.85,2.09,0.0,1.0,0.1264,0.2817,2.2561,0.0,3.809,0.0,0.92,0.0 +house023.xml,72.64,87.947,64.2531,88.4532,0.26056,1.0022,0.982,1.0219,1.0058,1.0,51.131,0.0,0.0,16.78,39.81,6.02,12.25,22.64,7.25,24.51,0.83,0.0,0.6071,0.4616,0.9222,0.4432,0.2625,1.1111,10.6759,25.7902,4.949,0.0,0.0,7.7941,14.6671,5.9626,7.79,14.67,5.83,18.81,4.02,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.45,7663.97,10235.44,45.83,1.0,45.83,72.64,72.64,0.0,44.01,1.0,44.01,72.64,72.64,0.0,70.37,89.167,63.108,89.6802,0.26056,1.0022,0.982,1.0219,1.0058,1.0,50.528,0.0,0.0,17.88,39.98,6.02,12.99,23.09,7.25,24.51,0.79,0.0,0.6101,0.4546,0.9222,0.4432,0.2625,1.1111,10.457,25.102,4.949,0.0,0.0,7.5971,14.4981,5.9626,7.6,14.5,5.83,18.81,3.79,0.0,0.3792,0.2202,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house024.xml,68.97,107.383,74.7606,108.401,0.271,0.991,1.0187,1.0,1.0095,1.0,56.022,0.0,0.0,22.23,45.15,8.98,35.62,26.98,16.04,30.27,0.76,0.0,0.8002,0.4394,0.9482,1.2821,0.2625,1.6949,15.2105,24.4966,6.6384,0.0,0.0,24.3693,14.6361,11.8663,24.63,14.64,12.51,23.87,4.54,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,95.54,11942.95,12383.02,53.04,1.0,53.04,68.97,68.97,0.0,49.93,1.0,49.93,68.97,68.97,0.0,64.76,110.852,72.4699,111.9029,0.271,0.991,1.0187,1.0,1.0095,1.0,54.8492,0.0,0.0,25.37,45.65,8.98,40.64,28.2,16.04,30.27,0.6,0.0,0.8003,0.4249,0.9482,1.2821,0.2625,1.6949,14.737,23.3034,6.6384,0.0,0.0,23.6093,14.3971,11.8663,23.86,14.4,12.51,23.87,3.92,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house025.xml,9.51,195.067,105.1422,186.8997,0.15772,0.9551,1.0109,0.9924,0.9581,0.169,84.68,70.37,0.0,108.4,19.7,12.53,80.06,10.43,13.85,51.62,2.81,0.0,1.2004,0.9922,1.0048,0.8864,0.525,1.1111,53.3733,9.981,2.4209,0.0,0.0,39.4174,5.282,2.6772,39.42,5.279999999999999,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0,22.65,2938.12,13537.79,51.03,1.0,51.03,56.26,56.26,0.0,46.01,1.0,46.01,56.26,56.26,0.0,49.59,209.168,104.7398,200.4103,0.15772,0.9551,1.0109,0.9924,0.9581,0.9488,84.19,4.3097,0.0,122.4,19.82,12.53,89.8,10.5,13.86,51.62,2.81,0.0,1.2083,0.9907999999999999,1.0045,0.8864,0.525,1.1111,53.2456,9.706,2.4223,0.0,0.0,39.064400000000006,5.144,2.6792,39.07,5.140000000000001,2.62,36.68,2.69,0.0,0.6826,0.3414,0.2817,4.5122,0.0,7.618,0.0,0.92,0.0 +house026.xml,65.28,72.687,49.5643,75.9295,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.9886,0.0,0.0,12.09,29.63,7.52,19.37,17.88,14.1,22.79,0.66,0.0,0.8003,0.4351,1.808,1.2821,0.2625,3.3898,6.1863,16.8539,7.0692,0.0,0.0,9.9102,10.1691,13.2534,10.93,10.17,14.24,18.96,0.49,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026,91.72,8174.11,8531.59,47.28,1.0,47.28,65.28,65.28,0.0,44.52,1.0,44.52,65.28,65.28,0.0,63.04,74.17,48.8434,77.4787,0.21416,1.0262,1.0,1.018,1.0446,1.0,37.7398,0.0,0.0,13.43,29.83,7.52,21.51,18.4,14.1,22.78,0.62,0.0,0.8003,0.4255,1.808,1.2821,0.2625,3.3898,6.0018,16.3524,7.0692,0.0,0.0,9.6146,10.0891,13.2534,10.6,10.09,14.24,18.96,0.46,0.0,1.0417,0.2133,3.1746,1.0943,0.403,3.809,0.0,2.3754,2.026 +house027.xml,66.94,88.023,61.1476,91.3511,0.30303,1.012,1.0,1.0255,1.0378,1.0,45.744,0.0,0.0,16.18,37.8,7.52,25.91,22.52,14.42,25.76,0.78,0.0,0.8004,0.4407,0.8986,1.2821,0.2625,1.7241,10.5889,21.0511,6.0926,0.0,0.0,16.961,12.5401,11.69,17.14,12.54,11.69,19.66,3.75,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013,90.96,9658.06,10231.44,51.99,1.0,51.99,66.94,66.94,0.0,48.91,1.0,48.91,66.94,66.94,0.0,64.4,89.202,59.618,92.5747,0.30303,1.012,1.0,1.0255,1.0378,1.0,44.842,0.0,0.0,17.26,37.96,7.52,27.65,22.96,14.42,25.76,0.71,0.0,0.8004,0.434,0.8986,1.2821,0.2625,1.7241,10.1337,20.3366,6.0926,0.0,0.0,16.2317,12.3011,11.69,16.4,12.3,11.69,19.66,3.39,0.0,1.25,0.2133,1.6667,1.0943,0.403,3.809,0.0,1.1877,1.013 +house028.xml,66.42,114.634,77.557,116.7728,0.28669,0.9799,1.0396,1.0,1.0187,1.0,62.309,0.0,0.0,23.19,48.37,10.4,16.75,28.16,11.65,31.53,1.14,0.0,0.6137,0.451,0.9924,0.4432,0.2625,1.1111,13.9793,29.0237,8.0129,0.0,0.0,10.0971,16.8942,8.971,10.1,16.89,8.78,25.75,0.79,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.48,9386.03,13454.37,44.76,1.0,44.76,66.42,66.42,0.0,42.91,1.0,42.91,66.42,66.42,0.0,62.74,118.384,75.6601,120.5927,0.28669,0.9799,1.0396,1.0,1.0187,1.0,61.506,0.0,0.0,26.5,48.91,10.4,18.96,29.34,11.65,31.52,1.05,0.0,0.6196,0.4376,0.9924,0.4432,0.2625,1.1111,13.4528,27.7144,8.0129,0.0,0.0,9.6241,16.6261,8.971,9.62,16.63,8.78,25.75,0.73,0.0,0.4015,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house029.xml,61.74,112.566,69.499,112.5589,0.25554,0.9826,1.0176,1.0,0.9999,1.0,53.067,0.0,0.0,22.82,47.519999999999996,8.98,36.56,28.79,16.04,32.24,1.0,0.0,1.6002,0.8658,1.8962,2.5642,0.525,3.3898,14.4489,24.008,3.7592,0.0,0.0,23.152,14.543199999999999,6.7198,23.4,14.54,9.36,26.58,0.7,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026,85.8,11182.62,13034.22,49.51,1.0,49.51,61.74,61.74,0.0,46.37,1.0,46.37,61.74,61.74,0.0,58.26,116.417,67.8218,116.4097,0.25554,0.9826,1.0176,1.0,0.9999,1.0,52.4724,0.0,0.0,26.23,48.08,8.98,42.019999999999996,30.13,16.04,32.24,0.9,0.0,1.6004,0.837,1.8962,2.5642,0.525,3.3898,13.9541,22.9008,3.7588,0.0,0.0,22.3574,14.3492,6.7198,22.59,14.350000000000001,9.36,26.58,0.63,0.0,2.5,0.4266,2.6512,2.1886,0.806,7.618,0.0,2.3754,2.026 +house030.xml,60.18,135.648,81.8394,136.0004,0.29427,0.9635,1.0406,1.0,1.0026,1.0,61.6688,0.0,0.0,29.11,57.800000000000004,10.4,46.64,34.82,17.92,37.11,1.21,0.0,1.6004,0.8689,1.9686,2.5642,0.525,3.3898,18.4188,32.073,2.6776,0.0,0.0,29.5103,19.342200000000002,4.6108,29.82,19.35,9.28,27.83,0.84,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026,83.77,13111.87,15611.38,50.34,1.0,50.34,60.18,60.18,0.0,47.0,1.0,47.0,60.18,60.18,0.0,56.56,140.34,79.5786,140.7046,0.29427,0.9635,1.0406,1.0,1.0026,1.0,60.8716,0.0,0.0,33.25,58.49,10.4,53.28,36.45,17.92,37.11,1.08,0.0,1.6004,0.8398000000000001,1.9684,2.5642,0.525,3.3898,17.7816,30.5386,2.6774,0.0,0.0,28.489,19.0542,4.6108,28.79,19.05,9.28,27.83,0.75,0.0,2.5,0.44079999999999997,2.2644,2.1886,0.806,7.618,0.0,2.3754,2.026 +house031.xml,55.7,208.0271,116.6243,209.3787,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,94.165,0.0,0.0,122.38,19.91,14.53,89.77,10.52,17.32,50.05,1.16,0.0,2.4167,1.988,1.0353,1.7728,1.05,1.2346,60.1917,13.9437,3.186,0.0,0.0,44.1534,7.366,3.7993,44.14,7.38,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0,55.29,8084.45,14528.19,49.49,1.0,49.49,55.7,55.7,0.0,44.76,1.0,44.76,55.7,55.7,0.0,51.78,223.019,116.2252,224.4681,-0.03312,1.0095,0.9954,1.0016,1.0065,1.0,93.708,0.0,0.0,137.31,19.98,14.53,100.16,10.57,17.33,50.04,1.16,0.0,2.4322,1.9841,1.035,1.7728,1.05,1.2346,60.113800000000005,13.6254,3.1861,0.0,0.0,43.8474,7.212,3.8004,43.849999999999994,7.22,3.35,36.31,2.99,0.0,1.3696000000000002,0.6884,0.2817,9.0244,0.0,15.236,0.0,0.92,0.0 +house032.xml,70.9,126.069,91.0366,128.4023,0.26774,0.978,1.0185,1.0225,1.0185,1.0,67.0134,0.0,0.0,26.42,56.59,8.98,42.31,33.64,16.32,33.12,0.96,0.0,1.6019999999999999,0.8779,0.9482,2.5642,0.525,1.7241,18.1342,34.1654,7.181,0.0,0.0,29.0323,20.3092,13.0577,29.33,20.310000000000002,13.06,25.94,5.62,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.41,15479.58,14418.93,54.67,1.0,54.67,70.9,70.9,0.0,51.33,1.0,51.33,70.9,70.9,0.0,67.34,128.102,87.8578,130.4729,0.26774,0.978,1.0185,1.0225,1.0185,1.0,65.0262,0.0,0.0,28.33,56.86,8.98,45.36,34.4,16.32,33.12,0.82,0.0,1.6021,0.8624,0.9482,2.5642,0.525,1.7241,17.2836,32.8132,7.181,0.0,0.0,27.6687,19.8572,13.0577,27.96,19.86,13.06,25.94,4.64,0.0,2.5,0.4266,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house033.xml,64.17,151.345,94.1586,146.7327,0.22297,0.9548,1.0154,1.0,0.9695,1.0,78.1386,0.0,0.0,69.78,28.19,11.38,111.33000000000001,17.630000000000003,19.4,42.0,0.0,0.0,1.6073,0.8361,0.9947,2.5642,0.525,1.6949,48.326499999999996,11.112400000000001,3.4067,0.0,0.0,77.1053,6.944000000000001,5.8048,85.26,6.95,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013,90.89,21005.45,23838.1,52.59,1.0,52.59,64.17,64.17,0.0,49.36,1.0,49.36,64.17,64.17,0.0,59.22,162.858,93.5041,157.8948,0.22297,0.9548,1.0154,1.0,0.9695,1.0,77.9524,0.0,0.0,81.25,28.24,11.38,129.64,18.3,19.41,41.99,0.0,0.0,1.6072,0.8069999999999999,0.994,2.5642,0.525,1.6949,48.1482,10.6384,3.4044,0.0,0.0,76.8231,6.889,5.8048,84.94,6.890000000000001,10.67,31.31,0.0,0.0,2.0726,0.44079999999999997,1.1688,2.1886,0.806,7.618,0.0,1.1877,1.013 +house034.xml,62.02,60.583,38.6522,62.3192,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4916,0.0,0.0,19.58,4.48,9.97,31.34,3.08,18.48,24.53,2.03,0.0,0.8008,0.3812,0.915,1.2821,0.2625,1.6949,9.3154,2.9153,4.2025,0.0,0.0,14.9139,2.008,7.7844,16.44,2.01,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,154.47,5829.41,3668.79,55.62,1.0,55.62,62.02,62.02,0.0,50.25,1.0,50.25,62.02,62.02,0.0,60.5,61.944,38.5474,63.7192,0.18749,1.0127,1.0,1.0157,1.0287,1.0,33.4344,0.0,0.0,21.05,4.37,9.97,33.7,3.04,18.48,24.53,2.03,0.0,0.8009,0.3777,0.915,1.2821,0.2625,1.6949,9.251,2.8761,4.2023,0.0,0.0,14.8096,1.999,7.7844,16.33,2.0,10.85,19.99,2.23,0.0,1.0417,0.2438,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house035.xml,70.1,103.391,72.2026,102.9997,0.19292,0.9804,1.0,1.0162,0.9962,1.0,61.0088,0.0,0.0,52.42,6.55,11.06,83.53,4.69,12.38,32.3,1.06,0.0,0.8046,0.3661,0.9925,1.2821,0.2625,1.1111,39.6247,2.9802,9.1447,0.0,0.0,63.1416,2.137,10.2376,68.45,2.14,10.02,19.93,0.52,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,80.21,18232.88,22817.12,55.89,1.0,55.89,70.1,70.1,0.0,49.5,1.0,49.5,70.1,70.1,0.0,64.67,110.264,71.0328,109.8467,0.19292,0.9804,1.0,1.0162,0.9962,1.0,60.1962,0.0,0.0,59.63,6.31,11.06,95.02,4.61,12.39,32.3,0.97,0.0,0.8046,0.3594,0.9922,1.2821,0.2625,1.1111,38.5752,2.9117,9.1408,0.0,0.0,61.4683,2.127,10.2365,66.64,2.13,10.01,19.93,0.48,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house036.xml,68.19,114.023,76.2497,111.7592,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.9078,0.035,0.0,61.69,8.82,8.65,98.32,5.89,15.94,33.62,1.24,0.0,0.8044,0.3935,0.9197,1.2821,0.2625,1.6949,38.8979,4.876,2.3779,0.0,0.0,61.9928,3.253,4.3819,68.16,3.25,9.11,27.74,2.36,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013,79.36,18849.84,24232.99,55.47,1.0,55.47,68.23,68.23,0.0,49.85,1.0,49.85,68.23,68.23,0.0,63.28,121.89,75.6398,119.47,0.18744,0.9776,0.9871,1.0157,0.9801,0.9994,62.4888,0.035,0.0,69.81,8.61,8.65,111.25,5.8,15.96,33.61,1.21,0.0,0.8044,0.39,0.9191,1.2821,0.2625,1.6949,38.474,4.7398,2.3761,0.0,0.0,61.3161,3.191,4.3819,67.41,3.19,9.11,27.74,2.31,0.0,1.0471,0.2438,1.1206,1.0943,0.403,3.809,0.0,1.1877,1.013 +house037.xml,67.04,113.255,76.748,114.4763,0.1936,0.9975,1.0134,1.0,1.0108,1.0,64.815,0.0,0.0,65.18,6.7,13.21,103.95,4.85,14.55,27.32,0.84,0.0,0.8039,0.363,1.0094,1.2821,0.2625,1.1111,41.1192,3.971,10.1998,0.0,0.0,65.576,2.872,11.2281,71.09,2.87,10.98,21.04,0.42,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0,78.29,19281.97,24365.15,52.9,1.0,52.9,67.04,67.04,0.0,47.97,1.0,47.97,67.04,67.04,0.0,60.88,122.59,75.4404,123.912,0.1936,0.9975,1.0134,1.0,1.0108,1.0,63.9142,0.0,0.0,74.85,6.49,13.21,119.27,4.82,14.55,27.32,0.73,0.0,0.8046,0.3533,1.0091,1.2821,0.2625,1.1111,40.0288,3.8115,10.197,0.0,0.0,63.7855,2.832,11.2281,69.15,2.83,10.98,21.04,0.36,0.0,1.0753,0.2625,1.0989,1.0943,0.403,3.809,0.0,0.92,0.0 +house038.xml,65.16,130.358,82.6103,126.7721,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.9556,0.0,0.0,39.6,39.97,9.92,35.15,22.46,17.57,39.59,1.29,0.0,1.8868,0.9346000000000001,0.9568,2.1685,0.525,1.6949,27.572,21.525,5.0673,0.0,0.0,24.7407,12.0911,8.9761,24.83,12.09,12.24,27.53,0.92,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,73.53,14044.71,19640.03,47.37,1.0,47.37,65.16,65.16,0.0,45.32,1.0,45.32,65.16,65.16,0.0,61.94,133.933,80.6825,130.2487,0.26714,0.9549,1.0184,1.0,0.9725,1.0,62.024,0.0,0.0,43.42,39.870000000000005,9.92,38.16,22.990000000000002,17.57,39.59,1.14,0.0,1.8883999999999999,0.9105000000000001,0.9568,2.1685,0.525,1.6949,26.6242,20.6449,5.0673,0.0,0.0,23.982,11.9031,8.9761,24.080000000000002,11.899999999999999,12.24,27.53,0.82,0.0,2.0824,0.4876,1.3419,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house039.xml,50.46,157.876,139.2798,157.4773,0.09392,0.9785,1.0194,1.0,0.9975,0.5705,103.1848,44.319,0.0,73.77000000000001,20.45,16.5,117.65,13.33,29.69,47.17,0.0,0.0,2.4122,1.1926999999999999,1.0485,3.8463000000000003,0.7875000000000001,1.8868,78.1751,10.0071,15.1257,0.0,0.0,124.6853,6.524,27.2203,127.85000000000001,6.52,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013,207.09,23070.4,11168.54,54.26,1.0,54.26,88.44,88.44,0.0,49.73,1.0,49.73,88.44,88.44,0.0,73.15,172.198,138.7674,171.7632,0.09392,0.9785,1.0194,1.0,0.9975,0.9054,102.8294,9.7273,0.0,88.08,20.45,16.5,140.44,13.360000000000001,29.69,47.16,0.0,0.0,2.4128,1.1919,1.0485,3.8463000000000003,0.7875000000000001,1.8868,77.8629,9.8088,15.1257,0.0,0.0,124.1451,6.402,27.2203,127.3,6.4,24.88,35.97,0.0,0.0,3.5417,0.8958999999999999,1.6667,3.2829,1.209,11.427,0.0,1.1877,1.013 +house040.xml,63.71,195.66,119.2775,187.2055,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.541,0.0,0.0,125.27,12.49,11.06,199.62,8.01,19.45,44.92,1.91,0.0,0.8046,0.4096,0.9804,1.2821,0.2625,1.7241,63.6844,14.1064,7.1827,0.0,0.0,101.4788,9.0421,12.6309,112.21,9.04,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,74.89,29247.86,40815.69,52.87,1.0,52.87,63.71,63.71,0.0,49.75,1.0,49.75,63.71,63.71,0.0,58.88,211.199,118.9735,202.0731,0.18491,0.9568,1.0,1.0,0.9568,1.0,92.2732,0.0,0.0,141.16,12.15,11.06,224.93,7.74,19.46,44.92,1.91,0.0,0.8046,0.4122,0.9799,1.2821,0.2625,1.7241,63.4641,14.027,7.1795,0.0,0.0,101.1279,8.9331,12.6317,111.82,8.93,15.31,32.2,2.11,0.0,1.0363,0.2625,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house041.xml,79.6,72.74,59.2674,74.4612,0.13115,1.0035,1.009,1.011,1.0237,1.0,48.1614,0.0,0.0,25.93,8.18,12.53,41.34,5.19,20.93,26.11,0.0,0.0,0.804,0.414,1.0143,1.2821,0.2625,1.6949,17.9131,6.1569,11.5724,0.0,0.0,28.5641,3.904,19.337,30.79,3.9,20.39,23.35,0.28,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.48,9783.61,5354.95,52.97,1.0,52.97,79.6,79.6,0.0,46.88,1.0,46.88,79.6,79.6,0.0,74.72,75.382,57.657,77.1657,0.13115,1.0035,1.009,1.011,1.0237,1.0,46.966,0.0,0.0,28.65,8.1,12.53,45.67,5.15,20.94,26.11,0.0,0.0,0.8042,0.4127,1.014,1.2821,0.2625,1.6949,16.6472,6.0951,11.5658,0.0,0.0,26.54,3.877,19.3332,28.61,3.88,20.38,23.35,0.0,0.0,1.087,0.2844,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house042.xml,87.78,114.928,100.64,114.6487,0.21954,0.9827,1.0151,1.0,0.9976,1.0,75.9152,0.0,0.0,50.3,21.03,11.38,80.28,12.92,19.73,32.22,0.0,0.0,0.8033,0.4273,0.9946,1.2821,0.2625,1.7241,48.9224,16.2291,8.3456,0.0,0.0,78.0836,9.9721,14.4675,78.9,9.97,15.56,27.08,0.07,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,113.78,20626.26,18172.31,50.09,1.0,50.09,87.78,87.78,0.0,47.02,1.0,47.02,87.78,87.78,0.0,81.21,122.666,99.3696,122.3679,0.21954,0.9827,1.0151,1.0,0.9976,1.0,75.411,0.0,0.0,58.04,21.03,11.38,92.64,13.36,19.75,32.22,0.0,0.0,0.8032,0.4133,0.9939,1.2821,0.2625,1.7241,48.392,15.5615,8.3401,0.0,0.0,77.2405,9.8861,14.4675,78.05,9.89,15.56,27.08,0.0,0.0,1.25,0.2625,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house043.xml,-8.03,52.036,21.9131,53.8605,0.30156,1.0351,1.0,1.0,1.0351,-0.1974,20.652,24.729,0.0,13.01,5.35,10.49,10.37,2.8,11.8,20.92,2.26,0.0,0.556,0.5015,0.9879,0.4432,0.2625,1.1111,1.3598,2.5652,2.3731,0.0,0.0,1.084,1.343,2.669,1.08,1.34,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.6,24.95,4017.53,53.47,1.0,53.47,40.68,40.68,1.0,47.88,1.0,47.88,40.68,40.68,1.0,35.79,56.146,21.8916,58.1146,0.30156,1.0351,1.0,1.0,1.0351,0.95,20.622,1.0311,0.0,17.24,5.24,10.49,13.34,2.76,11.8,20.91,2.26,0.0,0.5729,0.4993,0.9875,0.4432,0.2625,1.1111,1.3868,2.5179,2.373,0.0,0.0,1.073,1.324,2.67,1.07,1.32,2.61,14.82,0.79,0.0,0.3846,0.5505,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 +house044.xml,69.13,42.882,31.2522,45.2071,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.7512,0.0,0.0,19.12,3.37,6.35,30.53,2.8,7.66,13.71,0.34,0.0,0.8028,0.3154,0.9207,1.2821,0.2625,1.1111,14.5652,2.2309,4.5241,0.0,0.0,23.2595,1.857,5.4597,25.57,1.86,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.24,7639.19,9381.35,52.34,1.0,52.34,69.13,69.13,0.0,48.58,1.0,48.58,69.13,69.13,0.0,66.92,44.164,31.1582,46.5586,0.16597,1.0641,0.9771,1.0139,1.0542,1.0,27.7092,0.0,0.0,20.47,3.3,6.35,32.67,2.81,7.66,13.7,0.34,0.0,0.8034,0.3088,0.9205,1.2821,0.2625,1.1111,14.5352,2.1691,4.5229,0.0,0.0,23.194,1.844,5.4597,25.5,1.84,5.34,9.41,0.52,0.0,1.0471,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +house045.xml,88.87,180.527,154.0043,173.2893,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.918,0.0,0.0,75.15,43.11,12.22,56.3,24.76,21.3,50.05,0.0,0.0,0.5916,0.4571,1.9438,0.4432,0.2625,3.3898,64.4161,31.5716,13.7026,0.0,0.0,48.2604,18.1322,23.895,48.26,18.13,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026,100.01,25510.85,26573.98,49.65,1.0,49.65,88.87,88.87,0.0,45.74,1.0,45.74,88.87,88.87,0.0,82.9,190.746,151.787,183.0986,0.22048,0.9416,1.0304,0.9893,0.9599,1.0,124.34,0.0,0.0,85.89,42.59,12.22,64.22,25.71,21.3,50.05,0.0,0.0,0.5929,0.435,1.9438,0.4432,0.2625,3.3898,63.966,29.8051,13.702,0.0,0.0,47.8244,17.9892,23.895,47.82,17.99,33.3,39.83,4.48,0.0,0.4015,0.2275,2.6512,2.2561,0.0,3.809,0.0,2.3754,2.026 +house046.xml,-4.25,132.79,49.2208,132.1345,0.27804,0.9896,1.0192,0.9866,0.9951,-0.1142,46.132,51.401,0.0,75.5,12.03,12.93,62.76,6.74,13.96,29.19,3.15,0.0,0.5333,0.4682,1.0064,0.4432,0.2625,1.087,16.3176,2.5395,9.7587,0.0,0.0,13.5631,1.424,10.54,13.56,1.42,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0,9.85,2776.95,28332.66,50.21,1.0,50.21,37.25,37.25,1.0,44.19,1.0,44.19,37.25,37.25,1.0,32.42,144.398,49.0383,143.6851,0.27804,0.9896,1.0192,0.9866,0.9951,0.95,46.057,2.3029,0.0,87.46,11.68,12.93,72.54,6.88,13.97,29.18,3.15,0.0,0.5344,0.4459,1.0062,0.4432,0.2625,1.087,16.2769,2.3998,9.7566,0.0,0.0,13.5001,1.413,10.54,13.5,1.41,10.54,17.56,3.05,0.0,0.3047,0.141,1.1322,2.2561,0.0,3.809,0.0,0.92,0.0 +house047.xml,63.75,84.037,53.8061,84.3972,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.9912,0.0,0.0,32.64,9.12,10.49,51.98,5.61,11.8,30.7,1.09,0.0,0.805,0.427,0.9872,1.2821,0.2625,1.1111,26.1515,3.8613,2.4723,0.0,0.0,41.6517,2.374,2.7825,45.67,2.37,2.72,20.95,0.37,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,170.66,10571.79,6168.11,58.46,1.0,58.46,63.75,63.75,0.0,53.21,1.0,53.21,63.75,63.75,0.0,58.65,90.492,53.3,90.8798,0.20911,0.987,1.0,1.0175,1.0043,1.0,42.6352,0.0,0.0,39.19,9.07,10.49,62.42,5.6,11.81,30.69,1.05,0.0,0.805,0.4253,0.9868,1.2821,0.2625,1.1111,25.7494,3.7732,2.4703,0.0,0.0,41.0087,2.329,2.7815,44.96,2.33,2.72,20.95,0.36,0.0,1.0526,0.2625,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 +house048.xml,66.12,98.501,68.8748,104.1695,0.33383,1.0286,1.0,1.0282,1.0575,1.0,46.4542,0.0,0.0,1.98,65.91,5.6,3.18,37.75,10.94,24.41,0.6,0.0,0.8003,0.4584,0.883,1.2821,0.2625,1.7241,0.4973,44.1209,3.7456,0.0,0.0,0.7966,25.2692,7.3139,0.81,25.27,7.58,19.72,0.79,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,82.94,6734.48,7677.91,50.82,1.0,50.82,66.12,66.12,0.0,46.26,1.0,46.26,66.12,66.12,0.0,65.24,98.714,68.1034,104.3948,0.33383,1.0286,1.0,1.0282,1.0575,1.0,45.989,0.0,0.0,2.1,66.11,5.6,3.36,37.91,10.94,24.4,0.51,0.0,0.8005,0.4578,0.883,1.2821,0.2625,1.7241,0.4356,43.5317,3.7461,0.0,0.0,0.6977,24.9662,7.3149,0.71,24.97,7.58,19.73,0.66,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house049.xml,52.33,43.646,24.0158,45.8936,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6688,0.0,0.0,13.9,3.13,7.97,10.16,1.6,16.62,17.28,1.37,0.0,0.6061,0.515,0.813,0.4432,0.2625,1.6949,4.7915,1.1045,2.9789,0.0,0.0,3.504,0.563,6.2103,3.5,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013,89.66,2584.11,2741.09,49.1,1.0,49.1,52.33,52.33,0.0,44.14,1.0,44.14,52.33,52.33,0.0,51.23,44.554,24.0027,46.8484,0.22432,1.0483,0.9845,1.0188,1.0515,1.0,22.6408,0.0,0.0,14.88,3.06,7.97,10.81,1.57,16.62,17.27,1.37,0.0,0.6101,0.5125,0.813,0.4432,0.2625,1.6949,4.7876,1.0952,2.9789,0.0,0.0,3.478,0.561,6.2103,3.48,0.56,8.65,12.99,2.15,0.0,0.3835,0.1896,1.3256,2.2561,0.0,3.809,0.0,1.1877,1.013 +house050.xml,86.57,66.554,58.5459,67.6247,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.4174,0.0,0.0,21.39,4.94,11.91,34.1,3.23,21.35,27.26,1.05,0.0,0.8043,0.4021,0.9618,1.2821,0.2625,1.7241,9.1009,4.2246,8.3984,0.0,0.0,14.5072,2.758,15.0553,15.91,2.76,15.6,22.79,14.03,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,178.0,7502.51,4148.05,55.68,1.0,55.68,86.57,86.57,0.0,50.42,1.0,50.42,86.57,86.57,0.0,81.93,69.979,58.2531,71.1048,0.16668,1.0045,1.0115,1.0,1.0161,1.0,50.2468,0.0,0.0,25.08,4.7,11.91,39.98,3.13,21.36,27.25,1.04,0.0,0.8043,0.3944,0.9617,1.2821,0.2625,1.7241,9.016,4.0896,8.3976,0.0,0.0,14.3722,2.722,15.0553,15.76,2.72,15.6,22.79,13.96,0.0,1.0526,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house051.xml,55.17,45.502,25.7074,46.5972,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.4128,0.0,0.0,11.33,2.82,9.97,8.55,1.45,18.47,20.61,0.77,0.0,0.5871,0.5109,0.9154,0.4432,0.2625,1.6949,5.6293,0.4515,2.0156,0.0,0.0,4.25,0.232,3.7319,4.25,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013,91.42,2727.36,2913.14,51.65,1.0,51.65,55.17,55.17,0.0,46.31,1.0,46.31,55.17,55.17,0.0,52.64,47.811,25.7718,48.9618,0.17685,1.0241,1.0,1.0,1.0241,1.0,25.3748,0.0,0.0,13.85,2.62,9.97,10.23,1.36,18.47,20.6,0.77,0.0,0.6001,0.5039,0.9153,0.4432,0.2625,1.6949,5.7049,0.4415,2.0154,0.0,0.0,4.214,0.23,3.7319,4.21,0.23,8.31,16.47,1.14,0.0,0.2528,0.1119,1.0979,2.2561,0.0,3.809,0.0,1.1877,1.013 +house052.xml,58.74,44.435,27.6264,47.0315,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.764,0.0,0.0,13.18,1.71,10.35,9.57,0.81,11.95,18.54,0.66,0.0,0.6108,0.5519,0.9621,0.4432,0.2625,1.1111,6.0766,0.2397,7.1501,0.0,0.0,4.41,0.114,8.2575,4.41,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0,59.35,1794.86,2857.0,53.21,1.0,53.21,58.74,58.74,0.0,48.04,1.0,48.04,58.74,58.74,0.0,57.08,45.759,27.6479,48.4329,0.1934,1.0415,1.0,1.0162,1.0584,1.0,26.736,0.0,0.0,14.64,1.59,10.35,10.52,0.76,11.95,18.53,0.65,0.0,0.6168,0.549,0.9621,0.4432,0.2625,1.1111,6.1004,0.2384,7.1501,0.0,0.0,4.384,0.114,8.2575,4.38,0.11,8.08,12.9,1.26,0.0,0.3103,0.1681,1.0417,2.2561,0.0,3.809,0.0,0.92,0.0 +house053.xml,70.85,66.058,47.6156,67.2068,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.6948,0.0,0.0,21.53,4.79,11.91,34.32,3.15,21.31,26.94,0.88,0.0,0.8042,0.3988,0.9639,1.2821,0.2625,1.7241,13.1857,3.0469,8.0599,0.0,0.0,21.0198,2.006,14.4175,22.66,2.01,14.94,22.36,0.96,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,177.71,7445.46,4117.94,55.53,1.0,55.53,70.85,70.85,0.0,50.31,1.0,50.31,70.85,70.85,0.0,66.53,69.589,47.1015,70.7992,0.16733,1.0058,1.0115,1.0,1.0174,1.0,38.3558,0.0,0.0,25.37,4.55,11.91,40.43,3.06,21.31,26.93,0.83,0.0,0.8043,0.3908,0.9637,1.2821,0.2625,1.7241,12.7659,3.0132,8.0584,0.0,0.0,20.35,2.024,14.4175,21.94,2.02,14.94,22.36,0.9,0.0,1.087,0.2625,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house054.xml,62.31,170.326,108.5317,174.1722,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.725,0.0,0.0,3.6599999999999997,120.32,7.75,5.85,69.28,13.54,37.12,1.49,0.0,1.601,0.9109,0.9696,2.5642,0.525,1.6949,1.3353,75.6645,1.8359,0.0,0.0,2.1385,43.5644,3.2093,2.16,43.57,6.46,28.17,1.52,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,71.75,9820.77,13385.79,49.89,1.0,49.89,62.31,62.31,0.0,45.24,1.0,45.24,62.31,62.31,0.0,61.61,171.057,107.7747,174.9198,0.33482,0.9506,1.0462,1.0282,1.0226,1.0,76.328,0.0,0.0,3.92,120.86000000000001,7.75,6.27,69.7,13.54,37.11,1.42,0.0,1.6011,0.9094,0.9696,2.5642,0.525,1.6949,1.2475,75.0583,1.8359,0.0,0.0,1.998,43.2874,3.2093,2.02,43.29,6.46,28.18,1.46,0.0,2.5,0.4876,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 +house055.xml,63.56,95.903,64.6077,101.6519,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.8158,0.0,0.0,2.0,65.22,5.6,3.2,37.28,10.67,22.28,0.81,0.0,0.8005,0.4593,0.8897,1.2821,0.2625,1.6949,0.9448,42.3604,1.6855,0.0,0.0,1.5131,24.2142,3.2109,1.53,24.21,5.9,18.59,1.03,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013,76.23,6170.64,7637.44,48.95,1.0,48.95,63.56,63.56,0.0,44.51,1.0,44.51,63.56,63.56,0.0,63.09,96.111,64.2738,101.8724,0.3385,1.0305,1.0,1.0286,1.0599,1.0,46.6314,0.0,0.0,2.07,65.37,5.6,3.32,37.39,10.67,22.28,0.8,0.0,0.8005,0.4589,0.8897,1.2821,0.2625,1.6949,0.9059,42.0824,1.6855,0.0,0.0,1.4508,24.0732,3.2109,1.47,24.07,5.9,18.59,1.01,0.0,1.25,0.2275,1.1688,1.0943,0.403,3.809,0.0,1.1877,1.013 +house056.xml,62.74,73.459,46.5867,74.2534,0.20078,0.997,1.0139,1.0,1.0108,1.0,41.0024,0.0,0.0,26.08,5.19,11.91,41.74,3.46,20.92,29.21,1.07,0.0,1.6101,0.3938,0.9649,2.5642,0.2625,1.6949,13.508799999999999,2.8938,3.3671,0.0,0.0,21.607400000000002,1.929,5.9145,23.27,1.93,11.91,24.13,2.69,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013,162.21,7315.16,4461.44,54.96,1.0,54.96,62.74,62.74,0.0,49.71,1.0,49.71,62.74,62.74,0.0,58.69,77.844,46.1769,78.6858,0.20078,0.997,1.0139,1.0,1.0108,1.0,40.7362,0.0,0.0,30.770000000000003,4.92,11.91,49.230000000000004,3.35,20.93,29.2,1.04,0.0,1.6084,0.3862,0.9648,2.5642,0.2625,1.6949,13.2444,2.8196,3.3668,0.0,0.0,21.1849,1.917,5.9145,22.82,1.92,11.91,24.13,2.62,0.0,2.4690000000000003,0.2625,1.1322,2.1886,0.806,3.809,0.0,1.1877,1.013 +house057.xml,82.32,57.408,47.932,58.2295,0.16061,1.0143,1.0,1.0,1.0143,1.0,42.4446,0.0,0.0,18.79,4.15,9.97,29.96,2.83,11.53,23.76,0.74,0.0,0.8042,0.3853,0.9611,1.2821,0.2625,1.1111,9.788,4.3119,2.8551,0.0,0.0,15.6031,2.938,3.3008,17.2,2.94,3.23,18.95,12.03,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0,142.83,5207.29,3594.32,57.91,1.0,57.91,82.32,82.32,0.0,53.13,1.0,53.13,82.32,82.32,0.0,76.79,60.31,46.9744,61.1731,0.16061,1.0143,1.0,1.0,1.0143,1.0,41.6246,0.0,0.0,21.95,3.95,9.97,34.98,2.74,11.53,23.75,0.69,0.0,0.8043,0.3777,0.9611,1.2821,0.2625,1.1111,9.6862,4.1402,2.8559,0.0,0.0,15.4399,2.878,3.3018,17.02,2.88,3.23,18.95,11.34,0.0,1.0417,0.2625,0.3571,1.0943,0.403,3.809,0.0,0.92,0.0 +house058.xml,64.64,122.068,79.8864,123.5777,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.7926,0.0,0.0,3.5,82.48,6.68,5.61,47.62,12.49,28.44,0.97,0.0,0.8003,0.4547,0.9225,1.2821,0.2625,1.7241,1.2472,50.638,5.6172,0.0,0.0,1.998,29.2373,10.4981,2.02,29.24,10.88,21.4,0.99,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,79.92,7858.11,9712.73,50.78,1.0,50.78,64.64,64.64,0.0,46.17,1.0,46.17,64.64,64.64,0.0,63.19,123.578,79.0501,125.1064,0.3337,0.9896,1.023,1.0,1.0124,1.0,56.3792,0.0,0.0,4.05,83.53,6.68,6.48,48.41,12.49,28.43,0.89,0.0,0.8003,0.4529,0.9224,1.2821,0.2625,1.7241,1.1311,49.9987,5.6163,0.0,0.0,1.812,28.9813,10.4981,1.83,28.98,10.88,21.4,0.91,0.0,1.25,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house059.xml,55.25,35.113,20.8305,37.7036,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.6486,0.0,0.0,7.78,2.94,7.97,6.04,1.48,15.04,16.0,0.42,0.0,0.5709,0.5221,0.8987,0.4432,0.2625,1.6949,3.7302,0.8909,2.0045,0.0,0.0,2.896,0.448,3.7805,2.9,0.45,6.95,14.08,0.13,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013,104.3,2428.55,2168.37,50.59,1.0,50.59,55.25,55.25,0.0,46.23,1.0,46.23,55.25,55.25,0.0,54.28,35.705,20.8111,38.3393,0.19103,1.071,0.9868,1.016,1.0738,1.0,18.5946,0.0,0.0,8.47,2.86,7.97,6.48,1.44,15.05,16.0,0.4,0.0,0.5794,0.52,0.8981,0.4432,0.2625,1.6949,3.7216,0.8853,2.0031,0.0,0.0,2.847,0.447,3.7805,2.85,0.45,6.95,14.08,0.12,0.0,0.273,0.1896,1.1688,2.2561,0.0,3.809,0.0,1.1877,1.013 +house060.xml,71.09,113.163,81.3164,114.3774,0.23098,0.9795,1.0319,1.0,1.0107,1.0,60.1034,0.0,0.0,32.08,33.58,11.5,51.32,20.1,19.92,36.01,0.0,0.0,1.6029,0.8773,0.995,2.5642,0.525,1.7241,25.7767,20.027900000000002,7.9589,0.0,0.0,41.235299999999995,11.987200000000001,13.7916,41.67,11.99,13.79,27.35,0.2,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013,88.89,15586.55,17347.56,50.12,1.0,50.12,71.09,71.09,0.0,46.41,1.0,46.41,71.09,71.09,0.0,67.83,115.912,79.4726,117.1559,0.23098,0.9795,1.0319,1.0,1.0107,1.0,59.1438,0.0,0.0,34.96,33.44,11.5,55.91,20.52,19.92,36.01,0.0,0.0,1.6037,0.8559,0.9949,2.5642,0.525,1.7241,25.0257,19.1348,7.9581,0.0,0.0,40.0141,11.738199999999999,13.7916,40.44,11.74,13.79,27.35,0.0,0.0,2.5,0.4876,1.6667,2.1886,0.806,7.618,0.0,1.1877,1.013 +house061.xml,66.67,27.402,19.4607,29.1875,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.2968,0.0,0.0,4.91,3.05,5.78,7.83,1.77,6.8,13.47,0.19,0.0,0.804,0.4531,0.9248,1.2821,0.2625,1.087,5.6096,0.7645,3.9607,0.0,0.0,8.9451,0.443,4.655,9.81,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0,94.78,2994.13,2965.7,59.97,1.0,59.97,66.67,66.67,0.0,50.96,1.0,50.96,66.67,66.67,0.0,64.31,28.31,19.3936,30.1547,0.2036,1.0775,0.9719,1.0171,1.0652,1.0,18.2622,0.0,0.0,5.95,2.98,5.78,9.48,1.77,6.8,13.46,0.13,0.0,0.8041,0.4426,0.9243,1.2821,0.2625,1.087,5.5759,0.7333,3.9583,0.0,0.0,8.8904,0.435,4.655,9.75,0.44,4.66,8.94,0.18,0.0,1.0526,0.2438,1.1442,1.0943,0.403,3.809,0.0,0.92,0.0 +house062.xml,74.69,38.174,30.3533,40.6364,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,26.031,0.0,0.0,9.63,8.95,5.18,7.42,5.1,6.18,14.41,0.0,0.0,0.5753,0.4608,0.911,0.4432,0.2625,1.087,10.5349,6.2119,3.9835,0.0,0.0,8.1161,3.539,4.753,8.12,3.54,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.25,4609.88,5755.1,49.37,1.0,49.37,74.69,74.69,0.0,45.89,1.0,45.89,74.69,74.69,0.0,74.08,38.337,30.2332,40.8099,0.24881,1.0798,0.9657,1.0209,1.0645,1.0,25.959,0.0,0.0,9.81,8.94,5.18,7.55,5.12,6.18,14.41,0.0,0.0,0.5764,0.4581,0.911,0.4432,0.2625,1.087,10.4843,6.1424,3.9835,0.0,0.0,8.0631,3.52,4.753,8.06,3.52,4.75,9.62,0.0,0.0,0.4162,0.2438,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house063.xml,78.22,89.602,70.4779,90.1037,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,52.3502,0.0,0.0,16.56,40.19,6.02,26.52,23.58,12.48,26.01,0.83,0.0,0.8005,0.4475,0.8313,1.2821,0.2625,1.7241,14.0471,27.1341,4.2487,0.0,0.0,22.4979,15.9181,8.8124,22.73,15.92,9.48,20.83,4.22,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,105.35,10937.94,10325.01,49.31,1.0,49.31,78.22,78.22,0.0,46.44,1.0,46.44,78.22,78.22,0.0,75.63,90.813,69.0662,91.3215,0.25331,1.0021,0.9825,1.0213,1.0056,1.0,51.6352,0.0,0.0,17.66,40.34,6.02,28.28,24.04,12.48,26.01,0.79,0.0,0.8005,0.4406,0.8313,1.2821,0.2625,1.7241,13.6285,26.382,4.2487,0.0,0.0,21.826,15.7201,8.8124,22.06,15.72,9.48,20.83,3.97,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house064.xml,71.04,74.794,55.268,77.794,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,40.499,0.0,0.0,14.49,32.35,6.02,23.21,19.04,12.17,21.4,0.53,0.0,0.8005,0.4462,0.8377,1.2821,0.2625,1.6949,11.0734,21.0801,3.9385,0.0,0.0,17.7349,12.4041,7.9687,17.92,12.4,8.4,16.81,2.37,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,96.97,8655.73,8582.2,53.93,1.0,53.93,71.04,71.04,0.0,50.71,1.0,50.71,71.04,71.04,0.0,68.21,75.796,53.7719,78.8362,0.27442,1.0363,0.9811,1.0231,1.0401,1.0,39.6336,0.0,0.0,15.44,32.48,6.02,24.72,19.42,12.17,21.4,0.47,0.0,0.8006,0.439,0.8377,1.2821,0.2625,1.6949,10.6049,20.4135,3.9385,0.0,0.0,16.9828,12.2071,7.9687,17.16,12.21,8.4,16.81,2.01,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house065.xml,76.49,97.811,77.458,101.2656,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,58.1088,0.0,0.0,16.6,41.92,8.98,26.58,25.14,16.32,29.28,1.05,0.0,0.8003,0.4378,0.9484,1.2821,0.2625,1.7241,15.0404,27.0602,6.2813,0.0,0.0,24.0932,16.2291,11.419,24.35,16.23,12.28,24.31,4.77,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013,103.13,12216.82,11441.85,47.97,1.0,47.97,76.49,76.49,0.0,45.18,1.0,45.18,76.49,76.49,0.0,74.26,99.119,76.208,102.6198,0.25226,0.9965,1.0174,1.0212,1.0353,1.0,57.4874,0.0,0.0,17.76,42.1,8.98,28.46,25.61,16.32,29.27,1.01,0.0,0.8004,0.4315,0.9484,1.2821,0.2625,1.7241,14.6567,26.384,6.2813,0.0,0.0,23.4776,16.0511,11.419,23.72,16.05,12.28,24.31,4.58,0.0,1.25,0.2133,1.5625,1.0943,0.403,3.809,0.0,1.1877,1.013 +house066.xml,74.1,73.08,56.776,76.6168,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.391,0.0,0.0,12.04,30.81,7.52,8.89,17.9,8.75,21.92,0.79,0.0,0.6005,0.452,0.9549,0.4432,0.2625,1.1111,8.3194,21.441,5.6426,0.0,0.0,6.1411,12.4531,6.5657,6.14,12.45,6.42,17.79,3.58,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,75.43,6926.65,8758.64,43.98,1.0,43.98,74.1,74.1,0.0,42.25,1.0,42.25,74.1,74.1,0.0,72.56,73.832,56.1673,77.4052,0.26196,1.0258,1.0,1.022,1.0484,1.0,46.102,0.0,0.0,12.71,30.91,7.52,9.36,18.15,8.75,21.91,0.78,0.0,0.602,0.4472,0.9549,0.4432,0.2625,1.1111,8.1937,21.0341,5.6426,0.0,0.0,6.0331,12.3491,6.5657,6.03,12.35,6.42,17.79,3.51,0.0,0.3792,0.2275,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house067.xml,60.48,86.431,54.1709,89.5717,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.545,0.0,0.0,15.34,36.99,7.52,24.57,22.05,14.11,25.79,0.8,0.0,0.8003,0.4405,0.9034,1.2821,0.2625,1.6949,9.8685,21.1275,2.9799,0.0,0.0,15.8081,12.5931,5.5908,15.97,12.59,7.79,19.62,0.58,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,81.81,8507.44,10034.24,48.76,1.0,48.76,60.48,60.48,0.0,45.91,1.0,45.91,60.48,60.48,0.0,58.48,87.795,53.2088,90.9852,0.29316,1.0114,1.0,1.0247,1.0363,1.0,40.159,0.0,0.0,16.57,37.17,7.52,26.55,22.55,14.11,25.79,0.75,0.0,0.8004,0.4327,0.9033,1.2821,0.2625,1.6949,9.566,20.5053,2.9795,0.0,0.0,15.3232,12.4421,5.5908,15.48,12.44,7.79,19.62,0.54,0.0,1.25,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house068.xml,74.6,117.74,85.7443,114.9319,0.2515,0.9761,1.0,1.0,0.9761,1.0,65.0466,0.0,0.0,24.83,51.57,7.52,39.769999999999996,30.740000000000002,14.44,32.85,0.98,0.0,1.6014,0.873,0.8979,2.5642,0.525,1.7241,17.913600000000002,29.174500000000002,5.2853,0.0,0.0,28.6909,17.3911,10.1487,29.0,17.39,10.91,26.89,6.48,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013,102.28,13537.97,13559.04,50.42,1.0,50.42,74.6,74.6,0.0,47.24,1.0,47.24,74.6,74.6,0.0,69.14,121.843,82.2372,118.937,0.2515,0.9761,1.0,1.0,0.9761,1.0,63.1258,0.0,0.0,28.46,52.16,7.52,45.57,32.230000000000004,14.44,32.84,0.86,0.0,1.6014,0.8423,0.8978,2.5642,0.525,1.7241,17.0519,27.4638,5.2845,0.0,0.0,27.310499999999998,16.9691,10.1487,27.599999999999998,16.97,10.91,26.89,5.55,0.0,2.5,0.4266,1.5625,2.1886,0.806,7.618,0.0,1.1877,1.013 +house069.xml,73.17,109.895,79.6134,108.8062,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.4048,0.0,0.0,26.05,46.69,7.52,41.73,27.54,14.16,29.32,0.33,0.0,0.8003,0.4451,0.8996,1.2821,0.2625,1.6949,19.2305,28.3699,5.296,0.0,0.0,30.8077,16.7342,9.9777,31.13,16.73,10.52,22.98,3.74,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,102.67,12693.85,12488.05,56.18,1.0,56.18,73.17,73.17,0.0,52.94,1.0,52.94,73.17,73.17,0.0,69.43,113.917,78.3073,112.7884,0.27549,0.9901,1.0,1.0,0.9901,1.0,58.2624,0.0,0.0,29.67,47.27,7.52,47.54,28.98,14.16,29.31,0.15,0.0,0.8003,0.4282,0.8996,1.2821,0.2625,1.6949,19.1003,27.183,5.296,0.0,0.0,30.5969,16.6672,9.9777,30.92,16.67,10.52,22.98,3.75,0.0,1.25,0.2133,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house070.xml,47.28,181.203,81.4383,172.2649,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.509,0.0,0.0,88.69,25.04,11.77,65.76,14.02,13.08,53.58,2.13,0.0,0.5978,0.4687,0.9994,0.4432,0.2625,1.1111,31.525,5.681,8.2403,0.0,0.0,23.3732,3.182,9.1612,23.37,3.18,8.96,35.53,0.47,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,48.87,8021.26,17265.16,52.08,1.0,52.08,47.28,47.28,1.0,46.09,1.0,46.09,47.28,47.28,0.0,43.15,195.798,80.3255,186.14,0.2012,0.9377,1.0139,1.0,0.9507,1.0,71.01,0.0,0.0,103.81,24.64,11.77,77.29,14.58,13.09,53.57,2.01,0.0,0.5953,0.4437,0.9992,0.4432,0.2625,1.1111,30.8229,5.3001,8.2375,0.0,0.0,22.9492,3.136,9.1601,22.95,3.14,8.96,35.53,0.44,0.0,0.2326,0.1264,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house071.xml,75.6,58.727,46.6824,61.7502,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.3174,0.0,0.0,20.49,8.6,9.85,16.29,4.89,11.46,19.19,0.58,0.0,1.4447,0.4621,0.9555,1.7253,0.2625,1.1111,22.8446,3.7968,7.0929,0.0,0.0,18.1862,2.157,8.2483,18.240000000000002,2.16,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0,76.93,4782.51,5912.03,51.5,1.0,51.5,75.6,75.6,0.0,53.45,1.0,53.45,75.6,75.6,0.0,72.02,61.248,46.3837,64.401,0.1962,1.0345,1.0,1.0165,1.0515,1.0,40.2122,0.0,0.0,23.19,8.49,9.85,18.470000000000002,4.97,11.46,19.19,0.53,0.0,1.4311,0.448,0.9555,1.7253,0.2625,1.1111,22.7027,3.6401,7.0929,0.0,0.0,18.1005,2.133,8.2483,18.15,2.13,8.07,12.56,0.39,0.0,1.6067,0.2275,1.0753,3.3504,0.403,3.809,0.0,0.92,0.0 +house072.xml,61.28,132.363,79.7424,130.1245,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.5244,0.0,0.0,88.41,1.24,10.45,138.79,1.75,18.75,31.12,1.14,0.0,1.3276,0.1865,0.9613,1.7253,0.2625,1.7241,52.3598,0.6711,5.2854,0.0,0.0,80.3385,0.945,9.4796,88.25,0.95,11.49,20.83,0.6,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013,156.1,16206.76,10561.19,55.87,1.0,55.87,61.28,61.28,0.0,49.0,1.0,49.0,61.28,61.28,0.0,55.26,146.247,79.4549,143.7736,0.22811,0.98,0.9843,1.0192,0.9831,1.0,64.2256,0.0,0.0,102.53,1.05,10.45,160.81,1.66,18.77,31.11,1.11,0.0,1.3485,0.1652,0.96,1.7253,0.2625,1.7241,52.1693,0.5952,5.2784,0.0,0.0,79.75120000000001,0.946,9.4796,87.60000000000001,0.95,11.49,20.83,0.58,0.0,2.0395000000000003,0.2438,1.4286,3.3504,0.403,3.809,0.0,1.1877,1.013 +house073.xml,32.73,221.346,114.3829,210.9312,0.16694,0.9421,1.0115,1.0,0.9529,0.6035,90.8834,36.031,0.0,118.89,26.93,11.77,97.69999999999999,15.079999999999998,26.81,61.14,2.62,0.0,1.9848,0.9384,0.9976,2.1364,0.525,2.2727,28.4041,23.735599999999998,14.8433,0.0,0.0,25.015800000000002,13.2841,33.8161,25.830000000000002,13.28,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,68.81,13739.41,20952.65,50.57,1.0,50.57,54.23,54.23,0.0,47.77,1.0,47.77,54.23,54.23,0.0,46.36,237.643,112.3379,226.4614,0.16694,0.9421,1.0115,1.0,0.9529,0.9345,90.5426,5.9298,0.0,135.53,26.59,11.77,112.08,15.76,26.83,61.13,2.62,0.0,1.9764,0.8861,0.9967,2.1364,0.525,2.2727,27.9954,22.112099999999998,14.8305,0.0,0.0,24.822499999999998,13.107099999999999,33.8172,25.630000000000003,13.11,32.46,44.35,3.05,0.0,1.4418,0.4289,1.3889,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 +house074.xml,72.33,78.271,59.6063,82.4113,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.474,0.0,0.0,14.55,33.26,7.52,10.62,19.37,8.67,22.21,0.73,0.0,0.6076,0.4508,0.9528,0.4432,0.2625,1.0989,8.9221,22.8047,5.7265,0.0,0.0,6.5091,13.2811,6.6048,6.51,13.28,6.53,21.33,0.83,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,74.02,7265.62,9322.26,43.82,1.0,43.82,72.33,72.33,0.0,42.15,1.0,42.15,72.33,72.33,0.0,70.46,79.517,58.9924,83.7232,0.24381,1.0318,1.0,1.0205,1.0529,1.0,48.294,0.0,0.0,15.68,33.4,7.52,11.35,19.82,8.67,22.21,0.71,0.0,0.6126,0.4425,0.9528,0.4432,0.2625,1.0989,8.9017,22.2372,5.7265,0.0,0.0,6.4411,13.1941,6.6048,6.44,13.19,6.53,21.33,0.8,0.0,0.3593,0.2167,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +house075.xml,67.11,82.173,57.1995,85.2261,0.21669,1.0219,1.015,1.0,1.0372,1.0,45.469,0.0,0.0,32.55,15.53,11.38,52.0,9.82,19.4,22.71,0.0,0.0,0.8025,0.4151,0.9943,1.2821,0.2625,1.6949,20.4811,8.3521,10.2992,0.0,0.0,32.7183,5.283,17.5566,35.47,5.28,18.51,17.68,0.39,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013,89.59,12051.63,12969.84,46.66,1.0,46.66,67.11,67.11,0.0,43.87,1.0,43.87,67.11,67.11,0.0,61.28,86.099,54.7199,89.2979,0.21669,1.0219,1.015,1.0,1.0372,1.0,43.737,0.0,0.0,36.47,15.54,11.38,58.26,10.06,19.41,22.7,0.0,0.0,0.8026,0.4055,0.9938,1.2821,0.2625,1.6949,18.8146,7.9322,10.2912,0.0,0.0,30.0552,5.135,17.5518,32.58,5.14,18.5,17.68,0.0,0.0,1.0753,0.2438,1.6129,1.0943,0.403,3.809,0.0,1.1877,1.013 +house076.xml,65.66,31.484,21.8604,33.2934,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.1096,0.0,0.0,6.97,4.85,5.78,11.12,3.45,12.13,13.69,0.19,0.0,0.8042,0.3688,0.8083,1.2821,0.2625,1.6949,5.4157,2.9472,2.7976,0.0,0.0,8.6342,2.098,5.8665,9.52,2.1,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013,110.51,3938.28,3370.08,52.65,1.0,52.65,65.66,65.66,0.0,46.97,1.0,46.97,65.66,65.66,0.0,63.89,32.201,21.7569,34.0516,0.1796,1.0683,0.9752,1.0151,1.0575,1.0,19.0726,0.0,0.0,7.83,4.77,5.78,12.48,3.45,12.14,13.68,0.14,0.0,0.8042,0.3628,0.8075,1.2821,0.2625,1.6949,5.3861,2.8769,2.7948,0.0,0.0,8.587,2.082,5.8665,9.47,2.08,7.23,9.99,0.71,0.0,1.0417,0.3427,1.4286,1.0943,0.403,3.809,0.0,1.1877,1.013 +house077.xml,77.39,39.289,32.5336,42.0379,0.20653,1.0669,0.9857,1.0173,1.07,1.0,31.0468,0.0,0.0,9.12,5.06,8.65,14.57,3.62,9.53,15.25,1.21,0.0,0.8023,0.3674,0.9764,1.2821,0.2625,1.0753,5.527,2.6364,6.5863,0.0,0.0,8.8314,1.884,7.2532,9.74,1.88,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0,82.34,7529.68,8547.1,56.19,1.0,56.19,77.39,77.39,0.0,46.4,1.0,46.4,77.39,77.39,0.0,74.37,40.714,32.3995,43.5626,0.20653,1.0669,0.9857,1.0173,1.07,1.0,30.9996,0.0,0.0,10.72,4.89,8.65,17.12,3.59,9.53,15.24,1.22,0.0,0.8025,0.3577,0.976,1.2821,0.2625,1.0753,5.4799,2.552,6.5835,0.0,0.0,8.7543,1.873,7.2532,9.66,1.87,7.33,9.89,7.89,0.0,1.0406,0.2275,1.0753,1.0943,0.403,3.809,0.0,0.92,0.0 +house078.xml,57.41,134.779,76.3792,133.0525,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.3546,0.0,0.0,30.33,57.22,8.98,48.58,32.67,16.25,36.97,1.29,0.0,0.8004,0.4598,0.9359,1.2821,0.2625,1.6949,13.9245,30.4145,3.7552,0.0,0.0,22.303,17.3652,6.8003,24.45,17.37,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013,79.57,12015.45,15296.29,53.89,1.0,53.89,57.41,57.41,0.0,50.74,1.0,50.74,57.41,57.41,0.0,54.65,139.36,75.1794,137.5748,0.26731,0.9693,1.0184,1.0,0.9872,1.0,57.2154,0.0,0.0,34.39,57.8,8.98,55.08,34.1,16.25,36.97,1.23,0.0,0.8004,0.445,0.9359,1.2821,0.2625,1.6949,13.834,29.3052,3.7552,0.0,0.0,22.158,17.2892,6.8003,24.29,17.29,9.47,27.69,0.59,0.0,1.0526,0.2133,1.3256,1.0943,0.403,3.809,0.0,1.1877,1.013 +house079.xml,49.27,93.281,44.6366,90.5898,0.21786,0.9711,1.0,1.0,0.9711,1.0,39.199,0.0,0.0,46.24,2.96,10.35,32.44,1.47,12.36,33.73,0.0,0.0,1.26,1.0585,0.9517,0.8864,0.525,1.1364,19.146700000000003,0.2319,2.8421,0.0,0.0,13.421100000000001,0.115,3.3935,13.42,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,49.25,2743.93,5736.79,55.84,1.0,55.84,49.27,49.27,1.0,50.45,1.0,50.45,49.27,49.27,1.0,45.35,101.502,44.6983,98.5736,0.21786,0.9711,1.0,1.0,0.9711,1.0,39.106,0.0,0.0,54.85,2.58,10.35,38.08,1.3,12.36,33.72,0.0,0.0,1.2735,1.0396,0.9516,0.8864,0.525,1.1364,19.215600000000002,0.2258,2.8419,0.0,0.0,13.331100000000001,0.114,3.3935,13.329999999999998,0.12000000000000001,3.25,22.42,0.0,0.0,0.6323000000000001,0.33799999999999997,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house080.xml,41.23,144.481,57.9624,140.5731,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.633,0.0,0.0,32.14,63.38,8.98,23.36,37.12,10.83,37.29,2.7,0.0,1.2188,0.8962,0.9641,0.8864,0.525,1.1628,9.6774,21.4671,1.6249,0.0,0.0,7.037,12.5731,1.9598,7.04,12.58,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0,43.11,7097.86,16923.32,46.45,1.0,46.45,41.23,41.23,1.0,44.68,1.0,44.68,41.23,41.23,1.0,38.96,150.436,57.02,146.367,0.27982,0.9545,1.0193,1.0,0.973,1.0,46.511,0.0,0.0,37.2,64.27000000000001,8.98,26.75,39.230000000000004,10.83,37.29,2.7,0.0,1.2328000000000001,0.8599,0.9636,0.8864,0.525,1.1628,9.7061,20.4958,1.625,0.0,0.0,6.978999999999999,12.5091,1.9609,6.98,12.51,1.83,23.84,1.35,0.0,0.6206,0.3792,0.2703,4.5122,0.0,7.618,0.0,0.92,0.0 +house081.xml,65.14,25.582,18.9743,29.1266,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.551,0.0,0.0,5.25,4.27,5.6,4.63,2.48,6.33,10.14,0.32,0.0,0.5032,0.4512,0.9399,0.4432,0.2625,1.0638,3.3241,1.8578,4.7774,0.0,0.0,2.928,1.081,5.4074,2.93,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,67.11,3195.17,4181.55,41.98,1.0,41.98,65.14,65.14,0.0,40.59,1.0,40.59,65.14,65.14,0.0,64.76,25.708,18.955,29.27,0.16923,1.1495,0.9766,1.0142,1.1386,1.0,18.534,0.0,0.0,5.39,4.26,5.6,4.73,2.49,6.34,10.14,0.32,0.0,0.5047,0.4493,0.9397,0.4432,0.2625,1.0638,3.3213,1.843,4.7766,0.0,0.0,2.917,1.077,5.4074,2.92,1.08,5.53,8.72,0.3,0.0,0.2844,0.1452,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 +house082.xml,63.08,159.498,99.106,157.1128,0.26388,0.9504,1.0364,1.0,0.985,1.0,75.2872,0.0,0.0,35.56,68.7,10.4,56.96,39.85,18.4,44.06,0.79,0.0,1.6006,0.9053,0.9584,2.5642,0.525,1.6949,23.9673,36.8951,2.5587,0.0,0.0,38.394000000000005,21.3992,4.5249,41.39,21.4,9.11,30.29,5.39,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013,90.47,16155.86,18128.08,54.93,1.0,54.93,63.08,63.08,0.0,51.61,1.0,51.61,63.08,63.08,0.0,57.4,165.548,93.6065,163.0723,0.26388,0.9504,1.0364,1.0,0.985,1.0,71.8216,0.0,0.0,41.16,69.46,10.4,65.92,41.76,18.4,44.05,0.48,0.0,1.6006,0.8735999999999999,0.9584,2.5642,0.525,1.6949,23.1958,34.336,2.5587,0.0,0.0,37.1584,20.639200000000002,4.5249,40.06,20.64,9.11,30.29,3.22,0.0,2.174,0.4474,1.1322,2.1886,0.806,7.618,0.0,1.1877,1.013 house083.xml,54.4,32.893,20.1394,37.0233,0.32003,1.1466,0.9558,1.027,1.1256,1.0,17.88,0.0,0.0,3.14,12.23,4.42,2.61,7.07,5.4,12.77,0.34,0.0,0.5335,0.4538,0.8905,0.4432,0.2625,1.087,1.6454,6.3603,3.1696,0.0,0.0,1.367,3.68,3.869,1.37,3.68,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0,56.52,2655.56,4174.53,50.52,1.0,50.52,54.4,54.4,0.0,45.55,1.0,45.55,54.4,54.4,0.0,53.65,33.166,20.0273,37.3306,0.32003,1.1466,0.9558,1.027,1.1256,1.0,17.839,0.0,0.0,3.39,12.25,4.42,2.77,7.17,5.4,12.77,0.34,0.0,0.5417,0.4487,0.8903,0.4432,0.2625,1.087,1.6524,6.2428,3.1682,0.0,0.0,1.352,3.653,3.868,1.35,3.65,3.87,8.75,0.22,0.0,0.371,0.2107,1.0753,2.2561,0.0,3.809,0.0,0.92,0.0 house084.xml,12.32,139.757,88.6653,137.0922,0.1644,0.9676,1.0,1.0138,0.9809,0.1904,73.0472,59.137,0.0,71.39,16.04,10.48,116.88,10.61,18.32,39.52,2.32,0.0,0.7634,1.1799,1.9402,1.25,0.7875000000000001,3.3898,43.0073,8.4301,6.6598,0.0,0.0,70.4175,5.583,11.6356,79.18,5.58,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026,130.28,12882.13,10080.55,55.45,1.0,55.45,64.68,64.68,0.0,51.21,1.0,51.21,64.68,64.68,0.0,55.49,148.025,88.441,145.2026,0.1644,0.9676,1.0,1.0138,0.9809,0.9111,72.824,6.4774,0.0,79.71,16.0,10.48,130.15,10.61,18.34,39.52,2.32,0.0,0.7655,1.1758,1.9394,1.25,0.7875000000000001,3.3898,42.9247,8.2903,6.66,0.0,0.0,70.0894,5.51,11.6402,78.81,5.51,14.66,28.92,1.64,0.0,1.0526,0.5688,2.817,1.0943,0.403,11.427,0.0,2.3754,2.026 house085.xml,-25.28,118.944,70.1908,118.2472,0.22585,0.9641,1.0312,1.0,0.9941,-0.4258,59.457,84.775,0.0,52.64,14.0,14.53,39.81,7.08,16.3,37.79,0.0,0.0,1.1657,1.0366,1.0245,0.8864,0.525,1.1494,41.342,1.6151,2.6597,0.0,0.0,31.244300000000003,0.818,2.9842,31.24,0.82,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0,-6.81,-582.44,8607.55,52.6,1.0,52.6,59.36,59.36,0.0,47.34,1.0,47.34,59.36,59.36,0.0,51.59,130.71,70.5689,129.9443,0.22585,0.9641,1.0312,1.0,0.9941,0.95,59.273,2.9637,0.0,64.42,13.99,14.53,47.949999999999996,7.119999999999999,16.3,37.78,0.0,0.0,1.1854,1.032,1.0241,0.8864,0.525,1.1494,41.7763,1.5608,2.6599,0.0,0.0,31.0833,0.794,2.9852,31.09,0.79,2.82,24.57,0.0,0.0,0.5947,0.3102,0.2457,4.5122,0.0,7.618,0.0,0.92,0.0 From dec3d112956b8e26ac4de16760392f49d77ea634 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 10:58:57 -0700 Subject: [PATCH 32/35] Squashed 'hpxml-measures/' changes from fc7bec4e8f..e4a03fb770 e4a03fb770 Merge branch 'average_ceiling_height_default' of https://github.com/NREL/OpenStudio-HPXML into average_ceiling_height_default 024f4d1b3c Update ASHRAE 140 files. 3b42eaeb1b Latest results. git-subtree-dir: hpxml-measures git-subtree-split: e4a03fb770f83ca17c30e323b7d312f9330e666a --- tasks.rb | 1 - workflow/tests/ASHRAE_Standard_140/L100AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L100AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L110AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L110AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L120AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L120AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L130AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L130AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L140AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L140AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L150AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L150AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L155AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L155AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L160AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L160AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L170AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L170AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L200AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L200AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L202AC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L202AL.xml | 1 + workflow/tests/ASHRAE_Standard_140/L302XC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L304XC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L322XC.xml | 1 + workflow/tests/ASHRAE_Standard_140/L324XC.xml | 1 + .../tests/base_results/results_ashrae_140.csv | 8 +-- .../results_workflow_simulations2.csv | 60 +++++++++---------- .../results_workflow_simulations2_bills.csv | 60 +++++++++---------- 30 files changed, 90 insertions(+), 65 deletions(-) diff --git a/tasks.rb b/tasks.rb index e4d75db18..308bebd90 100644 --- a/tasks.rb +++ b/tasks.rb @@ -143,7 +143,6 @@ def apply_hpxml_modification_ashrae_140(hpxml) # --------------------- # hpxml_bldg.site.azimuth_of_front_of_home = nil - hpxml_bldg.building_construction.average_ceiling_height = nil # --------------- # # HPXML Enclosure # diff --git a/workflow/tests/ASHRAE_Standard_140/L100AC.xml b/workflow/tests/ASHRAE_Standard_140/L100AC.xml index 0df9568ff..715ec77c0 100644 --- a/workflow/tests/ASHRAE_Standard_140/L100AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L100AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L100AL.xml b/workflow/tests/ASHRAE_Standard_140/L100AL.xml index 0598454d7..376b6ca5a 100644 --- a/workflow/tests/ASHRAE_Standard_140/L100AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L100AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L110AC.xml b/workflow/tests/ASHRAE_Standard_140/L110AC.xml index 3cc9c04af..34489a8bd 100644 --- a/workflow/tests/ASHRAE_Standard_140/L110AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L110AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L110AL.xml b/workflow/tests/ASHRAE_Standard_140/L110AL.xml index 3627e285b..7f74cb7c0 100644 --- a/workflow/tests/ASHRAE_Standard_140/L110AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L110AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L120AC.xml b/workflow/tests/ASHRAE_Standard_140/L120AC.xml index 06880fd49..b66897ef0 100644 --- a/workflow/tests/ASHRAE_Standard_140/L120AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L120AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L120AL.xml b/workflow/tests/ASHRAE_Standard_140/L120AL.xml index 26e207a6c..f6dd0a7e1 100644 --- a/workflow/tests/ASHRAE_Standard_140/L120AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L120AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L130AC.xml b/workflow/tests/ASHRAE_Standard_140/L130AC.xml index f2063365b..4a661acf8 100644 --- a/workflow/tests/ASHRAE_Standard_140/L130AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L130AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L130AL.xml b/workflow/tests/ASHRAE_Standard_140/L130AL.xml index 76972bdc1..b7a0271e7 100644 --- a/workflow/tests/ASHRAE_Standard_140/L130AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L130AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L140AC.xml b/workflow/tests/ASHRAE_Standard_140/L140AC.xml index 9fcb7318c..b36157001 100644 --- a/workflow/tests/ASHRAE_Standard_140/L140AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L140AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L140AL.xml b/workflow/tests/ASHRAE_Standard_140/L140AL.xml index 113f9900e..a99e83d04 100644 --- a/workflow/tests/ASHRAE_Standard_140/L140AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L140AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L150AC.xml b/workflow/tests/ASHRAE_Standard_140/L150AC.xml index 8d6129cc4..39a6ae2d3 100644 --- a/workflow/tests/ASHRAE_Standard_140/L150AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L150AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L150AL.xml b/workflow/tests/ASHRAE_Standard_140/L150AL.xml index 8efaa8e01..e47062029 100644 --- a/workflow/tests/ASHRAE_Standard_140/L150AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L150AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L155AC.xml b/workflow/tests/ASHRAE_Standard_140/L155AC.xml index c8cc4f0b7..cd84423ad 100644 --- a/workflow/tests/ASHRAE_Standard_140/L155AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L155AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L155AL.xml b/workflow/tests/ASHRAE_Standard_140/L155AL.xml index 17b75de82..8f2e6729f 100644 --- a/workflow/tests/ASHRAE_Standard_140/L155AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L155AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L160AC.xml b/workflow/tests/ASHRAE_Standard_140/L160AC.xml index 42671b28c..2bc09c6a0 100644 --- a/workflow/tests/ASHRAE_Standard_140/L160AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L160AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L160AL.xml b/workflow/tests/ASHRAE_Standard_140/L160AL.xml index 2ceb322e9..08eeedd5e 100644 --- a/workflow/tests/ASHRAE_Standard_140/L160AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L160AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L170AC.xml b/workflow/tests/ASHRAE_Standard_140/L170AC.xml index c665a2f5c..257047938 100644 --- a/workflow/tests/ASHRAE_Standard_140/L170AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L170AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L170AL.xml b/workflow/tests/ASHRAE_Standard_140/L170AL.xml index 168809da4..527198842 100644 --- a/workflow/tests/ASHRAE_Standard_140/L170AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L170AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L200AC.xml b/workflow/tests/ASHRAE_Standard_140/L200AC.xml index 2385013ec..ce9bbc039 100644 --- a/workflow/tests/ASHRAE_Standard_140/L200AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L200AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L200AL.xml b/workflow/tests/ASHRAE_Standard_140/L200AL.xml index 5f8bb705b..2dda55c37 100644 --- a/workflow/tests/ASHRAE_Standard_140/L200AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L200AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L202AC.xml b/workflow/tests/ASHRAE_Standard_140/L202AC.xml index 81610ea60..d161554ea 100644 --- a/workflow/tests/ASHRAE_Standard_140/L202AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L202AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L202AL.xml b/workflow/tests/ASHRAE_Standard_140/L202AL.xml index 23335565a..09260b0a8 100644 --- a/workflow/tests/ASHRAE_Standard_140/L202AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L202AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 172193834..99afe6b0c 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 26826c3fd..8ad696e21 100644 --- a/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/workflow/tests/ASHRAE_Standard_140/L322XC.xml index 949ca82bd..9f7d8a365 100644 --- a/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -29,6 +29,7 @@ single-family detached 2.0 1.0 + 8.0 3 3078.0 24624.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/workflow/tests/ASHRAE_Standard_140/L324XC.xml index 8d0322455..6f5728a7e 100644 --- a/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -29,6 +29,7 @@ single-family detached 2.0 1.0 + 8.0 3 3078.0 24624.0 diff --git a/workflow/tests/base_results/results_ashrae_140.csv b/workflow/tests/base_results/results_ashrae_140.csv index 445aaded3..59c8ab960 100644 --- a/workflow/tests/base_results/results_ashrae_140.csv +++ b/workflow/tests/base_results/results_ashrae_140.csv @@ -7,7 +7,7 @@ L140AC.xml,48.05,N/A L150AC.xml,40.85,N/A L155AC.xml,44.14,N/A L160AC.xml,52.19,N/A -L170AC.xml,62.0,N/A +L170AC.xml,62.01,N/A L200AC.xml,124.27,N/A L202AC.xml,131.27,N/A L302XC.xml,46.87,N/A @@ -20,8 +20,8 @@ L120AL.xml,N/A,47.69 L130AL.xml,N/A,36.35 L140AL.xml,N/A,24.32 L150AL.xml,N/A,64.56 -L155AL.xml,N/A,48.79 +L155AL.xml,N/A,48.78 L160AL.xml,N/A,62.49 -L170AL.xml,N/A,42.11 -L200AL.xml,N/A,64.53 +L170AL.xml,N/A,42.1 +L200AL.xml,N/A,64.52 L202AL.xml,N/A,54.83 diff --git a/workflow/tests/base_results/results_workflow_simulations2.csv b/workflow/tests/base_results/results_workflow_simulations2.csv index 5329ddde3..8db56c190 100644 --- a/workflow/tests/base_results/results_workflow_simulations2.csv +++ b/workflow/tests/base_results/results_workflow_simulations2.csv @@ -39,7 +39,7 @@ base-misc-bills-pv-detailed-only.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0. base-misc-bills-pv-mixed.xml,59.22,32.333,35.594,8.708,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills-pv.xml,59.22,1.956,35.594,-21.669,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-bills.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -base-misc-defaults.xml,64.612,45.26,31.232,11.88,33.38,0.0,0.0,0.0,0.0,0.0,0.0,0.551,0.0,0.0,2.166,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.139,0.0,0.0,1.086,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.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,31.245,0.0,5.183,10.469,0.697,0.0,9.09,0.0,0.0,2331.3,3059.9,3059.9,26.525,15.123,0.0,3.504,3.699,0.52,7.433,1.123,10.361,-12.834,0.0,0.0,0.0,8.186,-0.111,1.515,0.0,15.424,0.0,2.891,-8.185,-2.553,0.0,0.773,-0.041,0.009,3.52,-0.18,-0.151,11.579,0.0,0.0,0.0,-5.136,-0.107,-0.18,0.0,-3.293,-11.676,0.426,8.474,1.954,1610.4,1574.8,10335.5,3642.4,2.9,36000.0,24000.0,0.0,6.8,91.76,31556.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7423.0,15899.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1665.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,64.634,45.282,31.227,11.875,33.407,0.0,0.0,0.0,0.0,0.0,0.0,0.551,0.0,0.0,2.166,0.309,2.078,0.0,0.313,4.507,0.0,0.334,1.133,0.0,0.0,1.087,2.157,0.0,0.0,0.447,0.338,2.514,1.529,0.745,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-19.352,0.0,0.52,33.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,31.27,0.0,5.182,10.469,0.697,0.0,9.09,0.0,0.0,2331.3,3060.0,3060.0,26.536,15.126,0.0,3.504,3.699,0.52,7.432,1.123,10.361,-12.834,0.0,0.0,0.0,8.185,-0.111,1.617,0.0,15.345,0.0,2.893,-8.185,-2.553,0.0,0.771,-0.041,0.009,3.519,-0.18,-0.151,11.579,0.0,0.0,0.0,-5.137,-0.107,-0.192,0.0,-3.276,-11.7,0.426,8.474,1.954,1610.4,1574.8,10335.5,3642.4,2.901,36000.0,24000.0,0.0,6.8,91.76,31601.0,4632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,7468.0,15897.0,1112.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1662.0,3320.0,0.0,0.0,0.0,0.0 base-misc-emissions.xml,60.058,33.172,36.433,9.547,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.839,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2102.2,3963.4,3963.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,13.96,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-generators-battery-scheduled.xml,77.954,69.765,37.329,29.14,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2086.9,3998.4,3998.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,1.729,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-misc-generators-battery.xml,76.22,68.03,35.594,27.405,32.125,8.5,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,23.625,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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 @@ -91,21 +91,21 @@ base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.23,59.23,35 base-simcontrol-timestep-10-mins.xml,59.831,59.831,35.711,35.711,24.12,0.0,0.0,0.0,0.0,0.0,0.0,0.398,0.0,0.0,4.342,0.817,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.587,0.0,14.21,9.071,0.615,0.0,0.0,0.0,0.0,3460.7,5195.8,5195.8,23.727,19.092,0.0,3.594,3.662,0.516,7.569,0.641,10.171,-12.616,0.0,0.0,0.0,8.309,-0.063,4.791,0.0,0.733,0.0,5.262,-7.8,-2.488,0.0,-0.146,-0.463,-0.053,2.772,-0.026,-1.354,11.737,0.0,0.0,0.0,-6.209,-0.059,-1.122,-3.621,-0.168,0.0,3.262,7.782,2.019,1354.7,998.0,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base-simcontrol-timestep-30-mins.xml,59.604,59.604,35.661,35.661,23.943,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.303,0.81,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.421,0.0,14.087,9.071,0.615,0.0,0.0,0.0,0.0,2065.7,3904.6,3904.6,23.648,19.1,0.0,3.576,3.654,0.515,7.542,0.638,10.152,-12.641,0.0,0.0,0.0,8.296,-0.064,4.793,0.0,0.731,0.0,5.198,-7.799,-2.488,0.0,-0.116,-0.458,-0.052,2.768,-0.024,-1.356,11.738,0.0,0.0,0.0,-6.22,-0.06,-1.127,-3.681,-0.166,0.0,3.175,7.783,2.019,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 base.xml,59.22,59.22,35.594,35.594,23.625,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.0,0.0,4.251,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.125,0.0,13.973,9.071,0.615,0.0,0.0,0.0,0.0,2052.4,3884.4,3884.4,23.508,19.176,0.0,3.54,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.807,0.0,0.728,0.0,5.099,-7.8,-2.489,0.0,-0.031,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.137,-3.781,-0.162,0.0,3.101,7.782,2.018,1354.7,998.0,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32706.0,8608.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4597.0,19783.0,6041.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,619.0,3320.0,145.0,0.0,-655.0,800.0 -house001.xml,86.984,86.984,46.492,46.492,40.493,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,15.453,4.241,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.397,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,17.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,19.03,0.0,49.979,10.404,2.678,0.0,0.0,0.0,0.0,1867.8,6837.5,6837.5,38.219,42.718,0.492,1.978,7.261,0.42,0.0,0.979,7.141,-4.994,0.0,0.0,0.479,1.221,-0.303,4.307,0.0,5.157,0.0,3.348,-5.668,-2.928,0.565,2.008,3.783,0.31,0.0,0.243,1.664,11.471,0.0,0.0,0.525,6.858,-0.289,-0.379,-1.822,-0.711,0.0,10.641,10.839,4.448,2104.4,2144.8,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,61222.0,24352.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,8478.0,111472.0,85248.0,9491.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3124.0,3780.0,6863.0,3503.0,2160.0,1200.0 -house002.xml,68.385,68.385,40.431,40.431,27.954,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,14.493,3.319,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48,0.0,13.474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.739,0.0,39.708,7.517,2.89,0.0,0.0,0.0,0.0,1572.0,5480.1,5480.1,24.149,29.925,0.0,2.533,5.044,0.0,0.0,0.843,5.712,-4.099,0.0,0.0,0.0,1.73,-0.167,1.578,0.0,3.789,0.0,1.421,-4.319,-2.485,0.0,3.091,2.827,0.0,0.0,0.42,0.424,8.64,0.0,0.0,0.0,8.475,-0.161,-0.174,-1.342,-0.62,0.0,5.858,8.555,3.893,1610.8,1575.3,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47504.0,15296.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,4987.0,33040.0,14150.0,6700.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,1877.0,3320.0,3850.0,1752.0,1298.0,800.0 -house003.xml,68.973,68.973,39.941,39.941,29.032,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.746,3.478,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.799,0.0,13.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,12.809,0.0,41.523,7.517,2.69,0.0,0.0,0.0,0.0,1652.5,5577.8,5577.8,26.562,33.681,0.651,2.794,4.669,0.0,0.0,0.977,6.242,-3.958,0.0,0.0,0.0,1.054,-0.192,1.997,0.0,3.943,0.0,1.662,-4.504,-2.69,0.794,3.053,2.631,0.0,0.0,0.651,1.117,9.819,0.0,0.0,0.0,6.527,-0.185,-0.209,-1.394,-0.618,0.0,6.501,8.848,4.182,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48036.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41330.0,18341.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3969.0,1752.0,1417.0,800.0 -house004.xml,137.359,137.359,75.334,75.334,62.025,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,29.36,9.26,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.892,0.0,16.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,37.111,0.0,108.66,8.975,3.51,0.0,0.0,0.0,111.0,3078.4,7936.5,7936.5,55.12,52.097,0.128,5.497,11.341,0.0,0.0,1.249,13.711,-5.915,0.0,0.0,0.0,3.063,-0.798,5.046,0.0,6.275,0.0,7.269,-6.21,-3.853,0.198,6.712,11.699,0.0,0.0,0.521,7.53,17.685,0.0,0.0,0.0,18.793,-0.785,1.071,-0.0,1.859,0.0,21.42,14.57,7.703,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76098.0,20960.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52111.0,18520.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4614.0,1285.0,2330.0,1000.0 -house005.xml,95.663,95.663,53.115,53.115,42.548,0.0,0.0,0.0,0.0,0.0,0.0,0.307,0.0,0.0,18.272,5.052,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.338,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.361,0.0,15.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,22.189,0.0,60.606,8.975,2.73,0.0,0.0,0.0,1.0,2101.7,7891.8,7891.8,46.458,53.404,0.0,3.025,8.175,0.268,0.0,1.356,9.416,-6.696,0.0,0.0,0.394,1.238,-0.402,5.051,0.0,5.087,0.0,4.495,-5.795,-3.626,0.0,2.993,4.308,0.213,0.0,0.282,2.413,15.363,0.0,0.0,0.416,7.53,-0.384,-0.458,-2.309,-0.709,0.0,14.553,11.105,5.524,1857.6,1860.1,12229.1,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,70734.0,26913.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,9418.0,64907.0,31861.0,13705.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3406.0,3550.0,6858.0,3503.0,2355.0,1000.0 -house006.xml,139.144,139.144,31.52,31.52,107.624,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,2.877,0.321,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.78,0.0,20.132,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.731,0.0,7.6,13.079,3.28,0.0,0.0,0.0,0.0,2052.4,2856.4,2856.4,40.572,15.233,0.0,4.259,22.26,1.989,37.095,1.863,17.622,-9.439,0.0,0.0,0.0,9.274,-0.35,8.596,0.0,4.365,0.0,0.0,-13.249,-6.365,0.0,0.174,-0.782,-0.044,2.852,-0.083,-0.526,4.337,0.0,0.0,0.0,-3.886,-0.349,-0.433,-1.562,-0.069,0.0,0.0,5.755,2.317,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 -house007.xml,140.0,140.0,33.597,33.597,106.403,0.0,0.0,0.0,0.0,0.0,0.0,1.667,0.0,0.0,2.46,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.738,0.0,23.278,3.047,3.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,72.256,0.0,5.557,15.626,3.272,0.0,0.0,0.0,0.0,2277.8,3040.9,3040.9,39.986,13.672,0.0,4.721,23.685,4.448,10.095,1.499,18.826,-9.395,0.0,0.0,0.076,11.569,-0.41,6.13,0.0,20.834,0.0,2.923,-15.58,-7.667,0.0,0.208,-0.661,-0.045,0.566,-0.043,-0.285,4.554,0.0,0.0,-0.009,-3.955,-0.405,-0.183,-1.312,-1.838,0.0,0.104,6.322,2.626,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44634.0,5476.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11845.0,1099.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 -house008.xml,183.479,183.479,38.868,38.868,144.612,0.0,0.0,0.0,0.0,0.0,0.0,2.497,0.0,0.0,3.539,0.515,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.179,0.0,26.37,3.452,3.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,104.761,0.0,10.105,18.122,3.216,0.0,0.0,0.0,0.0,2558.2,3839.1,3839.1,55.239,21.074,0.0,7.235,27.484,4.711,24.277,1.195,21.311,-7.817,0.0,0.0,1.281,17.85,-0.454,17.348,0.0,6.389,0.0,7.941,-16.733,-8.082,0.0,0.296,-1.105,-0.055,1.651,-0.086,-0.37,5.411,0.0,0.0,-0.108,-2.747,-0.454,-0.881,-1.746,-0.27,0.0,0.532,7.226,2.917,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68488.0,8921.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16084.0,280.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 -house009.xml,155.055,155.055,33.756,33.756,121.299,0.0,0.0,0.0,0.0,0.0,0.0,2.058,0.0,0.0,2.379,0.281,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.165,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.627,0.0,23.285,3.047,3.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,86.336,0.0,5.315,15.626,3.278,0.0,0.0,0.0,0.0,2311.9,3123.5,3123.5,44.411,14.749,0.0,5.104,28.404,4.318,13.019,2.253,18.878,-8.216,0.0,0.0,0.266,15.646,-0.429,8.71,0.0,21.442,0.0,0.0,-15.819,-7.76,0.0,0.245,-0.674,-0.025,0.717,-0.072,-0.165,4.563,0.0,0.0,-0.028,-4.067,-0.425,-0.249,-1.225,-1.764,0.0,0.0,6.058,2.506,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44988.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,10820.0,12507.0,0.0,6052.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 -house010.xml,154.008,154.008,37.241,37.241,116.767,0.0,0.0,0.0,0.0,0.0,0.0,1.872,0.0,0.0,2.836,0.259,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.334,0.0,26.371,3.452,3.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,78.526,0.0,7.197,18.122,3.216,0.0,0.0,0.0,0.0,2494.0,3356.3,3356.3,45.685,16.222,0.874,4.931,25.496,4.913,9.737,1.266,22.965,-9.214,0.0,0.0,0.924,11.4,-0.461,18.579,0.0,6.402,0.0,4.93,-16.743,-8.06,0.022,0.217,-0.731,-0.086,0.534,-0.072,-0.715,5.133,0.0,0.0,-0.048,-4.143,-0.457,-0.913,-1.632,-0.254,0.0,0.331,7.198,2.92,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12826.0,701.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2620.0,261.0,1159.0,1200.0 -house011.xml,45.284,45.284,45.284,45.284,0.0,0.0,0.0,0.0,0.0,0.0,7.448,0.713,0.149,0.007,8.185,2.248,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.948,0.157,25.447,9.316,1.125,0.0,0.0,0.0,332.0,4924.4,3422.3,4924.4,18.655,16.085,0.0,2.676,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.446,-5.243,-2.073,0.0,1.681,1.307,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.569,8.132,2.829,0.0,1860.1,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,21499.0,8186.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3067.0,463.0,1604.0,1000.0 -house012.xml,35.766,35.766,35.766,35.766,0.0,0.0,0.0,0.0,0.0,0.0,4.991,0.265,0.0,0.0,5.712,1.444,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.625,0.0,15.949,7.775,1.158,0.0,0.0,0.0,0.0,2993.8,2816.8,2993.8,11.339,11.448,0.0,2.373,4.775,0.0,0.0,0.632,2.7,-1.856,0.0,0.0,2.027,0.0,-0.272,1.658,0.0,4.397,0.0,0.342,-4.206,-1.936,0.0,1.734,1.133,0.0,0.0,-0.027,0.502,3.486,0.0,0.0,1.579,0.0,-0.272,-0.148,-0.263,-0.688,0.0,0.271,6.26,2.439,0.0,1575.3,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,12005.0,637.0,2706.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1024.0,3320.0,2499.0,370.0,1329.0,800.0 -house013.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.894,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 -house014.xml,31.682,31.682,31.682,31.682,0.0,0.0,0.0,0.0,0.0,0.0,3.625,0.222,0.008,0.0,4.157,1.354,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.212,0.008,16.188,6.844,0.598,0.0,0.0,0.0,0.0,2969.9,2388.9,2969.9,11.22,10.743,0.0,1.698,3.703,0.0,0.0,0.588,3.045,-2.522,0.0,0.0,2.194,0.0,-0.256,1.948,0.0,1.126,0.0,1.628,-3.342,-1.62,0.0,1.14,0.578,0.0,0.0,-0.062,0.582,4.706,0.0,0.0,0.632,0.0,-0.256,-0.253,-0.367,-0.246,0.0,1.629,5.763,2.431,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1683.0,312.0,771.0,600.0 -house015.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.643,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.0,2594.8,10.007,9.894,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.099,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 +house001.xml,87.0,87.0,46.536,46.536,40.464,0.0,0.0,0.0,0.0,0.0,0.0,0.263,0.0,0.0,15.487,4.251,0.0,0.0,0.0,7.376,0.315,0.652,0.448,0.0,0.0,0.0,2.397,0.0,0.0,0.609,0.442,3.284,1.795,0.0,2.586,6.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.446,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,19.013,0.0,50.119,10.404,2.672,0.0,0.0,0.0,0.0,1867.8,6848.9,6848.9,38.22,42.829,0.489,1.968,7.259,0.42,0.0,0.979,7.143,-4.994,0.0,0.0,0.479,1.223,-0.304,4.306,0.0,5.157,0.0,3.344,-5.668,-2.928,0.578,2.051,3.793,0.312,0.0,0.242,1.661,11.471,0.0,0.0,0.525,6.854,-0.289,-0.379,-1.825,-0.711,0.0,10.726,10.839,4.448,2104.4,2144.8,14468.9,4385.2,0.0,90000.0,60000.0,0.0,25.88,98.42,61222.0,24352.0,7740.0,0.0,811.0,7192.0,453.0,325.0,9636.0,2236.0,8478.0,111472.0,85248.0,9491.0,0.0,548.0,4937.0,299.0,70.0,0.0,3975.0,3124.0,3780.0,6863.0,3503.0,2160.0,1200.0 +house002.xml,68.39,68.39,40.446,40.446,27.944,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,14.504,3.322,0.0,0.0,0.0,6.378,0.315,0.594,0.448,0.0,0.0,0.0,2.285,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,5.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.473,0.0,13.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,11.734,0.0,39.749,7.517,2.888,0.0,0.0,0.0,0.0,1572.0,5482.9,5482.9,24.148,29.949,0.0,2.529,5.043,0.0,0.0,0.842,5.713,-4.099,0.0,0.0,0.0,1.731,-0.168,1.578,0.0,3.789,0.0,1.42,-4.319,-2.485,0.0,3.114,2.832,0.0,0.0,0.422,0.423,8.64,0.0,0.0,0.0,8.472,-0.161,-0.174,-1.343,-0.62,0.0,5.875,8.555,3.893,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47504.0,15296.0,6070.0,0.0,637.0,4442.0,0.0,0.0,12952.0,3120.0,4987.0,33040.0,14150.0,6700.0,0.0,399.0,2264.0,0.0,0.0,0.0,4331.0,1877.0,3320.0,3850.0,1752.0,1298.0,800.0 +house003.xml,68.982,68.982,39.971,39.971,29.011,0.0,0.0,0.0,0.0,0.0,0.0,0.177,0.0,0.0,12.77,3.485,0.0,0.0,0.0,6.872,0.315,0.623,0.448,0.0,0.0,0.0,2.283,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,6.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.784,0.0,13.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,12.796,0.0,41.614,7.517,2.686,0.0,0.0,0.0,0.0,1652.4,5684.3,5684.3,26.562,34.684,0.648,2.783,4.663,0.0,0.0,0.975,6.242,-3.952,0.0,0.0,0.0,1.055,-0.193,1.997,0.0,3.941,0.0,1.661,-4.499,-2.687,0.807,3.088,2.635,0.0,0.0,0.658,1.111,9.825,0.0,0.0,0.0,6.521,-0.185,-0.209,-1.397,-0.62,0.0,6.538,8.853,4.184,1610.8,1575.3,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48036.0,15929.0,6644.0,0.0,724.0,4238.0,610.0,0.0,11450.0,2908.0,5532.0,41330.0,18341.0,9082.0,0.0,424.0,2542.0,403.0,0.0,0.0,5169.0,2049.0,3320.0,3969.0,1752.0,1417.0,800.0 +house004.xml,137.372,137.372,75.386,75.386,61.986,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,29.4,9.273,0.0,0.0,0.0,11.556,0.315,0.894,0.448,0.0,0.0,0.0,2.244,0.0,0.0,0.528,0.39,2.899,1.662,1.633,2.351,11.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.859,0.0,16.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.084,0.0,108.838,8.975,3.505,0.0,0.0,0.0,116.0,3079.3,7936.5,7936.5,55.118,52.123,0.127,5.487,11.332,0.0,0.0,1.249,13.706,-5.915,0.0,0.0,0.0,3.068,-0.799,5.044,0.0,6.272,0.0,7.263,-6.207,-3.85,0.201,6.771,11.731,0.0,0.0,0.521,7.521,17.685,0.0,0.0,0.0,18.79,-0.786,1.07,-0.0,1.858,0.0,21.513,14.573,7.706,1857.6,1860.1,12229.0,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76098.0,20960.0,11324.0,0.0,882.0,8518.0,101.0,0.0,19021.0,5929.0,9362.0,52111.0,18520.0,12464.0,0.0,688.0,5604.0,65.0,0.0,0.0,7851.0,3369.0,3550.0,4614.0,1285.0,2330.0,1000.0 +house005.xml,95.681,95.681,53.161,53.161,42.52,0.0,0.0,0.0,0.0,0.0,0.0,0.307,0.0,0.0,18.308,5.063,0.0,0.0,0.0,9.15,0.315,0.755,0.448,0.0,0.0,0.0,2.339,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,8.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.34,0.0,15.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,22.172,0.0,60.756,8.975,2.725,0.0,0.0,0.0,2.0,2101.6,7891.9,7891.9,46.459,53.477,0.0,3.012,8.173,0.268,0.0,1.357,9.418,-6.696,0.0,0.0,0.394,1.241,-0.403,5.051,0.0,5.087,0.0,4.491,-5.795,-3.626,0.0,3.044,4.319,0.215,0.0,0.281,2.409,15.363,0.0,0.0,0.416,7.526,-0.385,-0.458,-2.312,-0.709,0.0,14.651,11.105,5.524,1857.6,1860.1,12229.0,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,70734.0,26913.0,10216.0,0.0,1118.0,7857.0,0.0,262.0,11638.0,3312.0,9418.0,64907.0,31861.0,13705.0,0.0,779.0,5660.0,0.0,60.0,0.0,5887.0,3406.0,3550.0,6858.0,3503.0,2355.0,1000.0 +house006.xml,139.14,139.14,31.521,31.521,107.619,0.0,0.0,0.0,0.0,0.0,0.0,1.876,0.0,0.0,2.879,0.321,0.0,0.0,0.0,8.682,0.29,0.705,3.138,0.0,0.0,0.0,1.533,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.116,8.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.774,0.0,20.132,2.642,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.726,0.0,7.605,13.079,3.28,0.0,0.0,0.0,0.0,2052.4,2856.8,2856.8,40.572,15.236,0.0,4.255,22.255,1.989,37.094,1.863,17.62,-9.437,0.0,0.0,0.0,9.273,-0.348,8.595,0.0,4.365,0.0,0.0,-13.246,-6.364,0.0,0.177,-0.783,-0.044,2.852,-0.083,-0.529,4.34,0.0,0.0,0.0,-3.887,-0.347,-0.434,-1.562,-0.069,0.0,0.0,5.758,2.318,1610.8,1575.4,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,50794.0,0.0,8907.0,0.0,677.0,31615.0,0.0,0.0,2463.0,1874.0,5256.0,9469.0,0.0,4109.0,0.0,40.0,461.0,0.0,0.0,0.0,1369.0,171.0,3320.0,1566.0,0.0,766.0,800.0 +house007.xml,139.991,139.991,33.599,33.599,106.393,0.0,0.0,0.0,0.0,0.0,0.0,1.666,0.0,0.0,2.462,0.368,0.0,0.0,0.0,10.293,0.315,0.821,1.943,0.0,0.0,0.0,2.169,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.727,0.0,23.278,3.047,3.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,72.246,0.0,5.565,15.626,3.272,0.0,0.0,0.0,0.0,2277.8,3041.7,3041.7,39.986,13.677,0.0,4.713,23.682,4.448,10.094,1.498,18.828,-9.39,0.0,0.0,0.076,11.566,-0.412,6.13,0.0,20.833,0.0,2.923,-15.577,-7.666,0.0,0.213,-0.66,-0.045,0.565,-0.042,-0.283,4.559,0.0,0.0,-0.009,-3.958,-0.408,-0.183,-1.313,-1.838,0.0,0.104,6.325,2.627,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,44634.0,5476.0,9095.0,0.0,517.0,15776.0,0.0,27.0,2623.0,2001.0,9120.0,11845.0,1099.0,4958.0,0.0,11.0,281.0,0.0,0.0,0.0,1461.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 +house008.xml,183.465,183.465,38.872,38.872,144.593,0.0,0.0,0.0,0.0,0.0,0.0,2.496,0.0,0.0,3.543,0.516,0.0,0.0,0.0,11.0,0.315,0.862,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.161,0.0,26.37,3.452,3.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,104.744,0.0,10.122,18.122,3.216,0.0,0.0,0.0,0.0,2558.2,3840.6,3840.6,55.24,21.091,0.0,7.22,27.482,4.71,24.278,1.195,21.311,-7.817,0.0,0.0,1.281,17.85,-0.454,17.347,0.0,6.388,0.0,7.94,-16.733,-8.082,0.0,0.312,-1.103,-0.053,1.65,-0.086,-0.371,5.411,0.0,0.0,-0.108,-2.748,-0.454,-0.881,-1.747,-0.269,0.0,0.533,7.226,2.917,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,68488.0,8921.0,10314.0,0.0,499.0,30749.0,0.0,581.0,4580.0,3226.0,9618.0,16084.0,280.0,8654.0,0.0,1.0,937.0,0.0,-240.0,0.0,2356.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 +house009.xml,155.05,155.05,33.757,33.757,121.293,0.0,0.0,0.0,0.0,0.0,0.0,2.058,0.0,0.0,2.38,0.281,0.0,0.0,0.0,10.266,0.315,0.819,1.943,0.0,0.0,0.0,2.165,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,9.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.62,0.0,23.285,3.047,3.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,86.331,0.0,5.319,15.626,3.278,0.0,0.0,0.0,0.0,2311.9,3123.9,3123.9,44.411,14.752,0.0,5.098,28.4,4.318,13.016,2.252,18.883,-8.204,0.0,0.0,0.266,15.639,-0.436,8.71,0.0,21.442,0.0,0.0,-15.814,-7.758,0.0,0.248,-0.676,-0.025,0.713,-0.072,-0.16,4.576,0.0,0.0,-0.028,-4.074,-0.432,-0.249,-1.225,-1.764,0.0,0.0,6.063,2.508,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44988.0,0.0,8913.0,0.0,815.0,18669.0,0.0,95.0,3474.0,2204.0,10820.0,12507.0,0.0,6052.0,0.0,72.0,704.0,0.0,1.0,0.0,1609.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 +house010.xml,154.0,154.0,37.243,37.243,116.757,0.0,0.0,0.0,0.0,0.0,0.0,1.871,0.0,0.0,2.838,0.26,0.0,0.0,0.0,10.98,0.315,0.861,3.138,0.0,0.0,0.0,2.228,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.586,10.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.324,0.0,26.371,3.452,3.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,78.517,0.0,7.207,18.122,3.216,0.0,0.0,0.0,0.0,2493.9,3357.0,3357.0,45.685,16.23,0.872,4.925,25.492,4.914,9.736,1.266,22.967,-9.21,0.0,0.0,0.924,11.397,-0.464,18.578,0.0,6.402,0.0,4.93,-16.741,-8.059,0.023,0.223,-0.729,-0.086,0.533,-0.072,-0.714,5.138,0.0,0.0,-0.049,-4.147,-0.461,-0.913,-1.633,-0.254,0.0,0.332,7.2,2.921,2104.4,2144.8,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,50833.0,7318.0,10714.0,0.0,501.0,17067.0,359.0,360.0,1836.0,2165.0,10514.0,12826.0,701.0,5296.0,0.0,3.0,1221.0,37.0,-131.0,0.0,1581.0,340.0,3780.0,2620.0,261.0,1159.0,1200.0 +house011.xml,45.283,45.283,45.283,45.283,0.0,0.0,0.0,0.0,0.0,0.0,7.448,0.713,0.149,0.007,8.184,2.248,10.445,0.0,0.0,4.902,0.0,0.509,0.003,0.0,0.0,0.0,2.32,0.0,0.0,0.528,0.0,0.0,1.662,0.0,2.351,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.949,0.157,25.442,9.316,1.125,0.0,0.0,0.0,332.0,4924.3,3422.3,4924.3,18.655,16.083,0.0,2.677,5.493,0.0,0.0,1.648,3.487,-3.255,0.0,0.0,1.866,0.0,-0.411,1.854,0.0,5.463,0.0,4.446,-5.243,-2.073,0.0,1.679,1.308,0.0,0.0,0.172,0.35,5.593,0.0,0.0,0.755,0.0,-0.411,-0.182,-0.292,-0.94,0.0,6.565,8.132,2.829,0.0,1860.1,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,21499.0,8186.0,3673.0,0.0,612.0,1210.0,0.0,199.0,0.0,2832.0,1236.0,3550.0,3067.0,463.0,1604.0,1000.0 +house012.xml,35.765,35.765,35.765,35.765,0.0,0.0,0.0,0.0,0.0,0.0,4.991,0.265,0.0,0.0,5.711,1.444,8.936,0.0,0.0,4.375,0.0,0.479,0.003,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.0,0.0,1.529,0.0,2.116,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.626,0.0,15.947,7.775,1.158,0.0,0.0,0.0,0.0,2993.7,2818.0,2993.7,11.339,11.457,0.0,2.373,4.775,0.0,0.0,0.632,2.7,-1.856,0.0,0.0,2.027,0.0,-0.272,1.658,0.0,4.397,0.0,0.342,-4.206,-1.936,0.0,1.731,1.134,0.0,0.0,-0.027,0.502,3.486,0.0,0.0,1.58,0.0,-0.272,-0.148,-0.263,-0.688,0.0,0.271,6.26,2.439,0.0,1575.3,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,12005.0,637.0,2706.0,0.0,202.0,1083.0,0.0,646.0,0.0,2387.0,1024.0,3320.0,2499.0,370.0,1329.0,800.0 +house013.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.642,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.2,2594.8,10.007,9.895,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.098,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 +house014.xml,31.681,31.681,31.681,31.681,0.0,0.0,0.0,0.0,0.0,0.0,3.625,0.222,0.008,0.0,4.157,1.354,7.445,0.0,0.0,4.051,0.0,0.46,0.001,0.0,0.0,0.0,1.458,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.213,0.008,16.186,6.844,0.598,0.0,0.0,0.0,0.0,2969.9,2388.6,2969.9,11.22,10.741,0.0,1.698,3.703,0.0,0.0,0.588,3.045,-2.522,0.0,0.0,2.194,0.0,-0.256,1.948,0.0,1.126,0.0,1.628,-3.342,-1.62,0.0,1.138,0.578,0.0,0.0,-0.062,0.582,4.706,0.0,0.0,0.632,0.0,-0.256,-0.253,-0.367,-0.246,0.0,1.629,5.763,2.431,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,14492.0,3933.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,11715.0,1702.0,3062.0,0.0,194.0,773.0,0.0,596.0,0.0,1703.0,594.0,3090.0,1683.0,312.0,771.0,600.0 +house015.xml,30.636,30.636,30.636,30.636,0.0,0.0,0.0,0.0,0.0,0.0,3.068,0.171,0.0,0.0,3.782,1.234,7.7,0.0,0.0,3.963,0.0,0.455,0.001,0.0,0.0,0.0,1.459,0.0,0.0,0.366,0.286,2.129,1.396,0.0,1.88,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.692,0.0,14.642,6.844,0.854,0.0,0.0,0.0,0.0,2594.8,2299.2,2594.8,10.007,9.895,0.0,1.639,2.881,0.0,0.0,0.662,2.641,-2.208,0.0,0.0,2.101,0.0,-0.279,1.736,0.0,1.075,0.0,1.243,-3.297,-1.521,0.0,1.098,0.424,0.0,0.0,-0.08,0.255,3.721,0.0,0.0,0.583,0.0,-0.279,-0.256,-0.329,-0.26,0.0,1.421,5.981,2.442,1364.0,1290.6,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13245.0,3784.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,10440.0,1645.0,2116.0,0.0,221.0,604.0,0.0,576.0,0.0,1644.0,545.0,3090.0,1619.0,312.0,707.0,600.0 house016.xml,61.49,61.49,39.748,39.748,0.0,0.0,21.741,0.0,0.0,0.0,7.878,0.575,0.196,0.004,2.851,0.929,0.0,0.0,0.0,8.601,0.0,0.723,0.215,0.0,0.0,0.0,2.276,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.257,8.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,6.564,0.0,15.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,25.676,0.2,11.075,10.47,0.0,0.0,0.0,2.0,11.0,7490.7,3805.5,7490.7,43.399,19.024,0.0,4.412,10.812,0.616,5.654,0.297,7.696,-7.898,0.0,0.0,0.0,6.696,-0.025,5.723,0.0,3.871,0.0,0.0,-7.537,-4.749,0.0,-0.298,-0.719,-0.013,3.006,-0.043,-0.936,11.997,0.0,0.0,0.0,-8.628,-0.027,-1.304,-2.045,-0.969,0.0,0.0,7.655,3.852,1758.9,1746.2,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,27224.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,3072.0,2689.0,5286.0,18632.0,0.0,9139.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,92.628,92.628,27.628,27.628,65.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,0.0,4.394,0.588,0.0,0.0,0.0,4.668,0.188,0.387,0.033,0.0,0.0,0.0,1.915,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.276,6.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.893,0.0,18.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,42.966,0.0,9.661,11.132,3.429,0.0,0.0,154.0,94.0,1752.9,3654.3,3654.3,60.37,19.61,0.0,5.413,14.583,0.649,10.571,0.361,7.427,-9.328,0.0,0.0,0.716,4.328,0.004,19.732,0.0,1.219,0.0,0.0,-9.901,-2.992,0.0,-0.092,-0.824,-0.014,4.82,-0.057,-1.094,7.465,0.0,0.0,-0.001,-4.711,0.006,-2.608,-1.613,-0.246,0.0,0.0,6.986,1.676,1778.6,1769.0,13969.4,4664.0,0.0,60000.0,24000.0,0.0,16.16,89.24,36715.0,0.0,4833.0,0.0,181.0,15153.0,0.0,281.0,1608.0,3048.0,11612.0,16973.0,0.0,6610.0,0.0,85.0,2970.0,0.0,-35.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 house018.xml,35.983,35.983,35.983,35.983,0.0,0.0,0.0,0.0,0.0,0.0,4.946,0.227,0.0,0.0,2.443,0.734,7.871,0.0,0.0,4.758,0.0,0.461,0.112,0.0,0.0,0.0,3.931,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,4.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.481,0.0,9.045,7.315,0.555,0.0,0.0,0.0,0.0,4300.8,2813.2,4300.8,20.203,11.09,0.0,4.529,4.586,0.0,0.0,0.274,3.673,-3.625,0.0,0.0,2.133,0.0,-0.018,2.6,0.0,2.079,0.0,2.001,-6.254,-2.591,0.0,-0.468,-0.743,0.0,0.0,-0.092,-1.285,4.33,0.0,0.0,0.038,0.0,-0.014,-0.733,-1.142,-0.714,0.0,1.212,6.691,2.167,1341.8,1265.0,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,20934.0,7542.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,12944.0,2711.0,1961.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2871.0,1359.0,712.0,800.0 @@ -116,11 +116,11 @@ house022.xml,138.855,138.855,48.43,48.43,0.0,90.425,0.0,0.0,0.0,0.0,0.0,2.249,0. house023.xml,139.655,139.655,62.823,62.823,0.0,76.832,0.0,0.0,0.0,0.0,0.0,1.935,0.0,0.0,5.809,0.723,19.988,0.0,0.0,9.214,0.0,0.692,0.045,0.0,0.0,0.0,4.03,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,11.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,76.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,64.144,0.0,15.975,17.089,2.771,0.0,0.0,0.0,0.0,4118.5,5048.5,5048.5,62.827,20.991,0.0,10.207,21.479,1.2,16.388,0.85,9.987,-7.816,0.0,0.0,0.0,6.155,-0.059,23.718,0.0,1.636,0.0,0.0,-14.037,-5.919,0.0,-0.145,-0.924,-0.008,6.022,-0.11,-0.995,9.137,0.0,0.0,0.0,-5.965,-0.037,-2.587,-1.358,-0.309,0.0,0.0,10.041,3.296,2176.0,2227.4,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45741.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1816.0,4899.0,15091.0,22621.0,0.0,8657.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4277.0,0.0,3277.0,1000.0 house024.xml,130.416,130.416,43.547,43.547,0.0,86.869,0.0,0.0,0.0,0.0,0.0,2.161,0.0,0.0,5.2,0.484,16.743,0.0,0.0,3.914,0.0,0.396,0.058,0.0,0.0,0.0,1.837,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,3.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,86.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,71.616,0.0,15.262,14.642,2.089,0.0,0.0,0.0,0.0,2724.8,3635.2,3635.2,72.195,17.665,0.0,7.178,30.02,0.0,0.0,0.682,7.226,-7.905,0.0,0.0,5.081,0.0,-0.118,25.395,0.0,1.84,0.0,11.928,-7.457,-2.541,0.0,0.62,1.355,0.0,0.0,-0.037,-0.259,5.994,0.0,0.0,0.595,0.0,-0.111,-1.368,-0.638,-0.185,0.0,2.849,5.131,1.373,2176.0,2227.4,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,62265.0,14455.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21691.0,1206.0,4065.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,6595.0,2155.0,3640.0,800.0 house025.xml,105.595,105.595,69.79,69.79,35.805,0.0,0.0,0.0,0.0,0.0,6.738,1.082,0.0,0.0,18.727,3.059,12.209,0.0,0.0,9.258,0.0,0.783,0.0,0.0,0.0,0.0,3.902,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,8.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,37.64,0.0,47.484,8.315,3.831,0.0,0.0,0.0,0.0,4475.8,7250.8,7250.8,36.615,33.391,0.0,3.377,17.567,0.0,0.0,2.17,7.405,-5.706,0.0,0.0,6.826,0.0,-1.341,13.757,0.001,0.41,0.0,5.032,-7.951,-3.985,0.0,1.098,5.727,0.0,0.0,0.446,1.957,12.402,0.0,0.0,5.586,0.0,-1.34,-0.7,-0.276,-0.004,0.0,6.311,11.261,5.273,1341.8,1265.0,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,58098.0,23806.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,35352.0,11896.0,7696.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9623.0,5972.0,2851.0,800.0 -house026.xml,57.845,57.845,24.948,24.948,32.897,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.53,0.252,0.548,0.299,0.0,0.0,0.0,2.07,0.0,0.0,0.447,0.338,2.514,1.529,0.934,2.116,7.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.764,0.0,14.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.39,0.0,0.0,8.599,2.08,0.0,0.0,0.0,0.0,1544.5,1474.7,1544.5,17.654,0.0,0.0,1.767,6.851,0.232,0.0,0.197,4.392,-2.928,0.0,0.0,7.072,0.0,-0.056,2.495,0.0,3.132,0.0,0.0,-5.785,-3.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1298.2,1286.6,8604.1,3032.2,0.0,84000.0,0.0,0.0,24.62,91.58,22013.0,0.0,3869.0,0.0,128.0,5462.0,0.0,5703.0,0.0,1459.0,5391.0,16135.0,0.0,5497.0,0.0,78.0,1775.0,0.0,1973.0,0.0,2302.0,1191.0,3320.0,2345.0,0.0,1545.0,800.0 -house027.xml,74.252,74.252,31.075,31.075,43.177,0.0,0.0,0.0,0.0,0.0,0.0,0.485,0.0,0.0,7.387,0.883,0.0,0.0,0.0,5.944,0.218,0.485,0.927,0.0,0.0,0.0,1.632,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,7.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.182,0.0,17.925,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.895,0.0,21.594,8.556,5.272,0.0,0.0,0.0,0.0,1607.4,3800.8,3800.8,24.464,23.118,0.719,1.781,7.929,0.453,0.0,0.594,4.98,-4.015,0.0,0.0,0.319,3.213,-0.176,1.458,0.0,10.471,0.0,2.235,-6.296,-2.854,0.511,1.189,0.91,0.07,0.0,-0.098,0.289,5.396,0.0,0.0,0.154,3.938,-0.177,-0.258,-1.464,-3.2,0.0,2.444,8.654,3.09,1610.8,1575.3,10579.6,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,37234.0,7642.0,4494.0,0.0,375.0,6506.0,550.0,183.0,8238.0,1516.0,7731.0,19090.0,3710.0,4018.0,0.0,228.0,2884.0,270.0,2.0,0.0,2392.0,2267.0,3320.0,5500.0,1759.0,2941.0,800.0 -house028.xml,68.554,68.554,29.518,29.518,39.036,0.0,0.0,0.0,0.0,0.0,0.0,0.318,0.0,0.0,7.193,1.296,0.0,0.0,0.0,6.134,0.226,0.503,0.618,0.0,0.0,0.0,2.008,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,7.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.53,0.0,18.119,3.047,3.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,13.688,0.0,22.855,10.217,3.627,0.0,0.0,0.0,0.0,1545.2,3715.1,3715.1,20.61,23.382,0.766,1.652,7.151,0.355,0.0,0.439,4.949,-3.806,0.0,0.0,0.244,2.464,-0.058,4.054,0.0,4.47,0.0,1.743,-7.973,-2.893,0.619,1.255,-0.384,0.112,0.0,0.068,0.158,6.209,0.0,0.0,0.068,1.941,-0.058,-1.019,-2.007,-1.584,0.0,3.014,11.151,3.241,1857.6,1860.1,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31144.0,8673.0,4365.0,0.0,272.0,5108.0,616.0,129.0,3569.0,1488.0,6925.0,19432.0,3978.0,5658.0,0.0,109.0,1852.0,374.0,2.0,0.0,2348.0,1562.0,3550.0,5052.0,2025.0,2027.0,1000.0 -house029.xml,78.453,78.453,29.937,29.937,48.516,0.0,0.0,0.0,0.0,0.0,0.0,0.745,0.0,0.0,6.194,0.831,0.0,0.0,0.0,6.539,0.275,0.569,0.76,0.0,0.0,0.0,1.844,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,6.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.86,0.0,12.586,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.604,0.0,13.186,9.606,0.0,0.0,0.0,0.0,0.0,1666.8,3303.2,3303.2,28.622,14.294,0.0,3.358,14.585,0.392,0.0,0.295,6.276,-6.012,0.0,0.0,6.794,0.0,-0.09,7.301,0.0,7.302,0.0,3.287,-7.34,-3.695,0.0,1.163,-0.577,0.014,0.0,0.072,0.538,5.271,0.0,0.0,-0.44,0.0,-0.085,-0.752,-1.793,-1.465,0.0,1.412,7.023,2.844,1610.8,1575.4,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,30138.0,3386.0,4924.0,0.0,120.0,7666.0,0.0,2973.0,0.0,2105.0,8965.0,14814.0,-523.0,4842.0,0.0,-11.0,1788.0,0.0,914.0,0.0,2842.0,1642.0,3320.0,3900.0,903.0,2197.0,800.0 -house030.xml,59.571,59.571,17.179,17.179,0.0,0.0,42.392,0.0,0.0,0.0,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.321,0.272,0.497,0.57,0.0,0.0,0.0,1.815,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.88,5.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,24.054,0.0,13.3,2.238,2.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,18.157,0.0,0.0,7.708,2.222,0.0,0.0,0.0,0.0,1161.3,1088.5,1161.3,16.168,0.0,0.0,1.67,10.147,0.485,1.095,1.038,5.176,-3.336,0.0,0.0,0.0,3.4,-0.045,2.725,0.0,5.692,0.0,0.0,-7.087,-2.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,1064.8,993.3,6761.0,2579.9,0.0,87000.0,0.0,0.0,17.24,91.22,20273.0,0.0,3366.0,0.0,449.0,7834.0,0.0,0.0,3900.0,1036.0,3688.0,9762.0,0.0,2595.0,0.0,183.0,1663.0,0.0,0.0,0.0,1399.0,832.0,3090.0,1713.0,0.0,1113.0,600.0 +house026.xml,57.852,57.852,24.948,24.948,32.904,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.53,0.252,0.548,0.299,0.0,0.0,0.0,2.07,0.0,0.0,0.447,0.338,2.514,1.529,0.934,2.116,7.325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.771,0.0,14.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.395,0.0,0.0,8.599,2.08,0.0,0.0,0.0,0.0,1544.5,1474.6,1544.5,17.654,0.0,0.0,1.775,6.85,0.232,0.0,0.197,4.392,-2.928,0.0,0.0,7.071,0.0,-0.056,2.495,0.0,3.132,0.0,0.0,-5.785,-3.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1298.2,1286.6,8604.1,3032.2,0.0,84000.0,0.0,0.0,24.62,91.58,22013.0,0.0,3869.0,0.0,128.0,5462.0,0.0,5703.0,0.0,1459.0,5391.0,16135.0,0.0,5497.0,0.0,78.0,1775.0,0.0,1973.0,0.0,2302.0,1191.0,3320.0,2345.0,0.0,1545.0,800.0 +house027.xml,74.254,74.254,31.064,31.064,43.189,0.0,0.0,0.0,0.0,0.0,0.0,0.486,0.0,0.0,7.377,0.882,0.0,0.0,0.0,5.944,0.218,0.485,0.927,0.0,0.0,0.0,1.632,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,7.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.195,0.0,17.924,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.907,0.0,21.559,8.556,5.272,0.0,0.0,0.0,0.0,1607.5,3797.4,3797.4,24.462,23.085,0.723,1.789,7.93,0.453,0.0,0.594,4.979,-4.015,0.0,0.0,0.319,3.212,-0.176,1.458,0.0,10.471,0.0,2.236,-6.296,-2.854,0.501,1.169,0.91,0.07,0.0,-0.097,0.291,5.396,0.0,0.0,0.154,3.94,-0.176,-0.258,-1.461,-3.2,0.0,2.432,8.654,3.09,1610.8,1575.3,10579.6,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,37234.0,7642.0,4494.0,0.0,375.0,6506.0,550.0,183.0,8238.0,1516.0,7731.0,19090.0,3710.0,4018.0,0.0,228.0,2884.0,270.0,2.0,0.0,2392.0,2267.0,3320.0,5500.0,1759.0,2941.0,800.0 +house028.xml,68.554,68.554,29.516,29.516,39.038,0.0,0.0,0.0,0.0,0.0,0.0,0.318,0.0,0.0,7.19,1.296,0.0,0.0,0.0,6.134,0.226,0.503,0.618,0.0,0.0,0.0,2.008,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.351,7.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.532,0.0,18.119,3.047,3.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,13.69,0.0,22.846,10.217,3.627,0.0,0.0,0.0,0.0,1545.2,3714.9,3714.9,20.61,23.38,0.766,1.653,7.151,0.355,0.0,0.439,4.948,-3.806,0.0,0.0,0.244,2.464,-0.058,4.054,0.0,4.47,0.0,1.743,-7.973,-2.893,0.616,1.251,-0.384,0.111,0.0,0.068,0.158,6.209,0.0,0.0,0.068,1.942,-0.058,-1.019,-2.007,-1.584,0.0,3.011,11.151,3.241,1857.6,1860.1,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31144.0,8673.0,4365.0,0.0,272.0,5108.0,616.0,129.0,3569.0,1488.0,6925.0,19432.0,3978.0,5658.0,0.0,109.0,1852.0,374.0,2.0,0.0,2348.0,1562.0,3550.0,5052.0,2025.0,2027.0,1000.0 +house029.xml,78.451,78.451,29.941,29.941,48.509,0.0,0.0,0.0,0.0,0.0,0.0,0.745,0.0,0.0,6.198,0.832,0.0,0.0,0.0,6.539,0.275,0.569,0.76,0.0,0.0,0.0,1.845,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.116,6.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.854,0.0,12.586,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.598,0.0,13.196,9.606,0.0,0.0,0.0,0.0,0.0,1666.8,3304.2,3304.2,28.622,14.298,0.0,3.354,14.583,0.392,0.0,0.295,6.277,-6.012,0.0,0.0,6.795,0.0,-0.09,7.301,0.0,7.302,0.0,3.287,-7.34,-3.695,0.0,1.171,-0.573,0.014,0.0,0.072,0.538,5.271,0.0,0.0,-0.441,0.0,-0.085,-0.752,-1.794,-1.465,0.0,1.413,7.023,2.844,1610.8,1575.4,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,30138.0,3386.0,4924.0,0.0,120.0,7666.0,0.0,2973.0,0.0,2105.0,8965.0,14814.0,-523.0,4842.0,0.0,-11.0,1788.0,0.0,914.0,0.0,2842.0,1642.0,3320.0,3900.0,903.0,2197.0,800.0 +house030.xml,59.551,59.551,17.179,17.179,0.0,0.0,42.372,0.0,0.0,0.0,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.321,0.272,0.497,0.57,0.0,0.0,0.0,1.816,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.88,5.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,24.034,0.0,13.3,2.238,2.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,18.142,0.0,0.0,7.708,2.221,0.0,0.0,0.0,0.0,1161.3,1088.6,1161.3,16.168,0.0,0.0,1.659,10.14,0.484,1.095,1.036,5.175,-3.335,0.0,0.0,0.0,3.404,-0.045,2.724,0.0,5.69,0.0,0.0,-7.084,-2.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1064.8,993.3,6761.0,2579.9,0.0,87000.0,0.0,0.0,17.24,91.22,20273.0,0.0,3366.0,0.0,449.0,7834.0,0.0,0.0,3900.0,1036.0,3688.0,9762.0,0.0,2595.0,0.0,183.0,1663.0,0.0,0.0,0.0,1399.0,832.0,3090.0,1713.0,0.0,1113.0,600.0 house031.xml,235.57,235.57,50.171,50.171,185.399,0.0,0.0,0.0,0.0,0.0,0.0,3.54,0.0,0.0,12.806,3.241,0.0,0.0,0.0,10.355,0.246,0.759,0.0,0.0,0.0,0.0,1.486,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.053,12.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,147.92,0.0,29.081,4.254,4.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,121.743,0.0,39.486,17.919,5.236,0.0,0.0,50.0,113.0,3196.8,7728.0,7848.9,125.756,49.799,0.0,14.436,41.981,1.048,6.618,1.392,20.047,-16.789,0.0,0.0,1.977,6.044,-0.86,56.94,0.001,0.653,0.0,9.881,-15.327,-6.477,0.0,2.267,5.191,0.176,2.824,0.116,0.498,16.921,0.0,0.0,0.227,-3.598,-0.827,-1.831,-0.833,-0.009,0.0,3.046,10.994,3.878,2593.1,2708.5,18308.0,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83120.0,13668.0,10261.0,0.0,650.0,23580.0,0.0,643.0,1726.0,7333.0,25259.0,43562.0,9684.0,13165.0,0.0,305.0,7760.0,0.0,-124.0,0.0,5345.0,3418.0,4010.0,8582.0,1662.0,5519.0,1400.0 house032.xml,102.299,102.299,15.55,15.55,86.749,0.0,0.0,0.0,0.0,0.0,0.0,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.091,0.0,0.518,0.0,0.0,0.0,0.0,1.583,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.859,4.071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.52,0.0,16.252,2.201,2.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.391,0.0,0.0,7.996,4.946,0.0,0.0,154.0,0.0,1429.9,901.6,1429.9,50.645,0.0,0.0,10.388,8.743,1.918,20.355,1.409,8.345,-9.322,0.0,0.0,0.0,4.513,0.015,14.965,0.0,0.623,0.0,0.0,-8.206,-3.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36329.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1507.0,5647.0,6794.0,17271.0,0.0,6289.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.731,107.731,14.756,14.756,0.0,92.975,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.885,0.0,0.529,0.0,0.0,0.0,0.0,1.353,0.0,0.0,0.0,0.194,1.443,1.159,0.0,1.461,3.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,85.294,0.0,7.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,64.29,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1044.7,861.4,1044.7,48.451,0.0,0.0,19.12,14.557,0.0,0.0,1.0,11.111,-7.528,0.0,0.0,14.642,0.0,-0.368,18.592,0.0,0.791,0.0,0.0,-4.617,-3.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,924.7,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,19016.0,0.0,4578.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2667.0,0.0,1667.0,1000.0 @@ -131,13 +131,13 @@ house037.xml,89.347,89.347,21.69,21.69,0.0,67.658,0.0,0.0,0.0,0.0,0.0,0.185,0.0, house038.xml,126.274,126.274,50.686,50.686,75.588,0.0,0.0,0.0,0.0,0.0,0.0,1.109,0.0,0.0,13.498,2.497,0.0,0.0,0.0,6.904,0.315,0.625,0.0,0.0,0.0,0.0,1.429,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.655,6.092,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,51.568,0.0,24.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,41.305,0.0,30.435,14.704,4.602,0.0,0.0,0.0,215.0,2354.5,5805.1,5805.1,48.416,27.559,0.0,3.648,14.874,0.65,4.429,0.81,12.438,-10.449,0.0,0.0,1.856,2.334,-0.09,22.508,0.002,0.594,0.0,0.0,-8.966,-3.828,0.0,0.85,2.636,0.142,2.236,0.02,0.963,12.735,0.0,0.0,0.337,-0.579,-0.079,-0.53,-0.333,0.006,0.0,0.0,8.232,3.077,2176.0,2227.4,14642.1,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,30970.0,0.0,6993.0,0.0,362.0,9766.0,0.0,640.0,734.0,1706.0,10769.0,18185.0,0.0,9122.0,0.0,170.0,2306.0,0.0,-123.0,0.0,1243.0,1457.0,4010.0,3753.0,0.0,2353.0,1400.0 house039.xml,101.512,101.512,23.992,23.992,77.52,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,5.181,0.0,0.0,4.408,0.239,0.418,0.0,0.0,0.0,0.0,1.674,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.655,4.658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.832,0.0,0.0,0.0,3.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,47.006,0.0,0.0,14.261,1.139,0.0,0.0,0.0,0.0,1705.9,1586.2,1705.9,50.362,0.0,0.0,14.176,5.359,0.0,0.0,2.503,16.085,-13.551,0.0,0.0,13.942,0.0,-0.055,13.236,0.0,0.554,0.0,0.0,-2.832,-2.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,2176.0,2227.4,17537.6,5211.7,0.0,87000.0,0.0,0.0,16.16,89.24,41752.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6185.0,0.0,8806.0,10883.0,22993.0,0.0,9886.0,0.0,683.0,526.0,0.0,690.0,0.0,6418.0,1470.0,3320.0,3173.0,0.0,2373.0,800.0 house040.xml,102.419,102.419,23.514,23.514,78.906,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.369,0.0,0.652,0.0,0.0,0.0,0.0,1.574,0.0,0.0,0.359,0.282,2.094,1.384,0.0,1.859,6.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61.533,0.0,17.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.969,0.0,0.0,7.996,5.526,0.0,0.0,0.0,0.0,1818.3,1304.9,1818.3,62.433,0.0,11.258,5.613,22.268,0.0,4.282,2.093,12.873,-12.521,0.0,0.0,2.031,3.377,-0.101,19.744,0.0,0.611,0.0,0.0,-9.244,-4.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,1341.8,1265.0,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44724.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1359.0,3065.0,11594.0,23970.0,0.0,8227.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,260.508,260.508,46.804,46.804,213.704,0.0,0.0,0.0,0.0,0.0,0.0,4.203,0.0,0.0,2.469,0.228,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.175,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.148,0.0,26.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.344,0.0,4.305,15.626,5.047,0.0,0.0,113.0,0.0,3254.0,5159.1,5159.1,77.829,24.679,0.0,11.243,45.009,3.515,35.002,3.139,38.839,-20.775,0.0,0.0,4.603,17.349,-0.612,64.102,0.0,2.763,0.0,0.0,-18.492,-10.888,0.0,0.139,-2.016,-0.113,1.736,-0.211,-2.727,9.453,0.0,0.0,-0.342,-5.175,-0.61,-3.309,-1.927,-0.247,0.0,0.0,6.717,3.047,1857.6,1860.1,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,109895.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,31239.0,25390.0,0.0,15296.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 -house042.xml,232.642,232.642,39.795,39.795,192.847,0.0,0.0,0.0,0.0,0.0,0.0,3.947,0.0,0.0,1.717,0.06,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.408,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.584,0.0,2.527,15.626,3.233,0.0,0.0,0.0,0.0,2711.0,3497.4,3497.4,88.505,19.177,0.0,9.163,39.814,4.009,43.685,2.648,34.199,-19.431,0.0,0.0,2.447,14.535,-0.346,56.287,0.0,1.748,0.0,0.0,-17.458,-7.569,0.0,0.226,-1.385,-0.052,2.932,-0.142,-2.897,5.785,0.0,0.0,-0.259,-4.859,-0.342,-2.691,-1.169,-0.137,0.0,0.0,5.603,1.965,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,96883.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,27501.0,15574.0,0.0,5937.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 -house043.xml,159.527,159.527,29.692,29.692,129.835,0.0,0.0,0.0,0.0,0.0,0.0,2.496,0.0,0.0,1.877,0.098,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.936,0.0,19.899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.714,0.0,2.569,13.079,2.212,0.0,0.0,0.0,0.0,1956.4,3029.7,3029.7,54.813,13.675,0.0,3.162,23.178,2.292,33.736,5.573,22.928,-10.012,0.0,0.0,0.549,9.918,-0.317,28.978,0.0,1.575,0.0,0.0,-13.074,-5.127,0.0,0.046,-0.755,-0.085,1.782,-0.334,-1.953,4.655,0.0,0.0,-0.067,-3.531,-0.317,-1.511,-1.04,-0.139,0.0,0.0,4.467,1.431,1610.8,1575.4,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,65558.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16233.0,14430.0,0.0,7218.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,429.0,3320.0,1456.0,0.0,656.0,800.0 -house044.xml,227.808,227.808,43.243,43.243,184.564,0.0,0.0,0.0,0.0,0.0,0.0,4.744,0.0,0.0,2.041,0.174,0.0,0.0,0.0,12.947,0.315,0.974,0.037,0.0,0.0,0.0,2.097,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,12.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.995,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.51,0.0,3.392,13.079,4.458,0.0,0.0,0.0,0.0,3132.3,4108.0,4108.0,81.179,19.332,4.367,6.894,36.481,9.228,19.244,2.756,17.943,-11.679,0.0,0.0,12.908,15.066,-0.509,62.037,0.0,1.434,0.0,0.0,-16.586,-10.177,0.253,0.464,-1.316,-0.098,1.22,-0.114,-0.727,5.622,0.0,0.0,-1.109,-4.787,-0.506,-2.601,-0.958,-0.097,0.0,0.0,5.436,2.77,1610.8,1575.4,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,81137.0,0.0,8422.0,0.0,1211.0,29262.0,1911.0,5137.0,2346.0,3592.0,29257.0,20316.0,0.0,10363.0,0.0,114.0,2778.0,368.0,-23.0,0.0,2623.0,772.0,3320.0,1982.0,0.0,1182.0,800.0 -house045.xml,152.564,152.564,34.867,34.867,117.697,0.0,0.0,0.0,0.0,0.0,0.0,2.789,0.0,0.0,2.269,0.261,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.141,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.239,0.0,22.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,0.0,3.64,13.079,4.371,0.0,0.0,0.0,0.0,2334.2,3370.2,3370.2,47.1,13.395,3.573,3.08,15.119,2.29,32.745,1.135,17.715,-12.23,0.968,-0.414,0.086,12.635,-0.264,20.672,0.0,10.929,0.0,0.0,-13.33,-6.949,0.0,0.017,-1.029,-0.116,1.069,-0.082,-1.244,6.238,-0.061,0.4,-0.012,-3.972,-0.264,-1.124,-1.876,-1.218,0.0,0.0,4.895,2.111,1610.8,1575.4,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,56820.0,0.0,8558.0,455.0,398.0,28557.0,1494.0,31.0,2749.0,1367.0,13211.0,12890.0,0.0,7147.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,407.0,3320.0,1423.0,0.0,623.0,800.0 -house046.xml,25.568,25.568,25.568,25.568,0.0,0.0,0.0,0.0,0.0,0.0,5.733,0.553,0.425,0.016,3.826,0.963,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.666,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.334,0.442,12.834,4.303,0.618,0.0,0.0,0.0,1.0,4115.7,2456.1,4115.7,17.085,13.361,0.0,2.519,3.835,0.0,0.0,0.329,2.242,-1.678,0.0,0.0,-0.158,0.0,-0.307,8.902,0.0,0.38,0.0,3.067,-3.268,-0.481,0.0,1.293,2.563,0.0,0.0,0.028,0.803,2.422,0.0,0.0,-0.157,0.0,-0.306,-0.42,-0.218,0.023,0.0,1.871,4.427,0.548,596.8,442.4,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19947.0,4038.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,9476.0,15226.0,3926.0,3183.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1896.0,2860.0,3344.0,483.0,2461.0,400.0 +house041.xml,260.519,260.519,46.801,46.801,213.718,0.0,0.0,0.0,0.0,0.0,0.0,4.204,0.0,0.0,2.467,0.227,0.0,0.0,0.0,13.935,0.315,1.031,0.05,0.0,0.0,0.0,2.175,0.0,0.0,0.528,0.39,2.899,1.662,0.473,2.351,14.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.162,0.0,26.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.357,0.0,4.299,15.626,5.047,0.0,0.0,113.0,0.0,3254.0,5158.1,5158.1,77.829,24.665,0.0,11.256,45.01,3.515,35.001,3.139,38.838,-20.775,0.0,0.0,4.603,17.348,-0.612,64.104,0.0,2.763,0.0,0.0,-18.492,-10.888,0.0,0.129,-2.017,-0.114,1.737,-0.211,-2.726,9.453,0.0,0.0,-0.342,-5.174,-0.61,-3.308,-1.925,-0.247,0.0,0.0,6.717,3.047,1857.6,1860.1,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,109895.0,0.0,18666.0,0.0,1290.0,43329.0,0.0,1653.0,8641.0,5077.0,31239.0,25390.0,0.0,15296.0,0.0,-20.0,2646.0,0.0,-615.0,0.0,3708.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 +house042.xml,232.663,232.663,39.793,39.793,192.869,0.0,0.0,0.0,0.0,0.0,0.0,3.947,0.0,0.0,1.714,0.06,0.0,0.0,0.0,9.533,0.213,0.678,0.093,0.0,0.0,0.0,2.167,0.0,0.0,0.528,0.39,2.899,1.662,0.0,2.351,13.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.431,0.0,24.438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.607,0.0,2.519,15.626,3.233,0.0,0.0,0.0,0.0,2711.1,3496.0,3496.0,88.507,19.168,0.0,9.178,39.823,4.011,43.685,2.649,34.199,-19.431,0.0,0.0,2.447,14.534,-0.346,56.288,0.0,1.748,0.0,0.0,-17.461,-7.569,0.0,0.218,-1.385,-0.053,2.933,-0.143,-2.894,5.785,0.0,0.0,-0.258,-4.859,-0.342,-2.69,-1.167,-0.137,0.0,0.0,5.6,1.964,1857.6,1860.1,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,96883.0,0.0,17465.0,0.0,995.0,42258.0,0.0,927.0,3490.0,4248.0,27501.0,15574.0,0.0,5937.0,0.0,110.0,2136.0,0.0,13.0,0.0,3102.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 +house043.xml,159.543,159.543,29.689,29.689,129.854,0.0,0.0,0.0,0.0,0.0,0.0,2.496,0.0,0.0,1.875,0.098,0.0,0.0,0.0,6.558,0.213,0.514,0.093,0.0,0.0,0.0,2.124,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.953,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,104.731,0.0,2.562,13.079,2.212,0.0,0.0,0.0,0.0,1956.4,3028.5,3028.5,54.815,13.663,0.0,3.167,23.188,2.292,33.736,5.574,22.927,-10.012,0.0,0.0,0.549,9.917,-0.317,28.978,0.0,1.575,0.0,0.0,-13.074,-5.127,0.0,0.043,-0.761,-0.085,1.783,-0.335,-1.952,4.655,0.0,0.0,-0.067,-3.53,-0.317,-1.511,-1.039,-0.139,0.0,0.0,4.467,1.431,1610.8,1575.4,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,65558.0,0.0,11581.0,0.0,2240.0,31185.0,0.0,202.0,2598.0,1519.0,16233.0,14430.0,0.0,7218.0,0.0,224.0,2128.0,0.0,3.0,0.0,1109.0,429.0,3320.0,1456.0,0.0,656.0,800.0 +house044.xml,227.821,227.821,43.242,43.242,184.579,0.0,0.0,0.0,0.0,0.0,0.0,4.745,0.0,0.0,2.039,0.173,0.0,0.0,0.0,12.947,0.315,0.974,0.037,0.0,0.0,0.0,2.097,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,12.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.01,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,150.524,0.0,3.386,13.079,4.458,0.0,0.0,0.0,0.0,3132.3,4107.0,4107.0,81.179,19.319,4.372,6.901,36.485,9.228,19.243,2.756,17.943,-11.679,0.0,0.0,12.908,15.066,-0.509,62.037,0.0,1.434,0.0,0.0,-16.586,-10.177,0.25,0.459,-1.318,-0.098,1.22,-0.114,-0.726,5.622,0.0,0.0,-1.109,-4.786,-0.506,-2.6,-0.957,-0.097,0.0,0.0,5.436,2.77,1610.8,1575.4,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,81137.0,0.0,8422.0,0.0,1211.0,29262.0,1911.0,5137.0,2346.0,3592.0,29257.0,20316.0,0.0,10363.0,0.0,114.0,2778.0,368.0,-23.0,0.0,2623.0,772.0,3320.0,1982.0,0.0,1182.0,800.0 +house045.xml,152.563,152.563,34.867,34.867,117.696,0.0,0.0,0.0,0.0,0.0,0.0,2.789,0.0,0.0,2.269,0.261,0.0,0.0,0.0,9.06,0.315,0.75,1.793,0.0,0.0,0.0,2.141,0.0,0.0,0.447,0.338,2.514,1.529,0.0,2.116,8.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.238,0.0,22.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.484,0.0,3.64,13.079,4.371,0.0,0.0,0.0,0.0,2334.2,3370.3,3370.3,47.1,13.396,3.572,3.08,15.119,2.29,32.745,1.135,17.715,-12.23,0.968,-0.414,0.086,12.636,-0.264,20.672,0.0,10.929,0.0,0.0,-13.33,-6.949,0.001,0.018,-1.029,-0.116,1.069,-0.082,-1.244,6.238,-0.061,0.4,-0.012,-3.972,-0.264,-1.124,-1.876,-1.218,0.0,0.0,4.895,2.111,1610.8,1575.4,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,56820.0,0.0,8558.0,455.0,398.0,28557.0,1494.0,31.0,2749.0,1367.0,13211.0,12890.0,0.0,7147.0,840.0,21.0,-41.0,197.0,0.0,0.0,999.0,407.0,3320.0,1423.0,0.0,623.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.448,0.493,0.321,0.011,3.721,0.994,4.922,0.0,0.0,1.029,0.0,0.082,0.0,0.0,0.0,0.0,1.667,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.645,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.333,0.333,12.747,4.303,0.617,0.0,0.0,0.0,0.0,3861.2,2471.1,3861.2,16.22,13.509,0.0,2.513,3.831,0.0,0.0,0.327,2.232,-1.66,0.0,0.0,-0.156,0.0,-0.304,7.969,0.0,0.378,0.0,2.956,-3.232,-0.476,0.0,1.288,2.547,0.0,0.0,0.026,0.786,2.44,0.0,0.0,-0.155,0.0,-0.302,-0.43,-0.226,0.02,0.0,1.786,4.465,0.553,596.8,442.4,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19007.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8548.0,15003.0,3889.0,3183.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3103.0,483.0,2220.0,400.0 house047.xml,21.532,21.532,14.849,14.849,6.683,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,1.073,0.001,4.485,0.0,0.0,0.92,0.0,0.463,0.182,0.0,0.0,0.0,1.335,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.645,2.229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.496,0.0,1.506,4.202,0.0,0.0,0.0,0.0,0.0,872.9,989.4,989.4,4.818,2.615,0.0,-0.001,0.771,0.126,0.0,0.0,1.725,-0.562,0.0,0.0,0.0,1.363,-0.013,1.575,0.0,4.983,0.0,0.219,-3.202,-0.511,0.0,-0.001,0.108,0.034,0.0,0.0,-0.043,0.795,0.0,0.0,0.0,-1.085,-0.013,-0.216,-0.368,-1.32,0.0,-0.0,3.204,0.41,251.7,442.4,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7413.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,728.0,0.0,3785.0,4112.0,0.0,478.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1600.0,0.0,1200.0,400.0 -house048.xml,92.253,92.253,39.372,39.372,52.88,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,12.65,3.706,0.0,0.0,0.0,3.689,0.085,0.499,3.029,0.0,0.0,0.0,2.32,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.948,0.0,12.592,0.0,3.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,29.906,0.0,51.819,7.249,2.658,0.0,0.0,0.0,0.0,1514.7,5614.9,5614.9,42.51,34.056,1.023,2.628,11.997,0.0,0.0,0.804,4.609,-2.544,0.0,0.0,0.056,1.968,-0.571,6.944,0.0,4.218,0.0,6.511,-6.345,-1.492,1.322,1.001,9.313,0.0,0.0,0.567,3.691,4.249,0.0,0.0,0.075,10.086,-0.559,0.573,-0.621,1.977,0.0,7.014,11.148,2.197,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29600.0,8415.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4493.0,1127.0,2366.0,1000.0 -house049.xml,35.929,35.929,32.431,32.431,3.498,0.0,0.0,0.0,0.0,0.0,8.056,0.049,0.0,0.0,7.579,0.189,2.642,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.953,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.193,0.0,30.477,4.258,1.319,0.0,0.0,0.0,116.0,4661.1,2827.2,4661.1,13.204,15.962,0.0,1.361,4.324,0.0,0.0,0.0,4.245,-5.804,0.0,0.0,0.0,1.22,-0.089,2.492,0.0,1.85,0.0,0.0,-2.002,-0.472,0.0,1.692,7.231,0.0,0.0,0.0,3.016,9.863,0.0,0.0,0.0,3.484,-0.089,-0.087,-2.956,0.712,0.0,0.0,7.159,1.001,728.6,567.6,7489.4,928.8,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,52.092,52.092,21.703,21.703,30.389,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,1.924,0.327,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.182,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.474,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.091,0.0,5.21,8.571,0.0,0.0,0.0,0.0,0.0,1103.2,2893.5,2893.5,11.12,17.322,0.0,4.132,6.505,0.0,0.0,2.03,5.143,-4.159,0.0,0.0,4.886,0.0,-0.169,2.253,0.0,3.674,0.0,1.971,-9.039,-1.205,0.0,-0.26,-0.242,0.0,0.0,-0.37,0.342,4.077,0.0,0.0,-0.934,0.0,-0.168,-0.441,-2.495,-0.716,0.0,0.596,5.273,0.576,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7746.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17951.0,5197.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,1244.0,110.0,334.0,800.0 +house048.xml,92.184,92.184,39.432,39.432,52.752,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,12.698,3.722,0.0,0.0,0.0,3.689,0.085,0.499,3.026,0.0,0.0,0.0,2.321,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.351,8.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.828,0.0,12.584,0.0,3.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,29.809,0.0,52.056,7.249,2.652,0.0,0.0,0.0,0.0,1515.4,5614.9,5614.9,42.466,34.126,1.016,2.605,11.964,0.0,0.0,0.802,4.61,-2.54,0.0,0.0,0.056,1.966,-0.575,6.941,0.0,4.215,0.0,6.475,-6.337,-1.49,1.347,1.044,9.383,0.0,0.0,0.571,3.687,4.253,0.0,0.0,0.075,10.073,-0.563,0.57,-0.624,1.972,0.0,7.129,11.157,2.2,130.3,818.0,11617.7,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,50683.0,12323.0,4499.0,0.0,490.0,9499.0,828.0,29.0,11275.0,2249.0,9492.0,29600.0,8415.0,4429.0,0.0,298.0,6972.0,547.0,9.0,0.0,1959.0,3421.0,3550.0,4493.0,1127.0,2366.0,1000.0 +house049.xml,35.925,35.925,32.427,32.427,3.498,0.0,0.0,0.0,0.0,0.0,8.011,0.049,0.0,0.0,7.619,0.191,2.642,0.249,0.0,1.473,0.057,0.099,2.092,0.0,0.0,0.0,2.954,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.88,4.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.698,2.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,7.152,0.0,30.637,4.258,1.319,0.0,0.0,0.0,124.0,4661.0,2827.2,4661.0,13.204,15.963,0.0,1.347,4.297,0.0,0.0,0.0,4.242,-5.803,0.0,0.0,0.0,1.223,-0.089,2.49,0.0,1.849,0.0,0.0,-2.001,-0.471,0.0,1.765,7.378,0.0,0.0,0.0,2.99,9.865,0.0,0.0,0.0,3.474,-0.088,-0.093,-2.973,0.707,0.0,0.0,7.161,1.002,728.6,567.6,7489.3,928.8,0.0,39000.0,16000.0,0.0,33.26,106.16,19111.0,0.0,5635.0,0.0,0.0,5038.0,0.0,0.0,2636.0,1357.0,4445.0,20689.0,0.0,6847.0,0.0,0.0,5786.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,52.09,52.09,21.704,21.704,30.386,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,1.925,0.327,0.0,0.0,0.0,1.781,0.057,0.111,2.23,0.0,0.0,0.0,2.182,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.116,5.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.471,0.0,10.845,0.0,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.089,0.0,5.214,8.571,0.0,0.0,0.0,0.0,0.0,1103.2,2894.4,2894.4,11.12,17.331,0.0,4.13,6.505,0.0,0.0,2.029,5.144,-4.159,0.0,0.0,4.887,0.0,-0.169,2.252,0.0,3.674,0.0,1.971,-9.039,-1.205,0.0,-0.257,-0.242,0.0,0.0,-0.37,0.341,4.077,0.0,0.0,-0.934,0.0,-0.168,-0.441,-2.495,-0.716,0.0,0.597,5.273,0.576,1688.9,437.1,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21813.0,7746.0,3277.0,0.0,827.0,2989.0,0.0,2043.0,0.0,1771.0,3159.0,17951.0,5197.0,5894.0,0.0,284.0,459.0,0.0,596.0,0.0,1585.0,616.0,3320.0,1244.0,110.0,334.0,800.0 diff --git a/workflow/tests/base_results/results_workflow_simulations2_bills.csv b/workflow/tests/base_results/results_workflow_simulations2_bills.csv index ea97a0442..74bb117c4 100644 --- a/workflow/tests/base_results/results_workflow_simulations2_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -39,7 +39,7 @@ 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 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,857.85,144.0,1306.32,-986.74,463.58,144.0,250.27,394.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,760.7,108.0,1248.11,-989.68,366.43,144.0,250.27,394.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 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,634.61,465.0,1251.79,-1474.07,242.73,132.0,259.88,391.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,94.8,465.0,1251.79,-2013.87,-297.08,132.0,259.88,391.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,-328.02,210.0,1251.79,-2181.7,-719.9,132.0,259.88,391.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-misc-bills.xml,1799.67,144.0,1251.79,0.0,1395.79,144.0,259.88,403.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1077.62,144.0,1146.11,-710.1,580.01,144.0,353.61,497.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-misc-defaults.xml,1077.71,144.0,1145.92,-710.1,579.82,144.0,353.89,497.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-emissions.xml,888.63,144.0,1336.98,-986.62,494.36,144.0,250.27,394.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-misc-generators-battery-scheduled.xml,2294.79,144.0,1369.2,0.0,1513.2,144.0,340.31,484.31,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,2231.91,144.0,1306.32,0.0,1450.32,144.0,340.31,484.31,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 @@ -91,21 +91,21 @@ base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1849.63,144.0, base-simcontrol-timestep-10-mins.xml,1854.12,144.0,1310.61,0.0,1454.61,144.0,255.51,399.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-simcontrol-timestep-30-mins.xml,1850.4,144.0,1308.77,0.0,1452.77,144.0,253.63,397.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.xml,1844.59,144.0,1306.32,0.0,1450.32,144.0,250.27,394.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 -house001.xml,2409.2,144.0,1701.55,0.0,1845.55,144.0,419.65,563.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 -house002.xml,2057.43,144.0,1479.73,0.0,1623.73,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 -house003.xml,2050.67,144.0,1461.79,0.0,1605.79,144.0,300.88,444.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 -house004.xml,3687.95,144.0,2757.14,0.0,2901.14,144.0,642.81,786.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 -house005.xml,2672.9,144.0,1943.95,0.0,2087.95,144.0,440.95,584.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 -house006.xml,2272.11,144.0,1172.36,0.0,1316.36,144.0,811.75,955.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 -house007.xml,2340.15,144.0,1249.61,0.0,1393.61,144.0,802.54,946.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 -house008.xml,2824.38,144.0,1445.66,0.0,1589.66,144.0,1090.72,1234.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 -house009.xml,2458.42,144.0,1255.53,0.0,1399.53,144.0,914.89,1058.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 -house010.xml,2553.85,144.0,1385.15,0.0,1529.15,144.0,880.7,1024.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 -house011.xml,1604.99,144.0,1460.99,0.0,1604.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 -house012.xml,1297.91,144.0,1153.91,0.0,1297.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 -house013.xml,1132.42,144.0,988.42,0.0,1132.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 -house014.xml,1166.14,144.0,1022.14,0.0,1166.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 -house015.xml,1132.42,144.0,988.42,0.0,1132.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 +house001.xml,2410.51,144.0,1703.15,0.0,1847.15,144.0,419.36,563.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 +house002.xml,2057.88,144.0,1480.28,0.0,1624.28,144.0,289.6,433.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 +house003.xml,2051.56,144.0,1462.9,0.0,1606.9,144.0,300.66,444.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 +house004.xml,3689.46,144.0,2759.06,0.0,2903.06,144.0,642.4,786.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 +house005.xml,2674.3,144.0,1945.64,0.0,2089.64,144.0,440.66,584.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 +house006.xml,2272.11,144.0,1172.41,0.0,1316.41,144.0,811.7,955.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 +house007.xml,2340.15,144.0,1249.69,0.0,1393.69,144.0,802.46,946.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 +house008.xml,2824.39,144.0,1445.81,0.0,1589.81,144.0,1090.58,1234.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 +house009.xml,2458.42,144.0,1255.58,0.0,1399.58,144.0,914.84,1058.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 +house010.xml,2553.87,144.0,1385.24,0.0,1529.24,144.0,880.63,1024.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 +house011.xml,1604.95,144.0,1460.95,0.0,1604.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 +house012.xml,1297.9,144.0,1153.9,0.0,1297.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house013.xml,1132.41,144.0,988.41,0.0,1132.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 +house014.xml,1166.12,144.0,1022.12,0.0,1166.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 +house015.xml,1132.41,144.0,988.41,0.0,1132.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 house016.xml,2711.32,144.0,1759.27,0.0,1903.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,808.05,808.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house017.xml,2104.95,144.0,1008.57,0.0,1152.57,144.0,808.38,952.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 house018.xml,1736.63,144.0,1592.63,0.0,1736.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 @@ -116,11 +116,11 @@ house022.xml,5139.02,144.0,1767.94,0.0,1911.94,0.0,0.0,0.0,0.0,3227.08,3227.08,0 house023.xml,5179.33,144.0,2293.37,0.0,2437.37,0.0,0.0,0.0,0.0,2741.96,2741.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 house024.xml,4833.85,144.0,1589.69,0.0,1733.69,0.0,0.0,0.0,0.0,3100.16,3100.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 house025.xml,3045.01,144.0,2251.63,0.0,2395.63,144.0,505.38,649.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 -house026.xml,1557.24,144.0,804.91,0.0,948.91,144.0,464.33,608.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 -house027.xml,1900.01,144.0,1002.58,0.0,1146.58,144.0,609.43,753.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 -house028.xml,1791.33,144.0,952.35,0.0,1096.35,144.0,550.98,694.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 -house029.xml,2155.68,144.0,1171.63,0.0,1315.63,144.0,696.05,840.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 -house030.xml,2410.33,144.0,672.33,0.0,816.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1594.0,1594.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house026.xml,1557.33,144.0,804.9,0.0,948.9,144.0,464.43,608.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 +house027.xml,1899.84,144.0,1002.23,0.0,1146.23,144.0,609.61,753.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 +house028.xml,1791.28,144.0,952.27,0.0,1096.27,144.0,551.01,695.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 +house029.xml,2155.76,144.0,1171.8,0.0,1315.8,144.0,695.96,839.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 +house030.xml,2409.58,144.0,672.34,0.0,816.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1593.24,1593.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 house031.xml,4425.24,144.0,1831.5,0.0,1975.5,144.0,2305.74,2449.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 house032.xml,1934.53,144.0,567.67,0.0,711.67,144.0,1078.86,1222.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 house033.xml,4000.75,144.0,538.68,0.0,682.68,0.0,0.0,0.0,0.0,3318.07,3318.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -131,13 +131,13 @@ house037.xml,3518.56,144.0,959.99,0.0,1103.99,0.0,0.0,0.0,0.0,2414.57,2414.57,0. house038.xml,3078.35,144.0,1850.29,0.0,1994.29,144.0,940.06,1084.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 house039.xml,2127.92,144.0,875.83,0.0,1019.83,144.0,964.09,1108.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house040.xml,2127.69,144.0,858.37,0.0,1002.37,144.0,981.32,1125.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 -house041.xml,3640.66,144.0,1740.82,0.0,1884.82,144.0,1611.84,1755.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 -house042.xml,3222.68,144.0,1480.15,0.0,1624.15,144.0,1454.53,1598.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 -house043.xml,2371.63,144.0,1104.36,0.0,1248.36,144.0,979.27,1123.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 -house044.xml,3288.47,144.0,1608.41,0.0,1752.41,144.0,1392.06,1536.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 -house045.xml,2472.57,144.0,1296.85,0.0,1440.85,144.0,887.72,1031.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 -house046.xml,968.88,144.0,824.88,0.0,968.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 +house041.xml,3640.7,144.0,1740.75,0.0,1884.75,144.0,1611.95,1755.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 +house042.xml,3222.78,144.0,1480.08,0.0,1624.08,144.0,1454.7,1598.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 +house043.xml,2371.68,144.0,1104.27,0.0,1248.27,144.0,979.41,1123.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 +house044.xml,3288.52,144.0,1608.35,0.0,1752.35,144.0,1392.17,1536.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 +house045.xml,2472.57,144.0,1296.86,0.0,1440.86,144.0,887.71,1031.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 +house046.xml,951.83,144.0,807.83,0.0,951.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 house047.xml,1015.71,144.0,657.22,0.0,801.22,144.0,70.49,214.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 -house048.xml,2277.03,144.0,1440.99,0.0,1584.99,144.0,548.04,692.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 -house049.xml,1502.16,144.0,1191.02,0.0,1335.02,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,1245.3,144.0,647.52,0.0,791.52,144.0,309.78,453.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 +house048.xml,2277.89,144.0,1443.18,0.0,1587.18,144.0,546.71,690.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 +house049.xml,1501.99,144.0,1190.85,0.0,1334.85,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house050.xml,1245.31,144.0,647.56,0.0,791.56,144.0,309.75,453.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 From 6f28a6b132ff34ff4eb68ccdd3b21247eb466850 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 11:08:10 -0700 Subject: [PATCH 33/35] Sync. --- workflow/tests/RESNET_Tests/4.1_Standard_140/L100AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L100AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L110AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L110AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L120AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L120AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L130AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L130AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L140AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L140AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L150AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L150AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L155AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L155AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L160AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L160AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L170AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L170AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L200AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L200AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L202AC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L202AL.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L302XC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L304XC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L322XC.xml | 1 + workflow/tests/RESNET_Tests/4.1_Standard_140/L324XC.xml | 1 + .../RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml | 1 + .../RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml | 1 + .../RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml | 1 + .../RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/04-L324.xml | 1 + workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-01.xml | 1 + workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-02.xml | 1 + workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-03.xml | 1 + workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-04.xml | 1 + workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-05.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml | 1 + workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml | 1 + workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml | 1 + workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml | 1 + .../tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml | 1 + .../tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml | 1 + .../tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml | 1 + .../tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/04-L324.xml | 1 + .../Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml | 1 + .../Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml | 1 + .../Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml | 1 + .../Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml | 1 + .../01-L100.xml | 1 + .../02-L100.xml | 1 + .../03-L304.xml | 1 + .../04-L324.xml | 1 + .../Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml | 1 + .../Other_HERS_Method_301_2014_PreAddendumE/L100A-02.xml | 1 + .../Other_HERS_Method_301_2014_PreAddendumE/L100A-03.xml | 1 + .../Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml | 1 + .../Other_HERS_Method_301_2014_PreAddendumE/L100A-05.xml | 1 + .../Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml | 1 + .../Other_HERS_Method_301_2019_PreAddendumA/L100A-02.xml | 1 + .../Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml | 1 + .../Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml | 1 + .../Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml | 1 + .../Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml | 1 + .../Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml | 1 + 106 files changed, 106 insertions(+) diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AC.xml index 0df9568ff..715ec77c0 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AL.xml index 0598454d7..376b6ca5a 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L100AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AC.xml index 3cc9c04af..34489a8bd 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AL.xml index 3627e285b..7f74cb7c0 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L110AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AC.xml index 06880fd49..b66897ef0 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AL.xml index 26e207a6c..f6dd0a7e1 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L120AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AC.xml index f2063365b..4a661acf8 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AL.xml index 76972bdc1..b7a0271e7 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L130AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AC.xml index 9fcb7318c..b36157001 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AL.xml index 113f9900e..a99e83d04 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L140AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AC.xml index 8d6129cc4..39a6ae2d3 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AL.xml index 8efaa8e01..e47062029 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L150AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AC.xml index c8cc4f0b7..cd84423ad 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AL.xml index 17b75de82..8f2e6729f 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L155AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AC.xml index 42671b28c..2bc09c6a0 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AL.xml index 2ceb322e9..08eeedd5e 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L160AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AC.xml index c665a2f5c..257047938 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AL.xml index 168809da4..527198842 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L170AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AC.xml index 2385013ec..ce9bbc039 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AL.xml index 5f8bb705b..2dda55c37 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L200AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AC.xml index 81610ea60..d161554ea 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AL.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AL.xml index 23335565a..09260b0a8 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AL.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L202AL.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L302XC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L302XC.xml index 172193834..99afe6b0c 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L302XC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L302XC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L304XC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L304XC.xml index 26826c3fd..8ad696e21 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L304XC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L304XC.xml @@ -29,6 +29,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 12312.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L322XC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L322XC.xml index 949ca82bd..9f7d8a365 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L322XC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L322XC.xml @@ -29,6 +29,7 @@ single-family detached 2.0 1.0 + 8.0 3 3078.0 24624.0 diff --git a/workflow/tests/RESNET_Tests/4.1_Standard_140/L324XC.xml b/workflow/tests/RESNET_Tests/4.1_Standard_140/L324XC.xml index 8d0322455..6f5728a7e 100644 --- a/workflow/tests/RESNET_Tests/4.1_Standard_140/L324XC.xml +++ b/workflow/tests/RESNET_Tests/4.1_Standard_140/L324XC.xml @@ -29,6 +29,7 @@ single-family detached 2.0 1.0 + 8.0 3 3078.0 24624.0 diff --git a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml index 1d5792095..1b8dd415b 100644 --- a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml +++ b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml index 8263be87c..84334c88f 100644 --- a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml +++ b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml index 51798a182..1242799ba 100644 --- a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml +++ b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/04-L324.xml b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/04-L324.xml index c72b210d1..eb77bd71e 100644 --- a/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/04-L324.xml +++ b/workflow/tests/RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/04-L324.xml @@ -39,6 +39,7 @@ single-family detached 2.0 1.0 + 8.0 4 3078.0 diff --git a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-01.xml b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-01.xml index d7df080bb..20b5aef63 100644 --- a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-01.xml +++ b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-02.xml b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-02.xml index 975c52e4f..1d8607893 100644 --- a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-02.xml +++ b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-03.xml b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-03.xml index 8551cdd9c..a3e11f975 100644 --- a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-03.xml +++ b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-04.xml b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-04.xml index 44aad4155..d465ad5c1 100644 --- a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-04.xml +++ b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-05.xml b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-05.xml index 38e6c4698..18c00fae8 100644 --- a/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-05.xml +++ b/workflow/tests/RESNET_Tests/4.3_HERS_Method/L100A-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml index cb148c0ec..163fb1b5c 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml index c26c1e39d..37f1fb0e4 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml index 25b97a259..fd1bb9557 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml index 1f40660ab..56111bec7 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml index ccd08e6c4..4b0692633 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml index 6c2a98fc9..b5fcba431 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml index cf4f60d7c..c48652d7c 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml index 36f008411..8bda37a70 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml index 820cb61b8..c020c4502 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml index 92725112e..a9a23e3bc 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml index a6b63f2af..22c298caa 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml index 40cfa33f0..46bce808e 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml index 918a62ff5..0f43912d9 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml index f4b3cfa7f..e81663562 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml index 0739f0d40..6c5390714 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml @@ -35,6 +35,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml index 62ef5720c..3003788c7 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml index f66416ec2..ba9fab4af 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml index 3f22c0634..87cf0c219 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml index 5de262d0c..ec09249d8 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml index 9e07dea5a..046dd9150 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml index 64b8cd5b6..3d63c9f45 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml index 37da7bcc0..4f797dfa2 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml index be43b23e6..92b78e3fe 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml index 7dfd16d07..bc414e22f 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml index 2243c1af6..a5310ff62 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml index bc356aeed..5e3acc582 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml index 8bf5acfb4..ddc20e023 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml index 417ffc71c..0d6b969bb 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml index 228953eba..f5e6aa94d 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml index 1d5792095..1b8dd415b 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml index 8263be87c..84334c88f 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml index 51798a182..1242799ba 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/04-L324.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/04-L324.xml index c72b210d1..eb77bd71e 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/04-L324.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_IAD_Home/04-L324.xml @@ -39,6 +39,7 @@ single-family detached 2.0 1.0 + 8.0 4 3078.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml index 73822d51a..2f6cecd33 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml index cfc984603..02eb5a0f6 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml index b096b9b67..3e39618ea 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml index 8ca4cec7a..22f28be84 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml @@ -39,6 +39,7 @@ single-family detached 2.0 1.0 + 8.0 4 3078.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml index 7b288dc13..83a16ecf3 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/02-L100.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/02-L100.xml index 619e51e40..1989902f3 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/02-L100.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/02-L100.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/03-L304.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/03-L304.xml index 1fb321340..f41aef18c 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/03-L304.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/03-L304.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/04-L324.xml b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/04-L324.xml index c111b838c..58af9aad3 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/04-L324.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/04-L324.xml @@ -39,6 +39,7 @@ single-family detached 2.0 1.0 + 8.0 4 3078.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml index 3f566f3bb..b8343bb36 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-02.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-02.xml index 5d4c0550c..256ea76dd 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-02.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-03.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-03.xml index b9a98e3f0..e42fb688c 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-03.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml index 115a62dfd..fd24c2d04 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-05.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-05.xml index 29052e1a5..d3c5736a8 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-05.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml index 291f59836..9e497c716 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-02.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-02.xml index 3d2b97190..aede822ca 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-02.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml index 32760fde3..de68d84c3 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml index 688e90f6b..8509a3242 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml index b0e0030f7..0b0bf87cc 100644 --- a/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml +++ b/workflow/tests/RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 3 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml index 6c6258896..93b449847 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml index a2acfb1a4..db20222f8 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml index 7ce30b7af..164ffa739 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml index 2f6182aec..01b0ca327 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml index dd3c93dc3..136f26b32 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml index 9a09bd84c..1caae47a8 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml index 3f9019f59..569ab9bf1 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml index becd15d4c..b1613faf5 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml index 2e05228ae..77dda1d40 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml index 34eaf525f..9b69df95f 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml index 2602e232c..a90179900 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml index 70b7ebc5a..3010aabbd 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml index 4c9faaa49..f6b24f6ee 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml index aa6b7dcf5..8293a1da9 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml index f0f20414e..dc1c33ec3 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml index 8771bd203..0941474d9 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 2 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml index 19890d5a4..2a0450107 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml index e6beac07a..c42f85b5d 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml index 92e80880f..acb464f4b 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml index 282b1dc96..4f1f142ac 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml +++ b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml @@ -39,6 +39,7 @@ single-family detached 1.0 1.0 + 8.0 4 1539.0 From 696e329df609d9ae20ffef1326bc57a2c3df2f83 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Mar 2024 19:08:56 +0000 Subject: [PATCH 34/35] Latest results. --- .../RESNET_Test_4.1_Standard_140.csv | 8 ++++---- ...SNET_Test_4.2_HERS_AutoGen_Reference_Home.csv | 2 +- .../base_results/RESNET_Test_4.3_HERS_Method.csv | 10 +++++----- .../tests/base_results/RESNET_Test_4.4_HVAC.csv | 4 ++-- .../tests/base_results/RESNET_Test_4.5_DSE.csv | 16 ++++++++-------- ...ther_HERS_AutoGen_Reference_Home_301_2014.csv | 2 +- ...oGen_Reference_Home_301_2019_PreAddendumA.csv | 2 +- ...t_Other_HERS_Method_301_2014_PreAddendumE.csv | 10 +++++----- ...t_Other_HERS_Method_301_2019_PreAddendumA.csv | 10 +++++----- ...est_Other_Hot_Water_301_2019_PreAddendumA.csv | 2 +- 10 files changed, 33 insertions(+), 33 deletions(-) diff --git a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv index 1543c73b4..f1d456669 100644 --- a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv +++ b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv @@ -7,7 +7,7 @@ L140AC.xml,48.05,N/A L150AC.xml,40.85,N/A L155AC.xml,44.14,N/A L160AC.xml,52.19,N/A -L170AC.xml,62.01,N/A +L170AC.xml,62.0,N/A L200AC.xml,124.27,N/A L202AC.xml,131.27,N/A L302XC.xml,46.87,N/A @@ -20,8 +20,8 @@ L120AL.xml,N/A,47.69 L130AL.xml,N/A,36.35 L140AL.xml,N/A,24.32 L150AL.xml,N/A,64.56 -L155AL.xml,N/A,48.78 +L155AL.xml,N/A,48.79 L160AL.xml,N/A,62.49 -L170AL.xml,N/A,42.1 -L200AL.xml,N/A,64.52 +L170AL.xml,N/A,42.11 +L200AL.xml,N/A,64.53 L202AL.xml,N/A,54.83 diff --git a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv index 1363b5f8b..353656b05 100644 --- a/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv +++ b/workflow/tests/base_results/RESNET_Test_4.2_HERS_AutoGen_Reference_Home.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,223.88,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999829,1.0000045,1.0000203,0.9999848 +e-Ratio,0.9999728,1.0000045,1.0000203,0.999993 diff --git a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv index aa8dfab59..bace7178f 100644 --- a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv +++ b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,160.65,23.46,5.27,10.94,17.97,2.63,11.97,40.06,4.57,12.58,20.23,-0.14977 -L100A-02.xml,151.3,22.32,5.77,10.94,17.2,2.87,18.89,40.38,4.54,14.51,22.2,-0.14685 -L100A-03.xml,148.93,22.66,5.24,8.75,36.08,3.42,9.78,74.36,4.45,10.38,21.06,-0.16646 -L100A-04.xml,127.97,23.86,5.5,13.07,18.26,2.75,14.1,25.78,4.76,14.7,21.17,-0.14977 -L100A-05.xml,126.26,23.02,5.48,10.94,36.65,3.55,11.97,59.98,4.67,12.57,22.2,-0.1663 +L100A-01.xml,159.85,23.46,5.28,10.94,17.97,2.63,11.97,39.69,4.58,12.57,20.23,-0.14977 +L100A-02.xml,150.52,22.32,5.78,10.94,17.2,2.87,18.89,40.01,4.55,14.51,22.2,-0.14685 +L100A-03.xml,148.18,22.66,5.24,8.75,36.07,3.43,9.78,73.66,4.46,10.38,21.06,-0.16646 +L100A-04.xml,127.5,23.86,5.5,13.07,18.26,2.75,14.1,25.54,4.77,14.7,21.17,-0.14977 +L100A-05.xml,125.75,23.02,5.48,10.94,36.65,3.55,11.97,59.42,4.69,12.57,22.2,-0.1663 diff --git a/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv b/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv index 2cc08ab18..5944910ff 100644 --- a/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv +++ b/workflow/tests/base_results/RESNET_Test_4.4_HVAC.csv @@ -1,6 +1,6 @@ Test Case,HVAC (kWh or therm),HVAC Fan (kWh) -HVAC1a.xml,6141.6,1199.83 -HVAC1b.xml,4557.26,1199.83 +HVAC1a.xml,6142.77,1199.83 +HVAC1b.xml,4558.13,1199.83 HVAC2a.xml,650.32,375.42 HVAC2b.xml,563.61,375.42 HVAC2c.xml,7711.58,859.87 diff --git a/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv b/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv index 76be0fe68..049986118 100644 --- a/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv +++ b/workflow/tests/base_results/RESNET_Test_4.5_DSE.csv @@ -1,9 +1,9 @@ Test Case,Heat/Cool (kWh or therm),HVAC Fan (kWh) -HVAC3a.xml,570.74,226.25 -HVAC3e.xml,6143.65,1199.54 -HVAC3b.xml,681.99,390.66 -HVAC3c.xml,609.96,267.57 -HVAC3d.xml,653.54,443.71 -HVAC3f.xml,7467.45,1450.41 -HVAC3g.xml,6590.29,1284.53 -HVAC3h.xml,7249.11,1384.17 +HVAC3a.xml,570.75,226.25 +HVAC3e.xml,6144.82,1199.83 +HVAC3b.xml,682.0,390.66 +HVAC3c.xml,609.97,267.57 +HVAC3d.xml,653.55,443.71 +HVAC3f.xml,7469.21,1450.7 +HVAC3g.xml,6591.75,1284.82 +HVAC3h.xml,7250.58,1384.76 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv index 0f4c8ea60..92f9da791 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2014.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,77.84,140.36,379.13 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999831,1.0000343,1.0000201,0.9999808 +e-Ratio,0.9999732,1.0000045,1.0000201,0.9999808 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv index 095f44470..e7bd67784 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA.csv @@ -34,4 +34,4 @@ Cooling thermostat settings,78,78,78,78 Mechanical ventilation (kWh/y),0.0,222.14,288.07,763.41 DHW pipe length refPipeL,88.5,88.5,88.5,98.5 DHW loop length refLoopL,156.9,156.9,156.9,176.9 -e-Ratio,0.9999831,1.0000343,1.0000201,0.999985 +e-Ratio,0.9999732,1.0000045,1.0000201,1.0000127 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv index e344e3136..015a8ff63 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,153.27,23.4,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08, -L100A-02.xml,144.34,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16, -L100A-03.xml,144.21,22.81,5.26,8.65,36.28,2.91,9.68,74.21,3.76,10.28,21.87, -L100A-04.xml,120.08,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16, -L100A-05.xml,121.22,22.96,5.52,10.83,36.52,3.02,11.86,59.93,3.86,12.46,23.16, +L100A-01.xml,152.99,23.4,5.31,10.83,15.12,2.27,11.86,33.07,3.9,12.46,21.08, +L100A-02.xml,144.08,22.26,5.81,10.83,14.48,2.47,18.75,33.33,3.88,14.36,23.16, +L100A-03.xml,143.59,22.81,5.26,8.65,36.28,2.91,9.68,73.52,3.8,10.28,21.87, +L100A-04.xml,119.86,23.8,5.53,12.94,15.36,2.37,13.97,21.08,3.83,14.57,22.16, +L100A-05.xml,120.67,22.96,5.52,10.83,36.51,3.02,11.86,59.36,3.84,12.46,23.16, diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv index 995ef290b..f9aaed602 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,158.07,23.4,5.3,10.83,15.12,2.27,11.86,33.19,3.89,12.46,21.08,-0.14111 -L100A-02.xml,148.76,22.26,5.81,10.83,14.48,2.47,18.75,33.45,3.87,14.36,23.16,-0.13808 -L100A-03.xml,148.28,22.61,5.27,8.65,35.96,2.9,9.68,74.21,3.76,10.28,21.87,-0.16187 -L100A-04.xml,125.05,23.8,5.53,12.94,15.37,2.37,13.97,21.19,3.82,14.57,22.16,-0.14111 -L100A-05.xml,125.58,22.96,5.52,10.83,36.52,3.02,11.86,59.93,3.86,12.46,23.16,-0.16176 +L100A-01.xml,157.78,23.4,5.31,10.83,15.12,2.27,11.86,33.07,3.9,12.46,21.08,-0.14111 +L100A-02.xml,148.48,22.26,5.81,10.83,14.48,2.47,18.75,33.33,3.88,14.36,23.16,-0.13808 +L100A-03.xml,147.64,22.61,5.28,8.65,35.96,2.9,9.68,73.52,3.8,10.28,21.87,-0.16187 +L100A-04.xml,124.82,23.8,5.53,12.94,15.36,2.37,13.97,21.08,3.83,14.57,22.16,-0.14111 +L100A-05.xml,125.0,22.96,5.52,10.83,36.51,3.02,11.86,59.36,3.84,12.46,23.16,-0.16176 diff --git a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv index 44302692e..789b0cf00 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv @@ -7,7 +7,7 @@ L100AD-HW-05.xml,546.6,439.6,54 L100AD-HW-06.xml,226.8,5.9,54 L100AD-HW-07.xml,206.1,0.0,58 L100AM-HW-01.xml,109.6,0.0,32 -L100AM-HW-02.xml,135.4,0.0,47 +L100AM-HW-02.xml,135.3,0.0,47 L100AM-HW-03.xml,90.6,0.0,32 L100AM-HW-04.xml,132.2,0.0,45 L100AM-HW-05.xml,295.0,439.6,41 From 722c569d8b2f1acf3a6ebb0e7e31d0d1c9a94c0a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Mar 2024 13:32:26 -0700 Subject: [PATCH 35/35] Remove old file [ci skip] --- workflow/tests/base_results/sample_files.csv | 190 ------------------- 1 file changed, 190 deletions(-) delete mode 100644 workflow/tests/base_results/sample_files.csv diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv deleted file mode 100644 index 695427882..000000000 --- a/workflow/tests/base_results/sample_files.csv +++ /dev/null @@ -1,190 +0,0 @@ -XML,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),IAD_Save (%),CO2e Rating Index,ACO2 (lb CO2e),ARCO2 (lb CO2e),IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready Home Certification,IECC ERI,IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC IAD_Save (%) -base-appliances-dehumidifier-ief-portable.xml,71.7,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.74,6.72,15.13,0.78,0.1,0.27332,76.96,6255.99,7575.66,1.0731,48.25,1.0,48.25,71.7,71.7,0.0,46.72,1.0,46.72,71.7,71.7,0.0,65.96,9.85,26.91,7.53,15.7,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.06,0.27332 -base-appliances-dehumidifier-ief-whole-home.xml,71.69,9.33,26.79,7.53,14.89,15.88,8.51,6.03,13.74,6.72,15.13,0.78,0.1,0.27332,76.95,6256.09,7576.38,1.0731,48.34,1.0,48.34,71.69,71.69,0.0,46.93,1.0,46.93,71.69,71.69,0.0,65.96,9.84,26.89,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.07,0.27332 -base-appliances-dehumidifier-multiple.xml,71.69,9.37,26.82,7.53,14.91,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.96,6255.1,7573.95,1.0731,48.11,1.0,48.11,71.69,71.69,0.0,46.36,1.0,46.36,71.69,71.69,0.0,65.96,9.87,26.91,7.53,15.73,16.08,8.51,4.01,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-dehumidifier.xml,71.66,9.33,26.8,7.53,14.89,15.88,8.51,6.04,13.73,6.72,15.13,0.78,0.09,0.27332,76.93,6254.05,7575.66,1.0731,48.25,1.0,48.25,71.66,71.66,0.0,46.72,1.0,46.72,71.66,71.66,0.0,65.94,9.85,26.91,7.53,15.7,16.08,8.51,4.0,13.0,6.72,15.13,0.0,0.05,0.27332 -base-appliances-gas.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,162.59,9026.23,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-modified.xml,80.07,29.51,8.31,10.49,47.03,5.17,11.53,39.41,4.92,9.55,21.6,0.12,0.0,0.22149,156.21,8674.48,5495.15,1.0105,56.95,1.0,56.95,80.07,80.07,0.0,51.2,1.0,51.2,80.07,80.07,0.0,75.21,33.6,8.25,10.49,53.52,5.15,11.53,38.48,4.93,9.55,21.6,0.0,0.0,0.22149 -base-appliances-none.xml,81.13,29.51,8.31,10.49,47.03,5.17,11.53,39.29,4.95,9.46,22.52,0.12,0.0,0.22149,157.07,8722.23,5495.15,1.0105,56.68,1.0,56.68,81.13,81.13,0.0,50.97,1.0,50.97,81.13,81.13,0.0,76.21,33.6,8.25,10.49,53.52,5.15,11.53,38.36,4.95,9.46,22.52,0.0,0.0,0.22149 -base-appliances-oil.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,166.85,9262.72,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-propane.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,165.26,9174.64,5495.15,1.0103,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-appliances-wood.xml,79.76,29.06,8.52,10.49,46.3,5.27,11.53,38.84,5.02,9.02,23.34,0.12,0.0,0.21552,,,,,57.5,1.0,57.5,79.76,79.76,0.0,51.91,1.0,51.91,79.76,79.76,0.0,75.02,33.12,8.45,10.49,52.77,5.25,11.53,37.92,5.03,9.02,23.34,0.0,0.0,0.21552 -base-atticroof-cathedral.xml,72.6,32.31,8.49,10.49,51.46,5.18,11.53,35.63,4.46,9.02,21.28,0.12,0.0,0.19844,139.72,8027.33,5691.51,1.0094,56.15,1.0,56.15,72.6,72.6,0.0,51.39,1.0,51.39,72.6,72.6,0.0,67.02,38.11,8.42,10.49,60.7,5.12,11.53,34.84,4.46,9.02,21.28,0.0,0.0,0.19844 -base-atticroof-conditioned.xml,74.48,37.23,10.74,10.49,59.29,6.41,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362,143.44,9210.47,6592.57,0.974,57.59,1.0,57.59,74.48,74.48,0.0,51.5,1.0,51.5,74.48,74.48,0.0,68.38,45.53,10.67,10.49,72.51,6.33,11.53,41.26,5.18,8.93,25.37,0.0,0.0,0.21362 -base-atticroof-flat.xml,72.12,29.29,8.56,10.49,46.65,5.24,11.52,32.89,3.9,9.02,21.28,0.12,0.0,0.19801,136.87,7587.11,5491.72,1.0094,56.66,1.0,56.66,72.12,72.12,0.0,50.95,1.0,50.95,72.12,72.12,0.0,67.81,33.37,8.48,10.49,53.14,5.18,11.53,32.1,3.91,9.02,21.28,0.0,0.0,0.19801 -base-atticroof-radiant-barrier.xml,78.23,9.39,26.65,7.53,15.05,15.84,8.51,9.26,14.82,6.72,15.13,0.78,0.0,0.22811,86.16,6895.88,7545.78,1.0606,47.03,1.0,47.03,78.23,78.23,0.0,44.17,1.0,44.17,78.23,78.23,0.0,71.96,9.9,26.72,7.53,15.86,16.03,8.51,6.94,13.99,6.72,15.13,0.0,0.0,0.22811 -base-atticroof-unvented-insulated-roof.xml,74.87,29.51,8.31,10.49,47.03,5.17,11.53,35.9,4.15,9.02,21.28,0.12,0.0,0.1867,145.08,8043.17,5495.15,1.0089,56.68,1.0,56.68,74.87,74.87,0.0,50.97,1.0,50.97,74.87,74.87,0.0,70.33,33.6,8.25,10.49,53.52,5.15,11.53,35.09,4.15,9.02,21.28,0.0,0.0,0.1867 -base-atticroof-vented.xml,77.29,30.04,8.11,10.49,47.87,5.07,11.83,39.35,4.34,9.19,21.28,0.12,0.0,0.22173,152.75,8562.46,5547.13,1.0106,57.47,1.0,57.47,77.29,77.29,0.0,51.89,1.0,51.89,77.29,77.29,0.0,72.55,34.14,8.05,10.49,54.39,5.05,11.83,38.41,4.34,9.19,21.28,0.0,0.0,0.22173 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,83.92,7.78,5.19,10.49,12.44,3.55,11.51,17.7,2.44,9.57,13.08,0.82,0.0,0.21303,140.48,4687.07,3076.07,1.0846,67.78,1.0,67.78,83.92,83.92,0.0,58.78,1.0,58.78,83.92,83.92,0.0,71.19,8.77,5.14,10.49,14.02,3.52,11.51,10.92,2.41,9.57,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-location-portland-or.xml,77.83,3.38,3.51,9.98,5.41,2.44,10.99,5.28,1.86,9.12,13.08,0.82,0.0,0.18156,97.93,2793.02,2661.18,1.0717,62.28,1.0,62.28,77.83,77.83,0.0,51.34,1.0,51.34,77.83,77.83,0.0,70.56,3.82,3.39,9.98,6.12,2.39,10.99,1.72,2.26,9.1,13.08,0.0,0.0,0.18156 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,77.2,5.34,5.98,10.49,8.78,3.91,11.5,7.68,3.54,9.56,13.08,0.82,0.0,0.2213,99.73,3295.13,3036.78,1.0881,59.77,1.0,59.77,77.2,77.2,0.0,51.18,1.0,51.18,77.2,77.2,0.0,68.49,6.26,5.87,10.49,10.26,3.86,11.5,3.08,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,77.78,5.34,5.98,10.49,8.78,3.91,11.5,8.12,3.54,9.56,13.08,0.82,0.0,0.2213,101.36,3348.99,3036.78,1.0881,59.9,1.0,59.9,77.78,77.78,0.0,51.27,1.0,51.27,77.78,77.78,0.0,68.76,6.26,5.87,10.49,10.26,3.86,11.5,3.3,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,77.29,5.34,5.98,10.49,8.78,3.91,11.5,7.75,3.54,9.56,13.08,0.82,0.0,0.2213,99.58,3290.2,3036.78,1.0881,59.9,1.0,59.9,77.29,77.29,0.0,51.27,1.0,51.27,77.29,77.29,0.0,68.53,6.26,5.87,10.49,10.26,3.86,11.5,3.11,3.77,9.55,13.08,0.0,0.0,0.2213 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,75.82,5.34,5.97,10.49,8.45,3.91,11.5,6.43,3.54,9.56,13.08,0.82,0.0,0.21748,93.65,3089.91,3036.78,1.0865,58.93,1.0,58.93,75.82,76.27,0.0,50.78,1.0,50.78,75.82,76.27,0.0,68.02,6.25,5.87,10.49,9.74,3.86,11.5,2.58,3.77,9.55,13.08,0.0,0.0,0.21748 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,80.3,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.71,9.56,13.08,0.82,0.0,0.21338,111.35,3668.22,3036.78,1.0848,63.53,1.0,63.53,80.3,80.3,0.0,52.03,1.0,52.03,80.3,80.3,0.0,67.76,6.26,5.87,10.49,9.97,3.86,11.5,4.22,2.89,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,82.02,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.18,9.56,13.08,0.82,0.0,0.21338,112.4,3702.63,3036.78,1.0848,64.03,1.0,64.03,82.02,82.02,0.0,52.5,1.0,52.5,82.02,82.02,0.0,69.62,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.41,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,80.83,5.34,5.98,10.49,8.51,3.91,11.5,10.66,2.85,9.56,13.08,0.82,0.0,0.21338,111.67,3678.64,3036.78,1.0848,64.03,1.0,64.03,80.83,80.83,0.0,52.5,1.0,52.5,80.83,80.83,0.0,68.32,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.04,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,90.59,5.34,5.98,10.49,8.51,3.91,11.5,10.66,5.51,9.56,13.08,0.82,0.0,0.21338,117.51,3871.08,3036.78,1.0848,67.42,1.0,67.42,90.59,90.59,0.0,55.58,1.0,55.58,90.59,90.59,0.0,78.68,6.26,5.87,10.49,9.97,3.86,11.5,4.22,5.95,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,81.64,5.34,5.98,10.49,8.51,3.91,11.5,10.66,3.08,9.56,13.08,0.82,0.0,0.21338,112.17,3695.21,3036.78,1.0848,63.66,1.0,63.66,81.64,81.64,0.0,52.15,1.0,52.15,81.64,81.64,0.0,69.22,6.26,5.87,10.49,9.97,3.86,11.5,4.22,3.29,9.55,13.08,0.0,0.0,0.21338 -base-bldgtype-mf-unit-shared-generator.xml,72.4,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,160.88,5138.24,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,63.66,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,81.41,5.34,5.98,10.49,4.82,3.03,11.5,4.39,3.24,9.56,13.08,0.82,0.0,0.2113,79.76,2545.81,2944.68,1.0839,65.43,1.0,65.43,81.41,81.41,0.0,56.6,1.0,56.6,81.41,81.41,0.0,75.13,6.26,5.87,10.49,5.46,2.99,11.5,2.18,3.89,9.55,13.08,0.0,0.0,0.2113 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,74.29,5.01,6.17,10.5,8.02,3.97,18.18,6.99,2.88,14.58,13.08,0.82,0.0,0.21273,141.59,4529.85,2950.08,1.0845,51.49,1.0,51.49,74.29,74.29,0.0,44.56,1.0,44.56,74.29,74.29,0.0,65.56,5.9,6.06,10.5,9.44,3.93,18.2,2.7,3.08,14.5,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-laundry-room.xml,71.53,5.01,6.17,10.49,8.02,3.97,18.18,7.55,2.76,12.35,13.08,0.82,0.0,0.21273,133.67,4275.95,2949.68,1.0845,51.49,1.0,51.49,71.53,71.53,0.0,44.56,1.0,44.56,71.53,71.53,0.0,62.55,5.9,6.06,10.49,9.44,3.93,18.2,3.06,2.93,12.33,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,74.49,5.23,6.07,10.49,8.37,3.93,11.5,0.58,3.51,9.53,13.08,1.5,0.0,0.21303,89.53,2903.59,2990.17,1.0846,57.99,1.0,57.99,74.49,74.49,0.0,49.43,1.0,49.43,74.49,74.49,0.0,72.78,6.15,5.95,10.49,9.83,3.88,11.5,0.7,3.42,9.54,13.08,1.5,0.0,0.21303 -base-bldgtype-mf-unit-shared-mechvent.xml,69.61,5.23,6.07,10.49,8.37,3.93,11.5,2.43,3.06,9.55,13.08,1.5,0.0,0.21303,78.63,2550.1,2990.17,1.0846,57.99,1.0,57.99,69.61,69.61,0.0,49.43,1.0,49.43,69.61,69.61,0.0,68.4,6.15,5.95,10.49,9.83,3.88,11.5,2.65,3.04,9.55,13.08,1.5,0.0,0.21303 -base-bldgtype-mf-unit-shared-pv.xml,12.26,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,47.4,1514.01,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,62.5,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,73.05,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,13.44,13.08,0.82,0.0,0.21273,135.99,4342.76,2944.68,1.0845,52.33,1.0,52.33,73.05,73.05,0.0,45.35,1.0,45.35,73.05,73.05,0.0,64.22,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,13.43,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit-shared-water-heater.xml,71.53,4.83,6.38,10.49,7.73,4.07,18.17,7.38,2.81,12.35,13.08,0.82,0.0,0.21273,133.22,4254.54,2944.68,1.0845,51.44,1.0,51.44,71.53,71.53,0.0,44.61,1.0,44.61,71.53,71.53,0.0,62.73,5.71,6.25,10.49,9.13,4.02,18.19,2.95,2.99,12.33,13.08,0.0,0.0,0.21273 -base-bldgtype-mf-unit.xml,74.88,5.34,5.98,10.49,8.55,3.89,11.5,7.28,2.83,9.56,13.08,0.82,0.0,0.21303,99.86,3189.39,2944.68,1.0846,57.99,1.0,57.99,74.88,74.88,0.0,49.43,1.0,49.43,74.88,74.88,0.0,66.01,6.26,5.87,10.49,10.01,3.84,11.5,2.88,3.02,9.55,13.08,0.0,0.0,0.21303 -base-bldgtype-sfa-unit.xml,83.07,17.77,5.74,10.49,28.33,3.85,11.52,29.6,3.2,9.3,17.18,0.69,0.0,0.22149,156.5,6798.04,4182.74,1.0385,56.39,1.0,56.39,83.07,83.07,0.0,50.79,1.0,50.79,83.07,83.07,0.0,72.69,20.46,5.67,10.49,32.62,3.83,11.53,23.75,3.23,9.29,17.18,0.0,0.0,0.22149 -base-dhw-combi-tankless.xml,65.22,28.79,8.58,10.49,47.16,5.33,18.31,32.96,4.64,10.29,21.28,0.12,0.0,0.23006,148.23,8465.14,5648.96,1.011,55.32,1.0,55.32,65.22,65.22,0.0,49.76,1.0,49.76,65.22,65.22,0.0,61.28,32.85,8.51,10.49,53.66,5.31,18.32,32.17,4.64,10.29,21.28,0.0,0.0,0.23006 -base-dhw-desuperheater.xml,84.27,29.51,8.31,10.49,47.0,5.2,11.53,45.37,5.16,6.98,21.28,0.12,0.0,0.22185,163.34,9324.55,5648.96,1.0106,71.75,1.0,71.75,84.27,84.27,0.0,62.24,1.0,62.24,84.27,84.27,0.0,78.95,33.6,8.25,10.49,53.5,5.18,11.53,44.22,5.17,6.97,21.28,0.0,0.0,0.22185 -base-dhw-dwhr.xml,76.35,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,6.75,21.28,0.12,0.0,0.22149,151.84,8431.86,5495.15,1.0105,56.68,1.0,56.68,76.35,76.35,0.0,50.97,1.0,50.97,76.35,76.35,0.0,71.67,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,6.75,21.28,0.0,0.0,0.22149 -base-dhw-indirect-standbyloss.xml,69.06,28.71,8.61,10.49,47.04,5.35,18.65,31.27,4.92,14.07,21.28,0.12,0.0,0.22512,153.55,8793.16,5665.98,1.0107,55.32,1.0,55.32,69.06,69.06,0.0,49.76,1.0,49.76,69.06,69.06,0.0,64.93,32.76,8.54,10.49,53.52,5.32,18.66,30.49,4.92,14.07,21.28,0.0,0.0,0.22512 -base-dhw-jacket-gas.xml,79.19,28.71,8.61,10.49,45.75,5.31,18.65,38.61,5.03,14.24,21.28,0.12,0.0,0.21632,177.2,9869.09,5512.62,1.0103,54.38,1.0,54.38,79.19,79.19,0.0,48.44,1.0,48.44,79.19,79.19,0.0,74.36,32.76,8.54,10.49,52.2,5.29,18.66,37.69,5.04,14.23,21.28,0.0,0.0,0.21632 -base-dhw-jacket-hpwh.xml,75.1,29.04,8.49,10.49,46.27,5.25,12.42,44.25,4.34,3.37,21.28,0.12,0.0,0.21148,157.32,8818.38,5549.67,1.0101,57.01,1.0,57.01,75.1,75.1,0.0,51.24,1.0,51.24,75.1,75.1,0.0,70.47,33.1,8.42,10.49,52.74,5.23,12.42,43.32,4.34,3.37,21.28,0.0,0.0,0.21148 -base-dhw-jacket-indirect.xml,67.97,28.71,8.61,10.49,47.04,5.35,18.65,31.76,4.84,13.1,21.28,0.12,0.0,0.22512,152.19,8715.57,5665.98,1.0107,55.32,1.0,55.32,67.97,67.97,0.0,49.76,1.0,49.76,67.97,67.97,0.0,63.89,32.76,8.54,10.49,53.52,5.32,18.66,30.97,4.84,13.1,21.28,0.0,0.0,0.22512 -base-dhw-low-flow-fixtures.xml,78.79,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.8,21.28,0.12,0.0,0.22149,154.8,8596.35,5495.15,1.0105,56.68,1.0,56.68,78.79,78.79,0.0,50.97,1.0,50.97,78.79,78.79,0.0,73.99,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.8,21.28,0.0,0.0,0.22149 -base-dhw-multiple.xml,68.21,29.51,8.31,10.5,48.31,5.2,11.54,31.95,4.81,6.01,21.28,0.12,0.0,0.2306,132.52,7569.02,5649.43,1.011,61.73,1.0,61.73,68.21,68.21,0.0,56.06,1.0,56.06,68.21,68.21,0.0,64.12,33.6,8.25,10.5,54.83,5.18,11.54,31.17,4.81,6.01,21.28,0.0,0.0,0.2306 -base-dhw-none.xml,83.4,28.79,8.58,10.49,45.88,5.3,18.31,38.09,5.11,18.31,22.38,0.12,0.0,0.22122,188.81,10484.46,5495.15,1.0105,61.66,1.0,61.66,83.4,83.4,0.0,56.55,1.0,56.55,83.4,83.4,0.0,78.36,32.85,8.51,10.49,52.33,5.27,18.32,37.17,5.11,18.31,22.38,0.0,0.0,0.22122 -base-dhw-recirc-demand.xml,79.0,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,8.98,21.28,0.12,0.0,0.22149,155.05,8609.9,5495.15,1.0105,56.68,1.0,56.68,79.0,79.0,0.0,50.97,1.0,50.97,79.0,79.0,0.0,74.18,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,8.98,21.28,0.0,0.0,0.22149 -base-dhw-solar-fraction.xml,72.21,29.51,8.31,10.49,47.03,5.17,11.53,39.77,4.87,3.16,21.28,0.12,0.0,0.22149,147.36,8182.96,5495.15,1.0105,56.68,1.0,56.68,72.21,72.21,0.0,50.97,1.0,50.97,72.21,72.21,0.0,67.74,33.6,8.25,10.49,53.52,5.15,11.53,38.84,4.88,3.16,21.28,0.0,0.0,0.22149 -base-dhw-solar-indirect-flat-plate.xml,70.39,29.51,8.31,10.49,47.03,5.17,11.53,39.06,5.06,1.74,21.28,0.12,0.0,0.22149,143.8,7985.16,5495.15,1.0105,56.68,1.0,56.68,70.39,70.39,0.0,50.97,1.0,50.97,70.39,70.39,0.0,66.01,33.6,8.25,10.49,53.52,5.15,11.53,38.13,5.07,1.74,21.28,0.0,0.0,0.22149 -base-dhw-tank-elec-uef.xml,79.07,29.59,8.28,10.49,47.15,5.15,11.39,39.41,4.92,9.1,21.28,0.12,0.0,0.22302,155.3,8611.97,5486.95,1.0106,56.94,1.0,56.94,79.07,79.07,0.0,51.16,1.0,51.16,79.07,79.07,0.0,74.25,33.67,8.22,10.49,53.64,5.13,11.39,38.49,4.93,9.1,21.28,0.0,0.0,0.22302 -base-dhw-tank-gas-uef.xml,79.02,28.95,8.52,10.49,46.13,5.27,17.66,38.48,5.05,14.75,21.28,0.12,0.0,0.23059,178.96,9927.13,5486.95,1.011,54.38,1.0,54.38,79.02,79.02,0.0,48.44,1.0,48.44,79.02,79.02,0.0,74.2,33.01,8.45,10.49,52.59,5.25,17.67,37.56,5.05,14.75,21.28,0.0,0.0,0.23059 -base-dhw-tank-heat-pump-uef.xml,74.22,29.36,8.37,10.49,46.79,5.2,11.81,45.15,4.25,2.4,21.28,0.12,0.0,0.2183,159.17,8865.76,5512.62,1.0104,56.74,1.0,56.74,74.22,74.22,0.0,51.02,1.0,51.02,74.22,74.22,0.0,69.63,33.44,8.3,10.49,53.27,5.17,11.81,44.22,4.25,2.4,21.28,0.0,0.0,0.2183 -base-dhw-tank-oil.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,192.41,10716.16,5512.62,1.0103,54.38,1.0,54.38,79.81,79.81,0.0,48.44,1.0,48.44,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tank-wood.xml,79.81,28.71,8.61,10.49,45.75,5.31,18.65,38.18,5.09,15.33,21.28,0.12,0.0,0.21632,,,,,54.38,1.0,54.38,79.81,79.81,0.0,48.44,1.0,48.44,79.81,79.81,0.0,74.95,32.76,8.54,10.49,52.2,5.29,18.66,37.26,5.1,15.33,21.28,0.0,0.0,0.21632 -base-dhw-tankless-electric-uef.xml,79.44,29.51,8.31,10.49,47.03,5.17,11.53,39.93,4.85,9.17,21.28,0.12,0.0,0.22149,156.4,8684.95,5495.15,1.0105,56.82,1.0,56.82,79.44,79.44,0.0,51.1,1.0,51.1,79.44,79.44,0.0,74.6,33.6,8.25,10.49,53.52,5.15,11.53,39.0,4.86,9.17,21.28,0.0,0.0,0.22149 -base-dhw-tankless-gas-uef.xml,72.75,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,9.66,21.28,0.12,0.0,0.22122,168.81,9373.82,5495.15,1.0105,54.38,1.0,54.38,72.75,72.75,0.0,48.44,1.0,48.44,72.75,72.75,0.0,68.24,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,9.66,21.28,0.0,0.0,0.22122 -base-dhw-tankless-propane.xml,75.08,28.79,8.58,10.49,45.88,5.3,18.31,39.93,4.85,11.2,21.28,0.12,0.0,0.22122,179.02,9941.26,5495.15,1.0105,54.38,1.0,54.38,75.08,75.08,0.0,48.44,1.0,48.44,75.08,75.08,0.0,70.45,32.85,8.51,10.49,52.33,5.27,18.32,39.0,4.86,11.2,21.28,0.0,0.0,0.22122 -base-enclosure-2stories-garage.xml,76.62,38.92,10.47,10.49,61.99,6.32,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149,145.96,9360.82,6545.37,0.9798,56.59,1.0,56.59,76.62,76.62,0.0,51.35,1.0,51.35,76.62,76.62,0.0,70.22,47.48,10.43,10.49,75.62,6.21,11.53,42.11,7.03,8.98,23.92,0.0,0.0,0.22149 -base-enclosure-2stories.xml,76.85,45.24,12.2,10.49,72.06,7.16,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149,152.37,10916.07,7421.05,0.9654,56.41,1.0,56.41,76.85,76.85,0.0,51.06,1.0,51.06,76.85,76.85,0.0,70.35,54.86,12.16,10.49,87.37,7.13,11.53,51.01,6.77,8.87,27.42,0.0,0.0,0.22149 -base-enclosure-beds-1.xml,82.95,29.16,7.7,6.16,46.45,4.84,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217,172.86,8382.71,4950.17,0.9796,58.31,1.0,58.31,82.95,82.95,0.0,53.03,1.0,53.03,82.95,82.95,0.0,78.31,33.25,7.64,6.16,52.95,4.82,7.19,40.85,4.62,5.48,19.85,0.0,0.0,0.2217 -base-enclosure-beds-2.xml,80.46,29.34,8.0,8.39,46.74,5.0,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216,161.92,8427.4,5230.22,0.9951,57.48,1.0,57.48,80.46,80.46,0.0,51.94,1.0,51.94,80.46,80.46,0.0,76.18,33.42,7.94,8.39,53.23,4.98,9.42,39.68,4.77,7.29,20.56,0.0,0.0,0.2216 -base-enclosure-beds-4.xml,80.89,29.69,8.62,12.54,47.33,5.33,13.57,42.92,5.04,10.72,21.99,0.7,0.0,0.22142,158.38,9367.63,5764.99,1.026,55.85,1.0,55.85,80.89,80.89,0.0,49.98,1.0,49.98,80.89,80.89,0.0,72.44,33.77,8.55,12.54,53.81,5.31,13.57,37.42,5.07,10.72,21.99,0.0,0.0,0.22142 -base-enclosure-beds-5.xml,80.83,29.88,8.93,14.54,47.62,5.5,15.57,44.42,5.18,12.39,22.7,1.04,0.0,0.22134,156.44,9815.49,6024.65,1.0414,55.05,1.0,55.05,80.83,80.83,0.0,49.02,1.0,49.02,80.83,80.83,0.0,70.77,33.95,8.86,14.54,54.1,5.47,15.57,36.29,5.22,12.39,22.7,0.0,0.0,0.22134 -base-enclosure-ceilingtypes.xml,89.46,29.51,8.31,10.49,47.03,5.17,11.53,52.16,4.98,9.03,21.28,0.12,0.0,0.078,190.27,10494.5,5495.15,1.0037,56.57,1.0,56.57,89.46,89.46,0.0,50.86,1.0,50.86,89.46,89.46,0.0,84.13,33.6,8.25,10.49,53.52,5.15,11.53,51.27,4.98,9.02,21.28,0.0,0.0,0.078 -base-enclosure-floortypes.xml,104.52,19.32,7.11,10.49,30.85,4.53,11.52,52.94,4.56,9.22,15.13,0.78,0.0,0.22149,231.18,10114.68,4132.16,1.0588,54.88,1.0,54.88,104.52,104.52,0.0,49.47,1.0,49.47,104.52,104.52,0.0,94.21,20.92,7.08,10.49,33.39,4.52,11.52,46.53,4.52,9.22,15.13,0.0,0.0,0.22149 -base-enclosure-garage.xml,78.25,29.47,6.84,10.49,46.97,4.45,11.73,41.67,3.26,9.11,21.42,0.12,0.0,0.22149,159.53,8834.44,5479.85,1.0105,57.34,1.0,57.34,78.25,78.25,0.0,51.48,1.0,51.48,78.25,78.25,0.0,73.32,33.6,6.8,10.49,53.54,4.44,11.73,40.71,3.26,9.11,21.42,0.0,0.0,0.22149 -base-enclosure-infil-ach-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm-house-pressure.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-cfm50.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-ela.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-ach.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-infil-natural-cfm.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-overhangs.xml,78.91,29.51,8.31,10.49,47.03,5.17,11.53,39.8,4.72,9.02,21.28,0.12,0.0,0.22149,155.75,8648.83,5495.15,1.0105,56.68,1.0,56.68,78.91,78.91,0.0,50.97,1.0,50.97,78.91,78.91,0.0,74.1,33.6,8.25,10.49,53.52,5.15,11.53,38.88,4.73,9.02,21.28,0.0,0.0,0.22149 -base-enclosure-skylights.xml,79.53,29.51,8.31,10.49,47.03,5.17,11.53,37.88,5.68,9.02,21.28,0.12,0.0,0.20166,152.24,8446.18,5495.15,1.0096,56.68,1.0,56.68,79.53,79.53,0.0,50.97,1.0,50.97,79.53,79.53,0.0,74.7,33.6,8.25,10.49,53.52,5.15,11.53,36.97,5.69,9.02,21.28,0.0,0.0,0.20166 -base-enclosure-walltypes.xml,93.06,29.48,8.3,10.49,46.97,5.16,11.53,58.7,4.04,9.03,21.28,0.12,0.0,-0.04335,206.89,11349.14,5497.0,0.9979,56.8,1.0,56.8,93.06,93.06,0.0,51.08,1.0,51.08,93.06,93.06,0.0,87.44,33.56,8.24,10.49,53.46,5.14,11.53,57.74,4.01,9.03,21.28,0.0,0.0,-0.04335 -base-foundation-ambient.xml,87.48,19.32,7.11,10.49,30.85,4.53,11.52,32.25,5.76,9.21,15.13,0.78,0.0,0.22149,164.31,7188.92,4132.16,1.0588,55.08,1.0,55.08,87.48,87.48,0.0,49.67,1.0,49.67,87.48,87.48,0.0,77.76,20.92,7.08,10.49,33.39,4.52,11.52,25.78,5.8,9.21,15.13,0.0,0.0,0.22149 -base-foundation-basement-garage.xml,80.98,26.74,7.06,10.49,42.6,4.52,11.53,37.17,5.01,9.26,17.78,0.66,0.0,0.22149,159.69,8064.5,4880.55,1.0347,55.44,1.0,55.44,80.98,80.98,0.0,50.21,1.0,50.21,80.98,80.98,0.0,72.48,29.64,7.0,10.49,47.22,4.5,11.53,31.83,5.03,9.26,17.78,0.0,0.0,0.22149 -base-foundation-conditioned-basement-slab-insulation.xml,78.51,29.51,8.31,10.49,47.03,5.17,11.53,38.13,5.14,9.02,21.28,0.12,0.0,0.22149,151.91,8435.87,5495.15,1.0105,56.68,1.0,56.68,78.51,78.51,0.0,50.97,1.0,50.97,78.51,78.51,0.0,73.72,33.6,8.25,10.49,53.52,5.15,11.53,37.2,5.15,9.02,21.28,0.0,0.0,0.22149 -base-foundation-conditioned-basement-wall-insulation.xml,79.12,28.09,7.95,10.49,44.76,4.99,11.53,38.33,4.52,9.02,21.28,0.12,0.0,0.22149,154.29,8411.05,5394.52,1.0105,57.62,1.0,57.62,79.12,79.12,0.0,51.74,1.0,51.74,79.12,79.12,0.0,74.2,32.16,7.89,10.49,51.24,4.97,11.53,37.4,4.52,9.02,21.28,0.0,0.0,0.22149 -base-foundation-multiple.xml,80.44,19.04,6.51,10.49,30.42,4.25,11.67,26.36,5.01,9.17,15.13,0.78,0.0,0.22149,144.51,6265.48,4094.86,1.0588,54.61,1.0,54.61,80.44,80.44,0.0,49.07,1.0,49.07,80.44,80.44,0.0,71.12,20.65,6.48,10.49,32.98,4.24,11.67,20.36,5.01,9.17,15.13,0.0,0.0,0.22149 -base-foundation-slab.xml,72.05,20.75,6.58,10.49,33.09,4.28,11.53,21.48,4.4,9.21,15.13,0.78,0.0,0.22149,125.08,5513.5,4163.06,1.0588,54.21,1.0,54.21,72.05,72.05,0.0,49.02,1.0,49.02,72.05,72.05,0.0,63.97,22.36,6.55,10.49,35.64,4.27,11.53,16.31,4.4,9.21,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-assembly-r.xml,77.91,18.96,6.69,10.49,30.29,4.34,11.67,25.03,4.55,9.19,15.13,0.78,0.0,0.22149,139.31,6039.93,4094.68,1.0588,54.03,1.0,54.03,77.91,77.91,0.0,48.55,1.0,48.55,77.91,77.91,0.0,68.74,20.57,6.66,10.49,32.85,4.32,11.67,19.11,4.55,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement-wall-insulation.xml,84.7,18.96,6.69,10.49,30.29,4.34,11.67,32.84,4.23,9.13,15.13,0.78,0.0,0.22149,165.03,7155.15,4094.68,1.0588,54.03,1.0,54.03,84.7,84.7,0.0,48.55,1.0,48.55,84.7,84.7,0.0,75.43,20.57,6.66,10.49,32.85,4.32,11.67,27.1,4.19,9.13,15.13,0.0,0.0,0.22149 -base-foundation-unconditioned-basement.xml,80.81,18.96,6.69,10.49,30.29,4.34,11.67,26.65,5.05,9.18,15.13,0.78,0.0,0.22149,145.59,6312.01,4094.68,1.0588,54.03,1.0,54.03,80.81,80.81,0.0,48.55,1.0,48.55,80.81,80.81,0.0,71.39,20.57,6.66,10.49,32.85,4.32,11.67,20.54,5.05,9.19,15.13,0.0,0.0,0.22149 -base-foundation-unvented-crawlspace.xml,78.45,17.55,7.45,10.49,28.04,4.71,11.78,23.13,4.98,9.29,15.13,0.78,0.0,0.22149,135.05,5800.87,4056.7,1.0588,55.84,1.0,55.84,78.45,78.45,0.0,50.36,1.0,50.36,78.45,78.45,0.0,69.46,19.13,7.41,10.49,30.55,4.69,11.78,17.4,5.01,9.29,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace-above-grade.xml,80.97,17.59,7.35,10.49,28.09,4.65,11.79,25.28,5.06,9.36,15.13,0.78,0.0,0.22149,142.73,6127.71,4054.81,1.0588,55.98,1.0,55.98,80.97,80.97,0.0,50.52,1.0,50.52,80.97,80.97,0.0,71.6,19.16,7.31,10.49,30.61,4.64,11.79,19.27,5.08,9.36,15.13,0.0,0.0,0.22149 -base-foundation-vented-crawlspace.xml,80.62,17.55,7.45,10.49,28.04,4.71,11.78,25.4,4.9,9.37,15.13,0.78,0.0,0.22149,142.82,6134.59,4056.7,1.0588,55.84,1.0,55.84,80.62,80.62,0.0,50.36,1.0,50.36,80.62,80.62,0.0,71.24,19.13,7.41,10.49,30.55,4.69,11.78,19.36,4.91,9.37,15.13,0.0,0.0,0.22149 -base-foundation-walkout-basement.xml,80.57,33.11,9.36,10.49,52.77,5.71,11.53,45.02,5.14,9.02,21.28,0.12,0.0,0.22149,164.23,9437.16,5792.15,0.9921,56.39,1.0,56.39,80.57,80.57,0.0,51.15,1.0,51.15,80.57,80.57,0.0,73.7,39.72,9.31,10.49,63.27,5.7,11.53,44.08,5.14,9.02,21.28,0.0,0.0,0.22149 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.45,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22137,165.56,9311.77,5565.81,1.0105,70.27,1.0,70.27,85.45,85.45,0.0,60.8,1.0,60.8,85.45,85.45,0.0,80.07,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22137 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,86.58,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.7,9.02,21.28,0.12,0.0,0.21902,85.66,4889.24,5648.96,1.0104,56.22,1.0,56.22,86.58,86.58,0.0,50.3,1.0,50.3,86.58,86.58,0.0,81.57,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.77,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.66,9.02,21.28,0.12,0.0,0.2198,84.04,4666.35,5495.15,1.0105,53.43,1.0,53.43,84.77,84.77,0.0,47.42,1.0,47.42,84.77,84.77,0.0,80.02,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.75,29.51,8.31,10.49,22.05,4.36,11.53,21.12,3.65,9.02,21.28,0.12,0.0,0.2198,84.0,4664.31,5495.15,1.0105,53.43,1.0,53.43,84.75,84.75,0.0,47.42,1.0,47.42,84.75,84.75,0.0,80.0,33.6,8.25,10.49,24.94,4.34,11.53,20.8,3.66,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-1-speed.xml,84.52,29.51,8.31,10.49,22.05,4.36,11.53,20.98,3.66,9.02,21.28,0.12,0.0,0.2198,83.78,4651.96,5495.15,1.0105,53.43,1.0,53.43,84.52,84.52,0.0,47.42,1.0,47.42,84.52,84.52,0.0,79.78,33.6,8.25,10.49,24.94,4.34,11.53,20.66,3.67,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-2-speed.xml,73.18,29.51,8.31,10.49,22.05,4.36,11.53,15.98,2.62,9.02,21.28,0.12,0.0,0.2198,74.37,4129.69,5495.15,1.0105,53.43,1.0,53.43,73.18,73.18,0.0,47.42,1.0,47.42,73.18,73.18,0.0,68.82,33.6,8.25,10.49,24.94,4.34,11.53,15.58,2.62,9.02,21.28,0.0,0.0,0.2198 -base-hvac-air-to-air-heat-pump-var-speed.xml,72.86,29.51,8.31,10.49,22.05,4.22,11.53,16.59,1.99,9.02,21.28,0.12,0.0,0.21969,74.65,4137.62,5484.97,1.0105,53.49,1.0,53.49,72.86,72.86,0.0,47.49,1.0,47.49,72.86,72.86,0.0,68.61,33.6,8.25,10.49,24.94,4.2,11.53,16.24,1.99,9.02,21.28,0.0,0.0,0.21969 -base-hvac-boiler-elec-only.xml,100.03,29.51,8.31,10.49,22.92,5.2,11.53,30.6,4.7,9.02,21.28,0.12,0.0,0.21902,98.04,5595.85,5648.96,1.0104,56.22,1.0,56.22,100.03,100.03,0.0,50.3,1.0,50.3,100.03,100.03,0.0,94.03,33.6,8.25,10.49,25.88,5.18,11.53,29.87,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-boiler-gas-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.59,4.7,9.02,21.28,0.12,0.0,0.23058,133.48,7623.09,5648.96,1.011,57.27,1.0,57.27,72.02,72.02,0.0,51.86,1.0,51.86,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-oil-only.xml,72.04,29.51,8.31,10.49,48.31,5.2,11.53,32.6,4.7,9.02,21.28,0.12,0.0,0.23058,160.75,9180.54,5648.96,1.011,57.27,1.0,57.27,72.04,72.04,0.0,51.86,1.0,51.86,72.04,72.04,0.0,67.76,33.6,8.25,10.49,54.83,5.18,11.53,31.82,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-boiler-propane-only.xml,72.02,29.51,8.31,10.49,48.31,5.2,11.53,32.58,4.7,9.02,21.28,0.12,0.0,0.23058,150.79,8611.85,5648.96,1.011,57.27,1.0,57.27,72.02,72.02,0.0,51.86,1.0,51.86,72.02,72.02,0.0,67.74,33.6,8.25,10.49,54.83,5.18,11.53,31.8,4.71,9.02,21.28,0.0,0.0,0.23058 -base-hvac-central-ac-only-1-speed-seer2.xml,85.88,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.96,9.02,21.28,0.12,0.0,0.22185,164.69,9401.4,5648.96,1.0106,71.75,1.0,71.75,85.88,85.88,0.0,62.24,1.0,62.24,85.88,85.88,0.0,80.49,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.96,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-1-speed.xml,85.91,29.51,8.31,10.49,47.0,5.2,11.53,44.89,4.97,9.02,21.28,0.12,0.0,0.22185,164.7,9402.26,5648.96,1.0106,71.75,1.0,71.75,85.91,85.91,0.0,62.24,1.0,62.24,85.91,85.91,0.0,80.51,33.6,8.25,10.49,53.5,5.18,11.53,43.74,4.97,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-2-speed.xml,83.62,29.51,8.31,10.49,47.0,5.2,11.53,44.89,3.87,9.02,21.28,0.12,0.0,0.22185,163.31,9322.77,5648.96,1.0106,71.75,1.0,71.75,83.62,83.62,0.0,62.24,1.0,62.24,83.62,83.62,0.0,78.34,33.6,8.25,10.49,53.5,5.18,11.53,43.74,3.87,9.02,21.28,0.0,0.0,0.22185 -base-hvac-central-ac-only-var-speed.xml,82.6,29.51,8.31,10.49,47.0,5.05,11.53,44.89,3.28,9.02,21.28,0.12,0.0,0.22172,162.86,9279.24,5638.15,1.0106,71.78,1.0,71.78,82.6,82.6,0.0,62.27,1.0,62.27,82.6,82.6,0.0,77.35,33.6,8.24,10.49,53.5,5.03,11.53,43.74,3.27,9.02,21.28,0.0,0.0,0.22172 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,87.13,29.51,8.31,10.49,22.92,5.2,11.53,22.61,4.97,9.02,21.28,0.12,0.0,0.21902,85.94,4905.54,5648.96,1.0104,55.06,1.0,55.06,87.13,87.13,0.0,49.02,1.0,49.02,87.13,87.13,0.0,82.1,33.6,8.25,10.49,25.88,5.18,11.53,22.13,4.97,9.02,21.28,0.0,0.0,0.21902 -base-hvac-dse.xml,79.08,29.51,8.31,10.49,47.03,5.17,11.53,38.26,5.36,9.02,21.28,0.12,0.0,0.22149,152.75,8482.26,5495.15,1.0105,56.68,1.0,56.68,79.08,79.08,0.0,50.97,1.0,50.97,79.08,79.08,0.0,74.21,33.6,8.25,10.49,53.52,5.15,11.53,37.28,5.37,9.02,21.28,0.0,0.0,0.22149 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.45,29.52,8.31,10.49,31.7,4.36,11.53,28.259999999999998,3.66,9.02,21.28,0.12,0.0,0.2195,110.57,6139.57,5495.15,1.0105,53.43,1.0,53.43,81.45,81.45,0.0,47.42,1.0,47.42,81.45,81.45,0.0,76.88,33.59,8.25,10.49,35.57,4.34,11.53,27.830000000000002,3.67,9.02,21.28,0.0,0.0,0.2195 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.75,29.509999999999998,8.31,10.49,35.339999999999996,4.36,11.53,31.39,3.66,9.02,21.28,0.12,0.0,0.21935,121.32,6736.23,5495.15,1.0104,53.43,1.0,53.43,80.75,80.75,0.0,47.42,1.0,47.42,80.75,80.75,0.0,76.19,33.59,8.25,10.49,39.64,4.34,11.53,30.89,3.67,9.02,21.28,0.0,0.0,0.21935 -base-hvac-ducts-buried.xml,76.13,29.51,8.31,10.49,47.03,5.17,11.53,36.7,4.53,9.02,21.28,0.12,0.0,0.22149,147.35,8182.4,5495.15,1.0105,56.68,1.0,56.68,76.13,76.13,0.0,50.97,1.0,50.97,76.13,76.13,0.0,71.46,33.6,8.25,10.49,53.52,5.15,11.53,35.77,4.53,9.02,21.28,0.0,0.0,0.22149 -base-hvac-ducts-leakage-cfm50.xml,77.47,29.51,8.31,10.49,47.03,5.17,11.53,37.97,4.7,9.02,21.28,0.12,0.0,0.22149,150.94,8381.95,5495.15,1.0105,56.68,1.0,56.68,77.47,77.47,0.0,50.97,1.0,50.97,77.47,77.47,0.0,72.74,33.6,8.25,10.49,53.52,5.15,11.53,37.06,4.71,9.02,21.28,0.0,0.0,0.22149 -base-hvac-elec-resistance-only.xml,96.0,29.51,8.31,10.49,22.92,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.21902,94.4,5388.07,5648.96,1.0104,56.22,1.0,56.22,96.0,96.0,0.0,50.3,1.0,50.3,96.0,96.0,0.0,90.2,33.6,8.25,10.49,25.88,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-evap-cooler-only-ducted.xml,77.0,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.7,9.02,21.28,0.12,0.0,0.22185,159.11,9083.28,5648.96,1.0106,71.75,1.0,71.75,77.0,77.0,0.0,62.24,1.0,62.24,77.0,77.0,0.0,72.07,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.7,9.02,21.28,0.0,0.0,0.22185 -base-hvac-evap-cooler-only.xml,76.84,29.51,8.31,10.49,47.0,5.2,11.53,44.89,0.63,9.02,21.28,0.12,0.0,0.22185,159.02,9077.87,5648.96,1.0106,71.75,1.0,71.75,76.84,76.84,0.0,62.24,1.0,62.24,76.84,76.84,0.0,71.92,33.6,8.25,10.49,53.5,5.18,11.53,43.74,0.62,9.02,21.28,0.0,0.0,0.22185 -base-hvac-fireplace-wood-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.84,1.0,57.84,77.16,77.16,0.0,52.25,1.0,52.25,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-floor-furnace-propane-only.xml,77.16,29.51,8.31,10.49,47.0,5.2,11.53,35.26,4.7,9.02,21.28,0.12,0.0,0.22185,159.53,9106.71,5648.96,1.0106,57.84,1.0,57.84,77.16,77.16,0.0,52.25,1.0,52.25,77.16,77.16,0.0,72.39,33.6,8.25,10.49,53.5,5.18,11.53,34.36,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-furnace-elec-only.xml,112.37,29.51,8.31,10.49,22.92,5.2,11.53,37.93,4.7,9.02,21.28,0.12,0.0,0.21902,109.76,6264.68,5648.96,1.0104,56.22,1.0,56.22,112.37,112.37,0.0,50.3,1.0,50.3,112.37,112.37,0.0,105.65,33.6,8.25,10.49,25.88,5.18,11.53,37.07,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-furnace-gas-only.xml,79.22,29.51,8.31,10.49,47.0,5.2,11.53,40.33,4.7,9.02,21.28,0.12,0.0,0.22185,152.59,8710.82,5648.96,1.0106,57.84,1.0,57.84,79.22,79.22,0.0,52.25,1.0,52.25,79.22,79.22,0.0,74.39,33.6,8.25,10.49,53.5,5.18,11.53,39.42,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.35,29.51,8.29,10.49,47.0,4.24,11.53,44.89,3.44,9.02,21.28,0.12,0.0,0.22137,165.07,9284.29,5565.81,1.0105,70.27,1.0,70.27,84.35,84.35,0.0,60.8,1.0,60.8,84.35,84.35,0.0,79.03,33.6,8.22,10.49,53.5,4.22,11.53,43.74,3.44,9.02,21.28,0.0,0.0,0.22137 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.93,29.51,8.31,10.49,22.92,5.2,11.53,13.9,4.7,9.02,21.28,0.12,0.0,0.21902,71.64,4089.39,5648.96,1.0104,56.22,1.0,56.22,71.93,71.93,0.0,50.3,1.0,50.3,71.93,71.93,0.0,67.77,33.6,8.25,10.49,25.88,5.18,11.53,13.57,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-ground-to-air-heat-pump.xml,69.13,29.51,8.31,10.49,22.05,4.36,11.53,12.84,3.19,9.02,21.28,0.12,0.0,0.2198,69.76,3873.7,5495.15,1.0105,53.43,1.0,53.43,69.13,69.13,0.0,47.42,1.0,47.42,69.13,69.13,0.0,65.46,33.6,8.25,10.49,24.94,4.34,11.53,12.75,3.2,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,83.06,29.51,8.31,10.49,22.05,4.36,11.53,20.65,3.31,9.02,21.28,0.12,0.0,0.2198,82.78,4596.73,5495.15,1.0105,53.43,1.0,53.43,83.06,83.06,0.0,47.42,1.0,47.42,83.06,83.06,0.0,78.38,33.6,8.25,10.49,24.94,4.34,11.53,20.32,3.31,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,78.23,29.51,8.31,10.49,47.03,5.17,11.53,39.53,4.5,9.02,21.28,0.12,0.0,0.22149,155.07,8610.94,5495.15,1.0105,56.68,1.0,56.68,78.23,78.23,0.0,50.97,1.0,50.97,78.23,78.23,0.0,73.45,33.6,8.25,10.49,53.52,5.15,11.53,38.61,4.5,9.02,21.28,0.0,0.0,0.22149 -base-hvac-install-quality-ground-to-air-heat-pump.xml,67.7,29.51,8.31,10.49,22.05,4.36,11.53,12.55,2.83,9.02,21.28,0.12,0.0,0.2198,68.81,3820.55,5495.15,1.0105,53.43,1.0,53.43,67.7,67.7,0.0,47.42,1.0,47.42,67.7,67.7,0.0,64.04,33.6,8.25,10.49,24.94,4.34,11.53,12.42,2.83,9.02,21.28,0.0,0.0,0.2198 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,81.45,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.83,9.02,21.28,0.12,0.0,0.22185,161.99,9247.5,5648.96,1.0106,71.75,1.0,71.75,81.45,81.45,0.0,62.24,1.0,62.24,81.45,81.45,0.0,76.28,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.83,9.02,21.28,0.0,0.0,0.22185 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,67.8,29.51,8.31,10.49,22.05,4.36,11.53,13.89,1.93,9.02,21.28,0.12,0.0,0.2198,69.99,3886.36,5495.15,1.0105,53.43,1.0,53.43,67.8,67.8,0.0,47.42,1.0,47.42,67.8,67.8,0.0,63.82,33.6,8.25,10.49,24.94,4.34,11.53,13.57,1.93,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-air-conditioner-only-ducted.xml,81.7,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.96,9.02,21.28,0.12,0.0,0.22185,162.14,9256.21,5648.96,1.0106,71.75,1.0,71.75,81.7,81.7,0.0,62.24,1.0,62.24,81.7,81.7,0.0,76.52,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.95,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-air-conditioner-only-ductless.xml,80.9,29.51,8.31,10.49,47.0,5.2,11.53,44.89,2.57,9.02,21.28,0.12,0.0,0.22185,161.67,9228.88,5648.96,1.0106,71.75,1.0,71.75,80.9,80.9,0.0,62.24,1.0,62.24,80.9,80.9,0.0,75.76,33.6,8.25,10.49,53.5,5.18,11.53,43.74,2.57,9.02,21.28,0.0,0.0,0.22185 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,80.59,29.51,8.29,10.49,47.0,4.24,11.53,44.89,1.97,9.02,21.28,0.12,0.0,0.22137,163.12,9174.59,5565.81,1.0105,70.27,1.0,70.27,80.59,80.59,0.0,60.8,1.0,60.8,80.59,80.59,0.0,75.47,33.6,8.22,10.49,53.5,4.22,11.53,43.74,1.97,9.02,21.28,0.0,0.0,0.22137 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.81,29.51,8.31,10.49,22.92,5.2,11.53,14.43,4.7,9.02,21.28,0.12,0.0,0.21902,72.73,4151.1,5648.96,1.0104,56.22,1.0,56.22,72.81,72.81,0.0,50.3,1.0,50.3,72.81,72.81,0.0,68.61,33.6,8.25,10.49,25.88,5.18,11.53,14.09,4.71,9.02,21.28,0.0,0.0,0.21902 -base-hvac-mini-split-heat-pump-ducted.xml,68.14,29.51,8.31,10.49,22.05,4.36,11.53,14.03,1.97,9.02,21.28,0.12,0.0,0.2198,70.28,3902.38,5495.15,1.0105,53.43,1.0,53.43,68.14,68.14,0.0,47.42,1.0,47.42,68.14,68.14,0.0,64.15,33.6,8.25,10.49,24.94,4.34,11.53,13.7,1.97,9.02,21.28,0.0,0.0,0.2198 -base-hvac-mini-split-heat-pump-ductless.xml,63.08,29.51,8.31,10.49,22.05,4.36,11.53,11.53,1.69,9.02,21.28,0.12,0.0,0.2198,65.86,3656.89,5495.15,1.0105,53.43,1.0,53.43,63.08,63.08,0.0,47.42,1.0,47.42,63.08,63.08,0.0,59.37,33.6,8.25,10.49,24.94,4.34,11.53,11.24,1.69,9.02,21.28,0.0,0.0,0.2198 -base-hvac-multiple.xml,96.79,29.5,8.31,10.49,35.480000000000004,7.12,11.53,44.97,5.4399999999999995,9.02,21.28,0.12,0.0,0.21189,138.98,8633.7,6150.07,1.0101,55.62,1.0,55.62,96.79,96.79,0.0,50.74,1.0,50.74,96.79,96.79,0.0,91.71,33.6,8.25,10.49,39.71,7.07,11.53,43.86,5.46,9.02,21.28,0.0,0.0,0.21189 -base-hvac-none.xml,94.49,0.0,42.92,5.18,0.0,23.98,6.1,0.0,26.17,4.75,15.13,0.78,0.0,0.18415,,,,,69.91,1.0,69.91,94.49,94.49,0.0,63.05,1.0,63.05,94.49,94.49,0.0,89.96,0.0,42.92,5.18,0.0,23.99,6.1,0.0,24.83,4.75,15.13,0.0,0.0,0.18415 -base-hvac-programmable-thermostat.xml,76.5,29.51,8.31,10.49,47.03,5.17,11.53,37.69,4.34,9.03,21.28,0.12,0.0,0.22149,149.81,8318.93,5495.15,1.0105,56.68,1.0,56.68,76.5,76.5,0.0,50.97,1.0,50.97,76.5,76.5,0.0,71.43,33.6,8.25,10.49,53.52,5.15,11.53,36.5,4.25,9.03,21.28,0.0,0.0,0.22149 -base-hvac-ptac-with-heating-electricity.xml,94.97,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.09,9.02,21.28,0.12,0.0,0.22006,94.08,5256.75,5529.74,1.0105,53.33,1.0,53.33,94.97,94.97,0.0,47.31,1.0,47.31,94.97,94.97,0.0,89.1,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.09,9.02,21.28,0.0,0.0,0.22006 -base-hvac-ptac-with-heating-natural-gas.xml,73.24,29.51,8.31,10.49,47.0,5.68,11.53,35.26,3.09,9.02,21.28,0.12,0.0,0.22194,141.37,7900.01,5529.74,1.0106,56.62,1.0,56.62,73.24,73.24,0.0,50.91,1.0,50.91,73.24,73.24,0.0,68.69,33.6,8.24,10.49,53.5,5.65,11.53,34.36,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-ptac.xml,81.44,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.09,9.02,21.28,0.12,0.0,0.22194,161.14,9254.72,5683.08,1.0106,71.69,1.0,71.69,81.44,81.44,0.0,62.19,1.0,62.19,81.44,81.44,0.0,76.27,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.09,9.02,21.28,0.0,0.0,0.22194 -base-hvac-pthp.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.33,1.0,53.33,66.83,66.83,0.0,47.31,1.0,47.31,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-only-ceer.xml,82.98,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.89,9.02,21.28,0.12,0.0,0.22194,162.15,9312.47,5683.08,1.0106,71.69,1.0,71.69,82.98,82.98,0.0,62.19,1.0,62.19,82.98,82.98,0.0,77.74,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-only.xml,82.96,29.51,8.31,10.49,47.0,5.68,11.53,44.89,3.88,9.02,21.28,0.12,0.0,0.22194,162.14,9311.95,5683.08,1.0106,71.69,1.0,71.69,82.96,82.96,0.0,62.19,1.0,62.19,82.96,82.96,0.0,77.72,33.6,8.24,10.49,53.5,5.65,11.53,43.74,3.89,9.02,21.28,0.0,0.0,0.22194 -base-hvac-room-ac-with-heating.xml,96.76,29.51,8.31,10.49,22.05,4.85,11.53,28.21,3.88,9.02,21.28,0.12,0.0,0.22006,95.1,5313.98,5529.74,1.0105,53.33,1.0,53.33,96.76,96.76,0.0,47.31,1.0,47.31,96.76,96.76,0.0,90.8,33.6,8.25,10.49,24.94,4.82,11.53,27.49,3.89,9.02,21.28,0.0,0.0,0.22006 -base-hvac-room-ac-with-reverse-cycle.xml,66.83,29.51,8.31,10.49,22.05,4.85,11.53,12.25,2.99,9.02,21.28,0.12,0.0,0.22006,68.21,3811.37,5529.74,1.0105,53.33,1.0,53.33,66.83,66.83,0.0,47.31,1.0,47.31,66.83,66.83,0.0,62.94,33.6,8.25,10.49,24.94,4.82,11.53,11.95,3.0,9.02,21.28,0.0,0.0,0.22006 -base-hvac-space-heater-gas-only.xml,69.04,29.51,8.31,10.49,47.0,5.2,11.53,28.21,4.7,9.02,21.28,0.12,0.0,0.22185,122.49,6992.53,5648.96,1.0106,57.84,1.0,57.84,69.04,69.04,0.0,52.25,1.0,52.25,69.04,69.04,0.0,64.88,33.6,8.25,10.49,53.5,5.18,11.53,27.49,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-stove-wood-pellets-only.xml,77.14,29.51,8.31,10.49,47.0,5.2,11.53,35.23,4.7,9.02,21.28,0.12,0.0,0.22185,,,,,57.84,1.0,57.84,77.14,77.14,0.0,52.25,1.0,52.25,77.14,77.14,0.0,72.38,33.6,8.25,10.49,53.5,5.18,11.53,34.33,4.71,9.02,21.28,0.0,0.0,0.22185 -base-hvac-undersized.xml,74.16,29.51,8.31,10.49,47.03,5.17,11.53,34.76,4.29,9.02,21.28,0.12,0.0,0.22149,141.93,7881.32,5495.15,1.0105,56.68,1.0,56.68,74.16,74.16,0.0,50.97,1.0,50.97,74.16,74.16,0.0,69.65,33.6,8.25,10.49,53.52,5.15,11.53,33.91,4.3,9.02,21.28,0.0,0.0,0.22149 -base-hvac-wall-furnace-elec-only.xml,96.97,29.51,8.31,10.49,22.92,5.2,11.53,28.78,4.7,9.02,21.28,0.12,0.0,0.21902,95.31,5440.07,5648.96,1.0104,56.22,1.0,56.22,96.97,96.97,0.0,50.3,1.0,50.3,96.97,96.97,0.0,91.1,33.6,8.25,10.49,25.88,5.18,11.53,28.05,4.71,9.02,21.28,0.0,0.0,0.21902 -base-lighting-ceiling-fans.xml,78.72,29.5,8.0,10.49,47.0,5.01,11.52,39.45,4.67,9.02,21.8,0.12,0.0,0.21919,154.08,8639.13,5548.98,1.0104,56.7,1.0,56.7,78.72,78.72,0.0,51.04,1.0,51.04,78.72,78.72,0.0,73.96,33.58,7.92,10.49,53.49,4.98,11.53,38.52,4.67,9.02,21.8,0.0,0.0,0.21919 -base-location-baltimore-md.xml,75.37,20.19,10.68,9.61,32.31,6.71,10.82,23.26,7.15,8.51,15.13,0.78,0.0,0.27306,79.59,9889.08,11579.58,1.073,51.36,1.0,51.36,75.37,75.37,0.0,48.99,1.0,48.99,75.37,75.37,0.0,67.25,20.96,10.65,9.61,33.55,6.75,10.82,17.61,6.82,8.52,15.13,0.0,0.0,0.27306 -base-location-capetown-zaf.xml,79.78,3.94,4.59,8.35,6.31,2.51,9.47,1.65,3.66,7.51,15.13,0.78,0.0,0.17223,,,,,50.6,1.0,50.6,79.78,79.78,0.0,48.37,1.0,48.37,79.78,79.78,0.0,78.12,4.36,4.44,8.35,6.97,2.45,9.47,0.68,4.2,7.51,15.13,0.0,0.0,0.17223 -base-location-dallas-tx.xml,71.82,9.39,26.65,7.53,15.05,15.84,8.51,6.07,13.71,6.72,15.13,0.78,0.0,0.27332,77.15,6246.97,7545.78,1.0731,47.03,1.0,47.03,71.82,71.82,0.0,44.17,1.0,44.17,71.82,71.82,0.0,66.19,9.9,26.72,7.53,15.86,16.03,8.51,4.02,12.99,6.72,15.13,0.0,0.0,0.27332 -base-location-duluth-mn.xml,80.9,44.99,1.76,13.08,71.67,1.98,14.52,69.08,2.23,11.42,15.13,0.78,0.0,0.25692,182.79,12326.56,6310.8,1.0686,54.23,1.0,54.23,80.9,80.9,0.0,47.15,1.0,47.15,80.9,80.9,0.0,67.51,50.07,1.61,13.08,79.77,1.92,14.52,57.06,2.38,11.43,15.13,0.0,0.0,0.25692 -base-location-helena-mt.xml,78.49,48.36,3.58,11.9,77.03,2.64,12.95,66.03,2.35,10.17,21.28,0.12,0.0,0.22296,202.54,11816.8,5772.96,1.0106,58.09,1.0,58.09,78.49,78.49,0.0,51.1,1.0,51.1,78.49,78.49,0.0,72.3,55.16,3.38,11.9,87.86,2.54,12.95,64.77,2.36,10.17,21.28,0.0,0.0,0.22296 -base-location-honolulu-hi.xml,83.24,0.0,42.93,5.18,0.0,23.77,6.1,0.0,21.53,4.75,15.13,0.78,0.0,0.18335,,,,,62.89,1.0,62.89,83.24,83.24,0.0,41.47,1.0,41.47,83.24,83.24,0.0,79.16,0.0,42.93,5.18,0.0,23.79,6.1,0.0,20.38,4.75,15.13,0.0,0.0,0.18335 -base-location-miami-fl.xml,80.63,0.05,41.23,5.34,0.08,24.09,6.27,0.01,21.0,4.88,15.13,0.78,0.0,0.20399,79.68,6171.56,7348.59,1.0541,63.52,1.0,63.52,80.63,80.63,0.0,43.43,1.0,43.43,80.63,80.63,0.0,75.69,0.05,41.23,5.34,0.08,24.08,6.27,0.0,19.45,4.88,15.13,0.0,0.0,0.20399 -base-location-phoenix-az.xml,72.82,1.23,51.89,5.61,1.96,29.4,6.56,0.27,23.05,5.11,15.13,0.78,0.0,0.2826,73.51,4954.67,6265.71,1.0757,48.95,1.0,48.95,72.82,72.82,0.0,44.55,1.0,44.55,72.82,72.82,0.0,69.96,1.25,51.94,5.61,2.0,29.44,6.56,0.07,22.23,5.11,15.13,0.0,0.0,0.2826 -base-location-portland-or.xml,82.44,12.85,3.42,9.98,20.58,2.47,11.26,20.52,2.67,8.93,15.13,0.78,0.0,0.18847,159.44,4790.85,2862.1,1.0498,66.47,1.0,66.47,82.44,82.44,0.0,50.1,1.0,50.1,82.44,82.44,0.0,73.56,13.68,3.35,9.98,21.91,2.44,11.26,15.22,2.83,8.94,15.13,0.0,0.0,0.18847 -base-mechvent-balanced.xml,82.2,29.12,8.48,10.49,46.4,5.25,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149,162.41,9208.76,5610.91,1.0105,56.68,1.0,56.68,82.2,82.2,0.0,50.97,1.0,50.97,82.2,82.2,0.0,78.12,33.19,8.42,10.49,52.87,5.23,11.53,42.51,4.95,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-airflow-fraction-zero.xml,78.85,29.25,8.43,10.49,46.61,5.22,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149,149.85,8439.57,5573.33,1.0105,56.68,1.0,56.68,78.85,78.85,0.0,50.97,1.0,50.97,78.85,78.85,0.0,74.92,33.33,8.36,10.49,53.09,5.2,11.53,37.19,5.04,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-cfis-supplemental-fan-exhaust.xml,75.9,29.25,8.43,10.49,46.61,5.22,11.53,35.86,4.9,9.02,21.28,0.5,0.0,0.22149,144.33,8128.72,5573.33,1.0105,56.68,1.0,56.68,75.9,75.9,0.0,50.97,1.0,50.97,75.9,75.9,0.0,71.75,33.33,8.36,10.49,53.09,5.2,11.53,35.34,4.9,9.02,21.28,0.51,0.0,0.22149 -base-mechvent-cfis.xml,79.76,29.25,8.43,10.49,46.61,5.22,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149,153.09,8622.06,5573.33,1.0105,56.68,1.0,56.68,79.76,79.76,0.0,50.97,1.0,50.97,79.76,79.76,0.0,75.79,33.33,8.36,10.49,53.09,5.2,11.53,38.46,5.04,9.02,21.28,1.75,0.0,0.22149 -base-mechvent-erv-atre-asre.xml,71.15,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149,124.05,7095.97,5660.33,1.0105,56.68,1.0,56.68,71.15,71.15,0.0,50.97,1.0,50.97,71.15,71.15,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-erv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149,124.06,7096.46,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.11,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-exhaust.xml,78.09,29.25,8.43,10.49,46.61,5.22,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149,150.77,8491.37,5573.33,1.0105,56.68,1.0,56.68,78.09,78.09,0.0,50.97,1.0,50.97,78.09,78.09,0.0,74.2,33.33,8.36,10.49,53.09,5.2,11.53,38.11,4.9,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-hrv-asre.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149,124.05,7095.83,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.96,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-hrv.xml,71.16,28.95,8.56,10.49,46.13,5.29,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149,124.06,7096.31,5660.33,1.0105,56.68,1.0,56.68,71.16,71.16,0.0,50.97,1.0,50.97,71.16,71.16,0.0,67.64,33.01,8.49,10.49,52.59,5.27,11.53,27.97,5.12,9.02,21.28,1.79,0.0,0.22149 -base-mechvent-multiple.xml,82.61,29.06,8.52,10.49,46.31,6.16,11.53,42.72,5.86,9.03,21.28,1.49,0.0,0.22163,162.64,9331.67,5677.62,1.0106,57.42,1.0,57.42,82.61,82.61,0.0,51.71,1.0,51.71,82.61,82.61,0.0,77.86,33.14,8.44,10.49,52.79,6.14,11.53,41.89,5.82,9.03,21.28,1.45,0.0,0.22163 -base-mechvent-supply.xml,77.83,29.25,8.43,10.49,46.61,5.22,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149,149.26,8406.48,5573.33,1.0105,56.68,1.0,56.68,77.83,77.83,0.0,50.97,1.0,50.97,77.83,77.83,0.0,73.95,33.33,8.36,10.49,53.09,5.2,11.53,37.49,5.0,9.02,21.28,0.9,0.0,0.22149 -base-mechvent-whole-house-fan.xml,77.36,29.51,8.31,10.49,47.03,5.17,11.53,39.6,3.41,9.03,21.28,0.12,0.0,0.22149,154.5,8579.36,5495.15,1.0105,56.68,1.0,56.68,77.36,77.36,0.0,50.97,1.0,50.97,77.36,77.36,0.0,72.61,33.6,8.25,10.49,53.52,5.15,11.53,38.67,3.4,9.03,21.28,0.0,0.0,0.22149 -base-misc-generators.xml,77.17,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,195.32,10846.58,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,72.46,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-pv.xml,37.9,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,122.38,6796.09,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,68.88,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base-version-co2-2019ABCD.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022.xml,,,,,,,,,,,,,,,152.52,8469.39,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,,,,,,,155.11,8613.37,5495.15,1.0105,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014.xml,77.95,30.86,8.3,11.44,49.09,4.34,12.37,37.01,3.95,11.49,21.71,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014A.xml,75.36,30.81,8.32,10.39,49.02,4.35,11.42,36.97,3.96,8.56,21.71,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AE.xml,74.49,30.81,8.32,10.39,49.02,4.35,11.42,36.97,3.96,8.56,21.71,0.0,0.0,0.24606,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AEG.xml,73.82,30.81,8.32,10.39,49.02,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019.xml,75.26,29.46,8.34,10.39,46.87,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.21899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019A.xml,76.83,29.51,8.31,10.49,46.96,4.34,11.53,37.38,3.92,9.02,21.28,0.0,0.0,0.22119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019AB.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABC.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABCD.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022.xml,78.2,29.51,8.31,10.49,47.03,5.17,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.82,30.81,8.32,10.39,49.02,4.35,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 -base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71.38,33.54,8.27,10.39,53.36,4.32,11.42,37.38,3.91,8.56,21.04,0.0,0.0,0.25024 -base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149 -base.xml,79.05,29.51,8.31,10.49,47.03,5.17,11.53,39.47,4.91,9.02,21.28,0.12,0.0,0.22149,155.11,8613.37,5495.15,1.0105,56.68,1.0,56.68,79.05,79.05,0.0,50.97,1.0,50.97,79.05,79.05,0.0,74.24,33.6,8.25,10.49,53.52,5.15,11.53,38.54,4.92,9.02,21.28,0.0,0.0,0.22149